/**
 * MediLeads Website – REDESIGN 08/2026 (Startseite)
 * Layout nach DESIGN_ANALYSE_REFERENZ.md:
 * Vollbild-Hero mit Navigation im Bild, randlose Ton-Karten, zentrierte
 * Sektions-Titel, große gerundete Bilder, Weiß-/Pastellbänder im Wechsel,
 * Pillen-Buttons, schmalere Seitenränder, Footer in voller Breite.
 * Farben: variables.css · Schriften: fonts.css (Archivo/Inter) · Icons: Inline-SVG
 */

/* ---------- Basis ---------- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--petrol);
}

a { color: var(--teal); text-decoration: none; }

.wrap {
  max-width: 1360px; /* breiter: weniger Rand links/rechts (Nico-Feedback) */
  margin: 0 auto;
  padding: 0 28px;
}

/* Sektions-Rhythmus: Weiß- und Pastellbänder im Wechsel */
section { padding: 100px 0; position: relative; overflow: hidden; }
section.band { background: var(--mint); }
section > .wrap { position: relative; z-index: 1; }

/* Deko-Elemente zur Auflockerung: weiche Farb-Blobs und Punktraster */
.deco { position: absolute; pointer-events: none; z-index: 0; }
.deco-blob {
  width: 460px; height: 460px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  background: var(--teal-200);
}
.deco-blob.gold { background: var(--gold-100); opacity: 0.8; }
.deco-dots {
  width: 220px; height: 150px;
  background-image: radial-gradient(var(--teal-300) 2px, transparent 2.5px);
  background-size: 22px 22px;
  opacity: 0.55;
}

.sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sec-head h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 700;
  margin-bottom: 14px;
}
/* Kleiner Teal-Akzentstrich unter zentrierten Sektions-Titeln */
.sec-head h2::after {
  content: "";
  display: block;
  width: 56px; height: 4px;
  border-radius: 4px;
  background: var(--teal);
  margin: 16px auto 0;
}
.sec-head p { color: var(--grey); font-size: 1.05rem; }

/* Kleine Inline-SVG-Icons */
.ic { width: 20px; height: 20px; flex: none; }

/* ---------- Buttons: alles Pillen ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-600); box-shadow: 0 10px 22px rgba(31, 157, 162, 0.3); }

.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 6px 16px rgba(229, 184, 100, 0.35); }
.btn-gold:hover { box-shadow: 0 12px 24px rgba(229, 184, 100, 0.45); }

.btn-light { background: #fff; color: var(--petrol); border-color: rgba(28, 43, 77, 0.15); }
.btn-light:hover { border-color: var(--teal); color: var(--teal-600); box-shadow: 0 10px 22px rgba(16, 32, 37, 0.1); }

.btn-ghost { background: transparent; color: var(--petrol); border-color: rgba(28, 43, 77, 0.25); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-600); }

/* ---------- Header: liegt transparent IM Hero, wird beim Scrollen weiß ---------- */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(28, 43, 77, 0.08);
  box-shadow: 0 8px 28px -16px rgba(16, 32, 37, 0.18);
}

.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.logo { display: inline-flex; align-items: center; }
.logoimg { height: 40px; width: auto; display: block; object-fit: contain; }

/* Logo-Wechsel: weißes Logo auf dem Hero, farbiges nach dem Scrollen */
.logo .logo-dark { display: none; }
.logo .logo-light { display: block; }
header.scrolled .logo .logo-dark { display: block; }
header.scrolled .logo .logo-light { display: none; }

.nav-links { display: flex; gap: 6px; list-style: none; align-items: center; }

.nav-links > li > a:not(.btn) {
  display: inline-block;
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.nav-links > li > a:not(.btn):hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.nav-links > li > a.active:not(.btn) { background: rgba(255, 255, 255, 0.2); color: #fff; font-weight: 600; }

header.scrolled .nav-links > li > a:not(.btn) { color: var(--ink); }
header.scrolled .nav-links > li > a:not(.btn):hover { background: var(--mint); color: var(--petrol); }
header.scrolled .nav-links > li > a.active:not(.btn) { background: var(--teal-200); color: var(--petrol); }

.nav-links .btn { margin-left: 12px; padding: 11px 22px; font-size: 0.9rem; }

.has-drop { position: relative; }
.drop {
  display: none;
  position: absolute;
  top: 100%;
  left: -10px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(12, 22, 44, 0.16);
  padding: 10px 0;
  min-width: 300px;
  z-index: 80;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { display: block; }
.drop a { display: block; padding: 11px 18px; font-size: 0.92rem; color: var(--ink); }
.drop a:hover { background: var(--mint); color: var(--petrol); }
.drop a.active { color: var(--teal); font-weight: 600; }

/* Burger-Button: drei animierte Balken, wird nur auf kleinen Screens gezeigt */
.burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
header.scrolled .burger span,
header.menu-open .burger span { background: var(--petrol); }
/* Offener Zustand: Balken formen ein X */
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 1. Hero: Vollbild, Inhalt links, Störer rechts ---------- */

.hero-full {
  position: relative;
  min-height: 93vh; /* fast Vollbild – unten bleibt nur ein schmaler Streifen sichtbar */
  display: flex;
  align-items: center;
  padding: 120px 0 70px;
  overflow: hidden;
}

.hero-full > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay: links dunkler (Textseite), rechts offener */
.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 19, 38, 0.86) 0%, rgba(11, 19, 38, 0.66) 45%, rgba(11, 19, 38, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 18px;
}

.hero-content h1 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-content h1 .hl { color: var(--teal-300); }

.hero-sub { color: #E7F1F1; font-size: 1.06rem; max-width: 560px; margin-bottom: 24px; }

/* Hero-Raster: Inhalt links, Bild + Stat-Chips rechts */
.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

/* Bewertungs-Badges als subtile Glasboxen (unter den CTA-Buttons) */
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 9px 15px;
  color: #fff;
  font-size: 0.82rem;
}
.hero-badge .stars { display: flex; gap: 1px; color: var(--gold); }
.hero-badge .stars .ic { width: 13px; height: 13px; }
.hero-badge .ic { width: 14px; height: 14px; color: var(--teal-300); }
.hero-badge b { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; }
.hero-badge span { color: #D9E6E6; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Rechte Hero-Seite: gerundetes Bild mit überlappenden Glas-Stat-Chips */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 24px 10px 24px 0;
}
.hero-visual-img {
  width: min(380px, 100%);
  height: 460px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 34px 70px rgba(6, 12, 26, 0.55);
}
.hero-visual .stat-chip {
  position: absolute;
  background: rgba(11, 19, 38, 0.55); /* dunkler, damit die Chips auch auf hellen Bildstellen lesbar sind */
  border-color: rgba(255, 255, 255, 0.28);
}
.hero-visual .chip-a { top: 46px; left: -14px; }
.hero-visual .chip-b { bottom: 52px; right: -8px; }

.stat-chip {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px 24px;
  min-width: 200px;
}
.stat-chip b {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.65rem;
  color: #fff;
  line-height: 1.1;
}
.stat-chip span { color: #DDEBEB; font-size: 0.82rem; line-height: 1.35; display: block; margin-top: 3px; }

/* ---------- 2. Quick-Link-Bildkarten (mit Original-Texten) ---------- */

.quick-services-sec { padding: 84px 0 56px; }

.quick-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.quick-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy-050);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.quick-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -18px rgba(16, 32, 37, 0.28); }

.quick-card-img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.35s ease; }
.quick-card:hover .quick-card-img { transform: scale(1.04); }

.quick-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.quick-card-body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.quick-card-body p { color: var(--grey); font-size: 0.92rem; line-height: 1.55; margin-bottom: 18px; }

.quick-card-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--petrol);
}
.quick-card-link .arrow { font-size: 1.1rem; transition: transform 0.2s ease; }
.quick-card:hover .arrow { transform: translateX(5px); }

/* ---------- 3. Leistungen (Pastellband, Intro + Label+Text+Bild-Raster) ---------- */

.services-intro {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 48px;
}
.services-intro h2 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-bottom: 12px; }
.services-intro p { color: var(--grey); max-width: 560px; }

.services-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 72px;
}

.service-row { display: grid; grid-template-columns: 1fr 220px; gap: 20px; align-items: center; }

.service-row h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-row p { color: var(--grey); font-size: 0.92rem; line-height: 1.5; }
.service-row img { width: 220px; height: 130px; object-fit: cover; border-radius: 14px; }

/* ---------- 4. Split: Expertise ---------- */

.expertise-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 32px; align-items: stretch; }

.expertise-text {
  background: var(--navy-050);
  border-radius: var(--radius-xl);
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.expertise-text h2 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); margin-bottom: 14px; }
.expertise-text p { color: var(--grey); font-size: 0.98rem; margin-bottom: 16px; }
.expertise-text .btn { margin-top: 10px; }

.expertise-media { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; }
.expertise-media img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; border-radius: var(--radius-xl); }

/* ---------- 5. About mit Stats ---------- */

.about-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.about-grid > img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-xl); }

.about-content h2 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-bottom: 26px; }

.about-stats { display: flex; gap: 48px; margin-bottom: 22px; flex-wrap: wrap; }
.about-stats b {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--petrol);
  line-height: 1.1;
}
.about-stats span { color: var(--grey); font-size: 0.88rem; }

.about-content > p { color: var(--grey); font-size: 0.98rem; margin-bottom: 26px; }

/* ---------- 6. Warum MediLeads: Foto + Vorteils-Kacheln (Original-Inhalte) ---------- */

.why-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 32px; align-items: stretch; }
.why-grid > img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; border-radius: var(--radius-xl); }

.stat-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.stat-tile { border-radius: var(--radius-xl); padding: 28px 26px; display: flex; flex-direction: column; }
.stat-tile:nth-child(1) { background: #fff; }
.stat-tile:nth-child(2) { background: var(--teal-200); }
.stat-tile:nth-child(3) { background: var(--teal-200); }
.stat-tile:nth-child(4) { background: #fff; }

.stat-tile .tile-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(31, 157, 162, 0.14);
  color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.stat-tile h4 { font-size: 1.02rem; margin-bottom: 8px; }
.stat-tile p { color: var(--grey); font-size: 0.88rem; line-height: 1.55; }

/* ---------- 7. Standorte: Zeilen + Bildkarte ---------- */

.finder-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }

.location-tabs { display: flex; flex-direction: column; gap: 14px; }

.location-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--navy-050);
  cursor: pointer;
  font-weight: 600;
  color: var(--petrol);
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.location-tab:hover { transform: translateX(4px); }
.location-tab.active { background: var(--teal-200); box-shadow: inset 0 0 0 1.5px var(--teal); }
.location-tab span:last-child { color: var(--teal-600); font-size: 1.2rem; }

.location-preview-card { border-radius: var(--radius-xl); overflow: hidden; background: #fff; }
.location-preview-img { width: 100%; height: 330px; object-fit: cover; }
.location-preview-body { padding: 24px 28px 28px; }
.location-preview-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.location-preview-body p { color: var(--grey); font-size: 0.95rem; line-height: 1.55; }

/* ---------- 8. Testimonials: 6 Karten, wechselnde Tönung ---------- */

/* Layout wie Nicos Vorlage: 3 Spalten – links 2 Karten, Mitte 1 hohe Karte
   (vertikal versetzt), rechts 2 Karten. Tönung pro Karte über Klassen. */
.testi-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }
.testi-col { display: flex; flex-direction: column; gap: 30px; }
.testi-col.mid { margin-top: 56px; }
.testi-col.mid .testi-card { padding: 40px 32px; }

.testi-card {
  border-radius: var(--radius-xl);
  padding: 30px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(16, 32, 37, 0.25); }
.testi-card.t-blue { background: var(--navy-050); }
.testi-card.t-teal { background: var(--teal-200); }
.testi-card.t-soft { background: var(--teal-050); }

.testi-text { font-size: 0.97rem; line-height: 1.6; color: var(--ink); margin-bottom: 22px; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--petrol);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.testi-info b { display: block; font-size: 0.92rem; color: var(--petrol); }
.testi-info span { font-size: 0.82rem; color: var(--grey); }

/* ---------- 9. Wettbewerbscheck: EINE dunkle Box (Pitch links, Formular rechts) ---------- */

.cta-one {
  background: var(--petrol);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
}

.cta-pitch {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
}
.cta-pitch h2 { color: #fff; font-size: clamp(1.5rem, 2.2vw, 1.9rem); margin-bottom: 14px; }
.cta-pitch > p { color: #C3D2E2; font-size: 0.98rem; margin-bottom: 26px; }

.check-points { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.check-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: #fff; }
.check-points li::before {
  content: "";
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
  margin-top: 1px;
}

.cta-pitch .pitch-note {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 0.9rem;
  color: #C3D2E2;
  line-height: 1.55;
}
.cta-pitch .pitch-note b { color: #fff; }
.cta-pitch .pitch-note a { color: var(--gold); }

/* Formular-Hälfte: leicht abgesetzt, gleiche Box */
.cta-form {
  background: rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 52px 48px;
}
.cta-form h2 { color: #fff; font-size: clamp(1.4rem, 2vw, 1.7rem); margin-bottom: 8px; }
.cta-form .form-sub { color: #B9C9DA; font-size: 0.94rem; margin-bottom: 26px; }

.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; margin-bottom: 24px; }
.fgrid .full { grid-column: 1 / -1; }

.fgrid label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C9D8E8;
  margin-bottom: 7px;
}

.fgrid input, .fgrid select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.fgrid input:focus, .fgrid select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(31, 157, 162, 0.15); }
.fgrid input::placeholder { color: #9AACB0; }

.cta-form .btn { width: 100%; text-align: center; }
.cta-form small { display: block; text-align: center; color: #9FB2C6; font-size: 0.8rem; margin-top: 14px; }

/* ---------- 10. Footer: volle Breite, Navy, weißes Logo ---------- */

footer.site {
  background: var(--petrol-deep); /* einfarbig (Nico-Feedback) */
  color: #C2D6D6;
  position: relative;
  padding: 64px 0 30px;
  margin-top: 0;
}
footer.site::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
}

footer.site .cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 44px;
}

.logoimg-footer { height: 44px; width: auto; display: block; object-fit: contain; }

footer.site .cols p { font-size: 0.9rem; line-height: 1.6; color: #A9C6C4; margin-top: 16px; }

footer.site h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8FB6B8;
  margin-bottom: 16px;
}

footer.site .cols a {
  display: block;
  color: #C2D6D6;
  font-size: 0.92rem;
  margin-bottom: 10px;
  transition: color 0.15s ease, transform 0.15s ease;
}
footer.site .cols a:hover { color: var(--gold); transform: translateX(3px); }

footer.site .base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 22px;
  font-size: 0.85rem;
  color: #7E98A0;
}

/* ---------- Scroll-Reveal-Animationen (Klassen aus main.js) ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

.page-loader {
  position: fixed; inset: 0;
  background: var(--bg);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 200;
}
.page-loader.active { opacity: 1; pointer-events: all; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
  .hero-visual-img { width: min(320px, 100%); height: 400px; }
}

@media (max-width: 1000px) {
  section { padding: 64px 0; }

  /* Hero: keine erzwungene Vollhöhe mehr – Inhalt bestimmt die Höhe.
     Bild + Chips rutschen unter den Text, Chips bleiben sicher IM Bild. */
  .hero-full { min-height: 0; padding: 128px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { justify-content: center; padding: 6px 0 14px; }
  .hero-visual-img { width: 100%; max-width: 560px; height: 340px; }
  .hero-visual .stat-chip { min-width: 0; }
  .hero-visual .chip-a { top: 16px; left: 14px; }
  .hero-visual .chip-b { bottom: 16px; right: 14px; }

  .quick-card-grid { grid-template-columns: 1fr; }
  .deco-blob { width: 300px; height: 300px; }
  .services-intro { grid-template-columns: 1fr; align-items: start; }
  .services-rows { grid-template-columns: 1fr; gap: 28px; }
  .expertise-grid, .about-grid, .why-grid, .finder-grid, .cta-one { grid-template-columns: 1fr; }
  .cta-form { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .testi-cols { grid-template-columns: 1fr; }
  .testi-col.mid { margin-top: 0; }
  .testi-col.mid .testi-card { padding: 30px 28px; }
  .expertise-media img { min-height: 220px; }
  .about-grid > img { height: 300px; }
  footer.site .cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ---------- Mobiles Menü: vollflächiges weißes Panel unter der Leiste ---------- */

@media (max-width: 1000px) {
  .burger { display: flex; }

  /* Sobald das Menü offen ist, wird die Leiste weiß (auch über dem Hero).
     Wichtig: backdrop-filter muss aus – ein gefilterter Header würde sonst
     zum Bezugsrahmen für das fixierte Menü-Panel und es bliebe winzig. */
  header.menu-open {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(28, 43, 77, 0.08);
  }
  header.menu-open .logo .logo-dark { display: block; }
  header.menu-open .logo .logo-light { display: none; }

  /* Seite hinter dem offenen Menü nicht mitscrollen lassen */
  body.menu-open { overflow: hidden; }

  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 12px 24px 36px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  }
  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-links > li { width: 100%; }
  .nav-links > li + li { border-top: 1px solid var(--navy-100); }

  .nav-links > li > a:not(.btn) {
    display: block;
    padding: 16px 8px;
    border-radius: 0;
    font-size: 1.04rem;
    font-weight: 600;
    color: var(--petrol);
  }
  .nav-links > li > a:not(.btn):hover { background: none; color: var(--teal-600); }
  .nav-links > li > a.active:not(.btn) {
    background: none;
    color: var(--teal-600);
    box-shadow: inset 3px 0 0 var(--teal);
    padding-left: 14px;
  }

  /* Die Desktop-Farben des weißen (gescrollten) Headers dürfen die
     Menü-Links auf Unterseiten nicht überstimmen */
  header.scrolled .nav-links > li > a:not(.btn) { color: var(--petrol); }
  header.scrolled .nav-links > li > a:not(.btn):hover { background: none; color: var(--teal-600); }
  header.scrolled .nav-links > li > a.active:not(.btn) { background: none; color: var(--teal-600); }

  /* "Mehr ▾" verschwindet – die Unterpunkte stehen als eigene Gruppe im Menü */
  .nav-links .has-drop > a:not(.btn) { display: none; }
  .drop {
    position: static;
    display: block;
    min-width: 0;
    margin: 0;
    padding: 0 0 6px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .drop::before {
    content: "Weitere Themen";
    display: block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey);
    padding: 16px 8px 6px;
  }
  .drop a { padding: 12px 8px; font-size: 0.96rem; color: var(--ink); }
  .drop a:hover { background: none; color: var(--teal-600); }
  .drop a.active { box-shadow: inset 3px 0 0 var(--teal); padding-left: 14px; }

  /* Gold-Button als breiter Abschluss */
  .nav-links .btn {
    margin: 20px 0 0;
    width: 100%;
    text-align: center;
    padding: 15px 22px;
    font-size: 0.98rem;
  }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  section { padding: 56px 0; }
  .sec-head { margin-bottom: 36px; }

  /* Schlankere Leiste auf dem Handy */
  .nav { height: 64px; }
  .logoimg { height: 34px; }
  .nav-links { top: 64px; }
  body.sub { padding-top: 64px; }

  .hero-full { padding: 102px 0 48px; }
  .hero-content h1 { font-size: clamp(1.85rem, 8vw, 2.3rem); }
  .stat-chip { min-width: 0; padding: 10px 16px; }
  .stat-chip b { font-size: 1.3rem; }
  .stat-chip span { font-size: 0.74rem; }
  .hero-visual-img { width: 100%; height: 300px; }
  .hero-visual .chip-a { top: 12px; left: 10px; }
  .hero-visual .chip-b { bottom: 12px; right: 10px; }

  .service-row { grid-template-columns: 1fr; }
  .service-row img { width: 100%; height: 150px; }
  .expertise-media { grid-template-columns: 1fr; }
  .about-stats { gap: 28px; }
  .stat-tiles { grid-template-columns: 1fr; gap: 18px; }
  .fgrid { grid-template-columns: 1fr; }
  .cta-pitch, .cta-form { padding: 32px 24px; }
  footer.site .cols { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* Buttons untereinander in voller Breite – nichts quetscht sich mehr */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
  .hero-badges { gap: 8px; }
  .hero-badge { padding: 8px 12px; font-size: 0.78rem; }
}

/* ==========================================================================
   UNTERSEITEN-BAUSTEINE (08/2026)
   Gerüst für alle Unterseiten: fester weißer Header (Klassen "solid scrolled"),
   Breadcrumbs, Split-Hero, Karten-Raster, FAQ, Pakete, Vergleichstabelle,
   Prose-Layout für Rechtstexte und CTA-Band.
   ========================================================================== */

/* Unterseiten haben einen festen weißen Header -> Inhalt braucht Abstand oben */
body.sub { padding-top: 76px; }

/* Breadcrumbs */
.crumbs {
  display: none;
}
.crumbs a { color: var(--grey); transition: color 0.15s ease; }
.crumbs a:hover { color: var(--teal-600); }
.crumbs b { color: var(--teal-600); font-weight: 600; }

/* Split-Hero der Unterseiten: Textpanel links, Bild mit Chips rechts */
.page-hero { padding-bottom: 0; }
.ph-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--navy-050);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 430px;
}
.ph-text {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.ph-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 16px;
}
.ph-text h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.ph-text h1 .hl { color: var(--teal-600); }
.ph-lead { color: var(--grey); font-size: 1.02rem; margin-bottom: 26px; max-width: 520px; }
.ph-media { position: relative; min-height: 320px; }
.ph-media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph-media .stat-chip {
  position: absolute;
  background: rgba(11, 19, 38, 0.55);
  border-color: rgba(255, 255, 255, 0.28);
}
.ph-media .chip-a { top: 26px; right: 26px; }
.ph-media .chip-b { bottom: 26px; left: 26px; }

/* Karten-Raster */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
  background: var(--navy-050);
  border-radius: var(--radius-xl);
  padding: 30px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
section.band .card { background: #fff; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(16, 32, 37, 0.22); }
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p { color: var(--grey); font-size: 0.93rem; line-height: 1.6; }
.card p + p { margin-top: 10px; }
.card a { color: var(--teal-600); font-weight: 600; }

/* Nummern-Kreis für Schritt-Karten */
.schritt-nr {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-200);
  color: var(--petrol);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
section.band .schritt-nr { background: var(--teal-200); }

/* Phasen-Label über Karten-Titeln */
.step-n {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 10px;
}

/* Split-Info: Statement links, Detail-Karten rechts */
.split-info { display: grid; grid-template-columns: 1fr 1.15fr; gap: 32px; align-items: start; }
.si-card { background: var(--teal-200); border-radius: var(--radius-xl); padding: 40px 36px; }
section.band .si-card { background: var(--teal-200); }
.si-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 12px;
}
.si-satz {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.3;
  color: var(--petrol);
  margin-bottom: 14px;
}
.si-sub { color: #33555A; font-size: 0.95rem; }
.si-items { display: flex; flex-direction: column; gap: 18px; }
.si-item { background: var(--navy-050); border-radius: 16px; padding: 22px 26px; }
section.band .si-item { background: #fff; }
.si-item h4 { font-size: 1rem; margin-bottom: 6px; }
.si-item p { color: var(--grey); font-size: 0.93rem; line-height: 1.6; }
.si-item a { color: var(--teal-600); font-weight: 600; }

/* Gegenüberstellung: alt (grau) vs. neu (teal) */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.compare > div { border-radius: var(--radius-xl); padding: 34px 32px; }
.compare .old { background: var(--navy-050); }
.compare .new { background: var(--teal-200); }
.compare h3 { font-size: 1.15rem; margin-bottom: 16px; }
.compare ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.compare li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: var(--ink); }
.compare .old li::before {
  content: "–";
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--grey);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.compare .new li::before {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* Plus/Minus-Karten (z. B. Auslandsrekrutierung) */
.pm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.pm-card { border-radius: var(--radius-xl); padding: 34px 32px; }
.pm-card.plus { background: var(--teal-200); }
.pm-card.minus { background: var(--gold-100); }
.pm-card h3 { font-size: 1.1rem; margin-bottom: 16px; }
.pm-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pm-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: var(--ink); line-height: 1.55; }
.pm-card.plus li::before {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
  margin-top: 2px;
}
.pm-card.minus li::before {
  content: "!";
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.pm-card.wide { grid-column: 1 / -1; }

/* Zwei Pakete (Recruiting Inhouse) */
.pakete { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.paket {
  position: relative;
  background: var(--navy-050);
  border-radius: var(--radius-xl);
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
}
.paket h3 { font-size: 1.25rem; margin-bottom: 8px; }
.paket .preis { font-family: var(--font-heading); font-weight: 700; color: var(--teal-600); margin-bottom: 12px; }
.paket > p { color: var(--grey); font-size: 0.95rem; margin-bottom: 18px; }
.paket ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.paket li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.93rem; color: var(--ink); line-height: 1.5; }
.paket li::before {
  content: "";
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat;
  margin-top: 2px;
}
.paket.plus { background: var(--petrol); }
.paket.plus h3, .paket.plus .preis { color: #fff; }
.paket.plus > p { color: #C3D2E2; }
.paket.plus li { color: #fff; }
.paket .pill {
  position: absolute;
  top: -14px; right: 28px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

/* Vergleichstabelle */
.vgl-wrap { overflow-x: auto; border-radius: var(--radius-xl); box-shadow: 0 12px 34px rgba(12, 22, 44, 0.08); }
.vgl-tabelle { width: 100%; border-collapse: collapse; background: #fff; font-size: 0.92rem; }
.vgl-tabelle th, .vgl-tabelle td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--navy-100);
  vertical-align: top;
  min-width: 170px;
}
.vgl-tabelle th { background: var(--petrol); color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; }
.vgl-tabelle th:first-child { background: var(--petrol-deep); }
.vgl-tabelle td:first-child { font-weight: 700; color: var(--petrol); background: var(--navy-050); }
.vgl-tabelle tr:last-child td { border-bottom: none; }
.vgl-tabelle td.wir { background: var(--gold-100); }

/* FAQ-Akkordeon */
details {
  background: var(--navy-050);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}
section.band details { background: #fff; }
details summary {
  list-style: none;
  cursor: pointer;
  padding: 19px 56px 19px 24px;
  font-weight: 600;
  color: var(--petrol);
  position: relative;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
}
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details .a { padding: 0 24px 20px; color: var(--grey); font-size: 0.95rem; line-height: 1.65; }
details .a a { color: var(--teal-600); font-weight: 600; }

/* Statement / Zitatzeile */
.statement {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: var(--petrol);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.35;
}

/* Fließtext-Block */
.text-block { max-width: 840px; margin: 0 auto; }
.text-block p { color: var(--ink); font-size: 0.98rem; margin-bottom: 16px; }
.text-block b { color: var(--petrol); }
.text-block a { color: var(--teal-600); font-weight: 600; }

/* Hinweis-Karte (Gold) */
.note-card {
  background: var(--gold-100);
  border-radius: var(--radius-xl);
  padding: 26px 30px;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.65;
  max-width: 980px;
  margin: 0 auto;
}
.note-card b { color: var(--petrol); }
.note-card a { color: var(--gold-deep); font-weight: 700; }

/* Job-Zeilen (Karriere) */
.job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--navy-050);
  border-radius: 16px;
  padding: 22px 28px;
  margin-bottom: 14px;
}
.job h3 { font-size: 1.05rem; margin-bottom: 3px; }
.job .meta { color: var(--grey); font-size: 0.88rem; }

/* CTA-Band am Seitenende */
.cta-band {
  background: var(--petrol);
  border-radius: var(--radius-xl);
  text-align: center;
  padding: 60px 44px;
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 14px; }
.cta-band p { color: #C3D2E2; font-size: 1rem; max-width: 640px; margin: 0 auto 26px; }
section.tight { padding: 40px 0 96px; }

/* Prose-Layout für Rechtstexte */
.prose { max-width: 860px; margin: 0 auto; }
.prose h1 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 26px; }
.prose h2 { font-size: 1.3rem; margin: 38px 0 14px; }
.prose h3 { font-size: 1.05rem; margin: 26px 0 10px; }
.prose p { color: var(--ink); font-size: 0.96rem; margin-bottom: 14px; line-height: 1.7; }
.prose ul, .prose ol { margin: 0 0 14px 22px; color: var(--ink); font-size: 0.96rem; line-height: 1.7; }
.prose a { color: var(--teal-600); font-weight: 600; }
.prose b, .prose strong { color: var(--petrol); }

/* Responsive für Unterseiten-Bausteine */
@media (max-width: 1000px) {
  .ph-card { grid-template-columns: 1fr; }
  .ph-text { padding: 40px 30px; }
  .ph-media { min-height: 280px; }
  .ph-media .stat-chip { min-width: 0; }
  .ph-media .chip-a { top: 16px; right: 16px; }
  .ph-media .chip-b { bottom: 16px; left: 16px; }
  .grid3 { grid-template-columns: 1fr; }
  .split-info, .compare, .pm-grid, .pakete { grid-template-columns: 1fr; }
  .job { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   UNTERSEITEN-FEINSCHLIFF (08/2026, Feedback Nico)
   Dunkle, größere Split-Heros · stärkere Kontraste · Logo-Deko (Quadrate +
   Raute wie im MediLeads-Logo) · CTA-Band als randloses Band mit Elementen ·
   Bildstreifen. Überschreibt gezielt die Regeln weiter oben.
   ========================================================================== */

/* ---------- Stärkere Kontraste ---------- */

section.band { background: #DCEDE9; } /* kräftigeres Mint-Band */

.sec-head p,
.card p,
.si-item p,
.si-sub,
details .a { color: #44575D; }

.btn-ghost { border-color: rgba(28, 43, 77, 0.42); }

/* ---------- Split-Hero der Unterseiten: dunkel, größer, mit Logo-Deko ---------- */

.ph-card {
  background: linear-gradient(118deg, var(--petrol-deep) 0%, var(--petrol) 55%, #1D4553 100%);
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.ph-card > * { position: relative; z-index: 1; }

.ph-text { padding: 64px 56px; }

.ph-eyebrow { color: var(--teal-300); }
.ph-text h1 { color: #fff; font-size: clamp(2.1rem, 3.6vw, 3rem); }
.ph-text h1 .hl { color: var(--teal-300); }
.ph-lead { color: #C9D9E4; font-size: 1.05rem; }

.ph-text .btn-ghost { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.ph-text .btn-ghost:hover { border-color: #fff; color: #fff; }



/* ---------- Logo-Deko für Statement-Karten ---------- */

.si-card { position: relative; overflow: hidden; }

/* ---------- Bildstreifen ---------- */

.img-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.img-strip.duo { grid-template-columns: 1.35fr 1fr; }
.img-strip img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius-xl); }

/* ---------- CTA-Band: randlos, mit Logo-Elementen statt runder Box ---------- */

section.tight { padding: 0; }
section.tight > .wrap { max-width: none; padding: 0; }

.cta-band {
  border-radius: 0;
  background: var(--petrol);
  padding: 96px 28px 104px;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.cta-band h2 { font-size: clamp(1.6rem, 2.7vw, 2.3rem); position: relative; z-index: 1; }
.cta-band p { position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

@media (max-width: 1000px) {
  .ph-card { min-height: 0; }
  .ph-text { padding: 48px 32px; }
  .img-strip, .img-strip.duo { grid-template-columns: 1fr; }
  .img-strip img { height: 200px; }
  .cta-band { padding: 72px 24px 84px; }
}

/* ==========================================================================
   UNTERSEITEN-HERO v3 (08/2026): randlos über die volle Breite, schlanker
   als der Start-Hero, Breadcrumbs im dunklen Panel, Deko als ausgerichtete
   Reihe an der Nahtstelle · kräftigere Highlight-Farbe in Überschriften.
   ========================================================================== */

/* Kräftigeres Highlight-Teal für zweifarbige Überschriften (bessere Abhebung) */
.hero-content h1 .hl,
.ph-text h1 .hl {
  color: #7CDDE3;
  display: block;
  margin-top: 8px;
  font-weight: 800;
  text-shadow: 0 0 1px rgba(124, 221, 227, 0.25);
}

/* Hero-Sektion ohne Container: Karte läuft bis an beide Ränder */
.page-hero { padding: 0; }

.ph-card {
  border-radius: 0;
  min-height: clamp(420px, 58vh, 580px);
  overflow: hidden;
}

/* Textseite: Innenabstand links so, dass der Inhalt mit dem Container fluchtet */
.ph-text {
  padding: 56px 56px 56px max(28px, calc((100vw - 1304px) / 2));
}

/* Breadcrumbs im dunklen Panel */
.ph-text .crumbs { padding: 0 0 20px; color: #8FA6BB; }
.ph-text .crumbs a { color: #8FA6BB; }
.ph-text .crumbs a:hover { color: #fff; }
.ph-text .crumbs b { color: var(--teal-300); }

@media (max-width: 1000px) {
  .ph-card { min-height: 0; }
  .ph-text { padding: 44px 28px 48px; }
}

/* ==========================================================================
   v4 (08/2026, Feedback Nico): Deko-Überarbeitung + Responsive-Feinschliff
   Die kleinen Einzel-Kästen sind raus. Stattdessen liegt jetzt das
   Logo-Motiv (drei gerundete Kästen + Teal-Raute, wie im MediLeads-Logo)
   groß, blass und angeschnitten im Hintergrund der dunklen Flächen.
   ========================================================================== */

:root {
  /* Das Logo-Motiv als Inline-SVG: weiße Kästen mit ~5 % Deckkraft,
     die Raute in Teal mit ~14 % – bewusst sehr zurückhaltend */
  --logo-motif: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Crect width='92' height='92' rx='16' fill='%23ffffff' opacity='0.05'/%3E%3Crect y='104' width='92' height='92' rx='16' fill='%23ffffff' opacity='0.05'/%3E%3Crect x='104' y='104' width='92' height='92' rx='16' fill='%23ffffff' opacity='0.05'/%3E%3Crect x='117' y='13' width='66' height='66' rx='12' fill='%2301b1b7' opacity='0.14' transform='rotate(45 150 46)'/%3E%3C/svg%3E");
}

/* Unterseiten-Hero: Motiv unten links hinter dem Text, angeschnitten */
.ph-card {
  background-image: var(--logo-motif), linear-gradient(118deg, var(--petrol-deep) 0%, var(--petrol) 55%, #1D4553 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: left -90px bottom -100px, center;
  background-size: 400px 400px, cover;
}

/* CTA-Band am Seitenende: ohne Motiv */
.cta-band {
  background-color: var(--petrol);
}

/* Wettbewerbscheck-Box (Startseite + Landingpage): Motiv unten links,
   stark angeschnitten, damit es hinter dem Text ruhig bleibt */
.cta-one {
  background-color: var(--petrol);
  background-image: var(--logo-motif);
  background-repeat: no-repeat;
  background-position: left -160px bottom -160px;
  background-size: 400px 400px;
}

/* Footer: Motiv unten rechts, sehr dezent */
footer.site {
  background-color: var(--petrol-deep);
  background-image: var(--logo-motif);
  background-repeat: no-repeat;
  background-position: right -110px bottom -120px;
  background-size: 420px 420px;
}

/* Unterseiten-Überschriften auf kleinen Screens etwas kompakter */
@media (max-width: 640px) {
  .ph-text h1 { font-size: clamp(1.7rem, 7vw, 2.1rem); }
  .ph-text { padding: 36px 20px 44px; }
  .ph-text .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .ph-text .hero-cta .btn { text-align: center; }
  .cta-band { padding: 64px 20px 72px; }
  .img-strip img { height: 170px; }
}

/* Motiv auf kleinen Screens verkleinern, damit es dezent bleibt.
   Im gestapelten Unterseiten-Hero liegt das Bild unten – das Motiv
   wandert deshalb nach oben rechts in die dunkle Textfläche. */
@media (max-width: 700px) {
  .ph-card {
    background-size: 260px 260px, cover;
    background-position: right -80px top -80px, center;
  }
  .cta-one { background-size: 280px 280px; }
  footer.site { background-size: 300px 300px; }
}
