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

:root {
  --navy: #0B1D3A;
  --navy-light: #132B52;
  --navy-mid: #1A3A6B;
  --gold: #C8963E;
  --gold-light: #D4A854;
  --gold-pale: #F5E6C8;
  --teal: #2A9D8F;
  --green: #5CBF2A;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --gray-100: #EEF0F4;
  --gray-200: #D1D5DE;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --text: #1F2937;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --max-width: 1200px;
  --section-padding: 100px 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 29, 58, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 150, 62, 0.15);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-inner.nav-only { justify-content: flex-end; }

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header .logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.logo img {
  height: 45px;
  width: auto;
}

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

.nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.25s;
}

/* Unterstreichung wächst beim Hover von links ein */
.nav a:not(.cta-btn) { position: relative; }

.nav a:not(.cta-btn)::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 1.5px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav a:not(.cta-btn):hover,
.nav a:not(.cta-btn).active {
  color: var(--white);
}

.nav a:not(.cta-btn):hover::after,
.nav a:not(.cta-btn).active::after {
  transform: scaleX(1);
}

.nav .cta-btn {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  margin-left: 8px;
}

.nav .cta-btn:hover {
  background: var(--gold-light);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero-logo {
  display: block;
  height: 130px;
  width: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.32));
}

/* Gestaffelter Hero-Einstieg beim Laden */
.hero .hero-inner > * {
  opacity: 0;
  animation: heroRise 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero .hero-inner > *:nth-child(1) { animation-delay: 0.10s; }
.hero .hero-inner > *:nth-child(2) { animation-delay: 0.22s; }
.hero .hero-inner > *:nth-child(3) { animation-delay: 0.34s; }
.hero .hero-inner > *:nth-child(4) { animation-delay: 0.46s; }
.hero .hero-inner > *:nth-child(5) { animation-delay: 0.58s; }
.hero .hero-inner > *:nth-child(6) { animation-delay: 0.70s; }

@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero .hero-inner > * { opacity: 1; animation: none; }
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200, 150, 62, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 150, 62, 0.12);
  border: 1px solid rgba(200, 150, 62, 0.25);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

.hero-badge svg { width: 16px; height: 16px; }

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.hero h1 .gold { color: var(--gold); }

.hero-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 150, 62, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn svg { width: 18px; height: 18px; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

/* Wandernder grüner Logo-Punkt entlang der Trennlinie (links → rechts) */
.hero-spark {
  position: absolute;
  top: -4.5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px 2px rgba(92, 191, 42, 0.7);
  animation: spark-run 13s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  pointer-events: none;
}

@keyframes spark-run {
  0%   { left: 0;    opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-spark { animation: none; opacity: 0; }
}

.hero-stats > div {
  flex: 0 0 auto;
  min-width: 110px;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
  line-height: 1.3;
}

/* --- PAGE HERO (Unterseiten) --- */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, var(--navy-mid) 100%);
  overflow: hidden;
  padding: 160px 0 90px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 70%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(200, 150, 62, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .hero-grid { position: absolute; inset: 0; }

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.page-hero h1 .gold { color: var(--gold); }

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  line-height: 1.7;
}

/* --- SECTIONS --- */
.section { padding: var(--section-padding); }
.section.compact { padding: 72px 0; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-inner.narrow { max-width: 860px; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header.left { text-align: left; margin-left: 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Grüner Logo-Punkt als wiederkehrender Akzent vor jedem Label */
.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 10px;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(92, 191, 42, 0.5);
  animation: gdot-pulse 2.6s ease-out infinite;
}

/* Wiederverwendbarer grüner Punkt (z.B. am Ende von Headlines) */
.gdot {
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  background: var(--green);
  margin-left: 0.12em;
  vertical-align: baseline;
  box-shadow: 0 0 0 0 rgba(92, 191, 42, 0.5);
  animation: gdot-pulse 2.6s ease-out infinite;
}

@keyframes gdot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(92, 191, 42, 0.45); }
  70%  { box-shadow: 0 0 0 9px rgba(92, 191, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 191, 42, 0); }
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- PROSE / CONTENT --- */
.prose { max-width: 760px; }
.prose p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
}
.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
}

/* --- SERVICES (Cards) --- */
.services { background: var(--off-white); }

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

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Grüne Akzentlinie wächst beim Hover von links ein */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 29, 58, 0.1);
  border-color: rgba(200, 150, 62, 0.3);
}

.service-icon { transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); }
.service-card:hover .service-icon { transform: scale(1.08); }

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg { width: 40px; height: 40px; }

.service-icon.pathologie { background: rgba(42, 157, 143, 0.1); color: var(--teal); }
.service-icon.klinik { background: rgba(200, 150, 62, 0.1); color: var(--gold); }
.service-icon.vergabe { background: rgba(19, 43, 82, 0.1); color: var(--navy-light); }
.service-icon.firmen { background: rgba(124, 58, 237, 0.1); color: #7C3AED; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
}

.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; }

/* --- FEATURE CARDS (2-Spalten Unterseiten) --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 40px 36px;
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 20px 50px rgba(11, 29, 58, 0.08);
  border-color: rgba(200, 150, 62, 0.3);
}

.feature-card.dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
}

.feature-card .feature-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.feature-card.dark h3 { color: var(--white); }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.feature-card.dark .check-list li { color: rgba(255,255,255,0.8); }

.check-list li svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
}

.check-list li strong { color: var(--navy); font-weight: 600; }
.feature-card.dark .check-list li strong { color: var(--white); }

/* --- STEP / NUMBERED LIST --- */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 32px 28px;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.7; }

/* --- HIGHLIGHT / PRICE BOX --- */
.highlight-box {
  background: linear-gradient(135deg, rgba(42,157,143,0.08), rgba(200,150,62,0.08));
  border: 1px solid rgba(42, 157, 143, 0.2);
  border-radius: 18px;
  padding: 40px;
}

.highlight-box h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.highlight-box p { color: var(--gray-700); line-height: 1.8; }
.highlight-box .accent { color: var(--teal); font-weight: 700; }

.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.price-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 32px;
}

.price-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.price-card p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; }
.price-card .price-tag { color: var(--gold); font-weight: 700; font-size: 1.1rem; }

/* --- TABLE (Kostenvergleich) --- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-100);
}

.compare-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
}

.compare-table td { color: var(--gray-700); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .cheaper { color: var(--teal); font-weight: 700; }

/* --- WORKFLOW --- */
.workflow { background: var(--off-white); }

.workflow-image {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: 0 24px 70px rgba(11, 29, 58, 0.16), 0 4px 14px rgba(11, 29, 58, 0.08);
  background: var(--white);
}

.workflow-image img {
  display: block;
  width: 100%;
  height: auto;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 48px auto 0;
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-100);
}

.workflow-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-step span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.3;
}

/* --- ABOUT --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-label { text-align: left; }

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.about-features li svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 460px;
}

.about-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}

.about-stat-card:hover {
  border-color: rgba(200, 150, 62, 0.3);
  box-shadow: 0 10px 30px rgba(11, 29, 58, 0.08);
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.about-stat-number .gold { color: inherit; }

.about-stat-text {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 8px;
  line-height: 1.5;
}

/* Value-Variante: die drei K + Unabhängig */
.about-card-stack.values .about-stat-card {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.about-card-stack.values .value-head {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.about-card-stack.values .vdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 9px;
  flex-shrink: 0;
}

.about-card-stack.values .about-stat-text {
  margin-top: 10px;
}

/* Rotierender grüner Punkt (alle 7 s wandert das Leuchten weiter) */
.about-card-stack.values .vdot {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.about-card-stack.values .about-stat-card.is-active .vdot {
  transform: scale(1.35);
  box-shadow: 0 0 0 5px rgba(92, 191, 42, 0.18), 0 0 12px 2px rgba(92, 191, 42, 0.45);
}

/* --- FOUNDER / ÜBER PRO PATHO --- */
.founder-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}

.founder-photo { position: relative; }

.founder-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid var(--gray-100);
  box-shadow: 0 24px 60px rgba(11, 29, 58, 0.16);
}

.founder-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-photo-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.founder-photo-ph svg { width: 64px; height: 64px; }
.founder-photo-ph span { font-size: 0.9rem; letter-spacing: 0.04em; }

/* Wenn ein echtes Bild geladen ist, Platzhalter ausblenden */
.founder-photo-frame:has(img) .founder-photo-ph { display: none; }

.founder-nameplate {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(11, 29, 58, 0.06);
}

.founder-nameplate .vdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.founder-nameplate strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.founder-nameplate span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.founder-content .section-label { text-align: left; }
.founder-content .section-title { text-align: left; margin-bottom: 20px; }

/* --- TIMELINE --- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 8px 0 36px;
  border-left: 2px solid var(--gray-100);
  padding-left: 0;
}

.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0 14px 24px;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
}

.tl-item:first-child::before { border-color: var(--green); background: var(--green); }

.tl-year {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}

.tl-dash { color: var(--gold); margin: 0 1px; }

.tl-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
}

/* --- WERTE als 4-Spalten-Reihe --- */
.about-card-stack.values.four-col {
  grid-template-columns: repeat(4, 1fr);
  max-width: none;
  gap: 24px;
}

/* --- CTA SECTION --- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200, 150, 62, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-inner .section-title {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.cta-inner .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.cta-inner .btn-primary {
  font-size: 1.05rem;
  padding: 18px 40px;
}

/* --- FOOTER --- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 0;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 45px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding: 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--gold); }

/* --- MOBILE --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo-frame { max-width: 380px; }
  .about-card-stack.values.four-col { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

  .header-inner { height: 64px; }
  .nav { display: none; }
  .mobile-toggle { display: block; }

  .hero-logo { height: 80px; margin-bottom: 24px; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 4px;
  }

  .nav.open a { padding: 12px 16px; }
  .nav.open .cta-btn { margin-left: 0; margin-top: 8px; text-align: center; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  .page-hero { padding: 120px 0 64px; }

  .services-grid { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .about-card-stack { grid-template-columns: 1fr 1fr; }
  .about-card-stack.values.four-col { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 100px 1fr; gap: 12px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* --- NEWS --- */
.news-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  padding: 32px 36px;
  transition: all 0.3s;
}

.news-card:hover {
  box-shadow: 0 16px 40px rgba(11, 29, 58, 0.08);
  transform: translateY(-3px);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.news-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
}

.news-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(42, 157, 143, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
}

.news-card h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}

.news-card p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 12px;
}

.news-card p:last-child { margin-bottom: 0; }

.news-empty {
  text-align: center;
  color: var(--gray-500);
  padding: 40px;
}

/* --- CONSENT BANNER --- */
.consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  max-width: 560px;
  margin: 0 auto;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(200, 150, 62, 0.3);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(140%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.consent.show { transform: translateY(0); }

.consent h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.consent p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.consent p a { color: var(--gold-light); text-decoration: underline; }

.consent-actions { display: flex; gap: 12px; align-items: center; }

.consent .btn {
  padding: 12px 26px;
  font-size: 0.92rem;
}

@media (max-width: 560px) {
  .consent { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
  .consent-actions { flex-direction: column; align-items: stretch; }
}

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

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
