/* ═══════════════════════════════════════════════
   MSNVI — Version 4
   Avenir Next · Zwei-Farben-System · Editorial
   Nur: #1E5EDB + #F2F2F2 + Weiß + Dunkelgrau (nur Fließtext)
═══════════════════════════════════════════════ */

@font-face {
  font-family: 'Avenir Next';
  src: url('fonts/avenir-next-light.ttf') format('truetype');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ── Farben: strikt zwei ── */
  --blue:        #1E5EDB;
  --blue-dark:   #1448A8;
  --blue-light:  rgba(30, 94, 219, 0.07);
  --blue-mid:    rgba(30, 94, 219, 0.13);
  --off-white:   #F2F2F2;
  --white:       #FFFFFF;
  --charcoal:    #1A1A1A;   /* Footer – einzige dunkle Fläche */

  /* ── Text ── */
  --text:        #1E1E1E;   /* Fließtext: stärker, nicht hartes Schwarz */
  --text-light:  #3A3A3A;   /* Sekundärtext: deutlich sichtbar */
  --text-muted:  #686868;   /* Metainfo, Datums, Labels */

  /* ── Graustufen für Borders / Subtil ── */
  --grey-100:    #F0F0F0;
  --grey-200:    #E0E0E0;
  --grey-300:    #C8C8C8;
  --grey-400:    #9A9A9A;
  --grey-600:    #5A5A5A;

  /* ── Schrift ── */
  --font:        'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Layout ── */
  --max-w:       1120px;
  --section-pad: 104px 0;

  /* ── Radius ── */
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-pill: 50px;

  /* ── Motion ── */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --transition:  0.35s ease;
  --transition-slow: 0.85s var(--ease);

  /* ── Akzentfarbe Orange ── */
  --orange:      #FF7A00;
  --orange-dark: #D96600;
  --orange-light: rgba(255, 122, 0, 0.10);

  /* Legacy-Aliasse → kein Pink mehr */
  --navy:        var(--charcoal);
  --navy-light:  #2A2A2A;
  --cream:       var(--off-white);
  --gold:        var(--blue);
  --gold-light:  rgba(255,255,255,0.85);
  --font-serif:  var(--font);
  --font-sans:   var(--font);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section { padding: var(--section-pad); }
.section--cream { background: var(--white); }
.section--navy  { background: var(--blue); color: var(--white); }

/* ── Labels ── */
.label {
  font-family: var(--font);
  font-size: 11px; font-weight: 500;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--blue); display: block; margin-bottom: 16px;
}
.label--white { color: rgba(255,255,255,0.45); letter-spacing: 3.5px; }

/* ── Typografie: dünn, elegant, luftig ── */
h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--blue);
}
h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0;
  color: #333333;
}
h4 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
}
p {
  font-weight: 400;
  color: var(--text);
  line-height: 1.88;
}
.text-white p    { color: rgba(255,255,255,0.88); }
.text-white h2,
.text-white h3,
.text-white h4   { color: var(--white); }

/* Divider — blau statt pink */
.divider {
  width: 36px; height: 1.5px;
  background: var(--blue);
  margin: 20px 0 28px;
  border-radius: 2px;
}
.divider--center { margin: 20px auto 28px; }

/* ══════════════════════════════════════════
   BUTTONS — pill-förmig, weich
══════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-pill);
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30, 94, 219, 0.22);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 28px rgba(30, 94, 219, 0.32);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-outline--white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-outline--white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
.btn + .btn { margin-left: 12px; }
.btn-cta-white {
  background: var(--white);
  color: var(--orange);
  border-radius: var(--radius-pill);
  padding: 16px 38px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.btn-cta-white:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

/* ── Orange-Primär-Button (Hero) ── */
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(255,122,0,0.42), 0 1px 6px rgba(255,122,0,0.20);
  padding: 15px 40px;
}
.btn-orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 34px rgba(255,122,0,0.52), 0 2px 8px rgba(255,122,0,0.24);
  transform: translateY(-2px);
}

/* ── Layout-Grids ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(242, 242, 242, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-200);
  transition: var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg { width: 36px; height: 22px; }
.nav-logo-text {
  font-family: var(--font);
  font-size: 14px; font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font);
  font-size: 12.5px; font-weight: 400;
  color: var(--grey-600); letter-spacing: 0.5px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-active { color: var(--blue); font-weight: 500; }
.nav-cta {
  font-size: 11px !important; font-weight: 500 !important;
  letter-spacing: 2px !important; text-transform: uppercase;
  color: var(--blue) !important;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition) !important;
}
.nav-cta:hover { border-bottom-color: var(--blue) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--text); }

/* ══════════════════════════════════════════
   HERO SLIDER — langsam, cineastisch
══════════════════════════════════════════ */
#hero {
  position: relative; overflow: hidden;
  height: 100vh; min-height: 640px;
}
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex; align-items: center; padding-top: 72px;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-repeat: no-repeat;
  transition: transform 14s cubic-bezier(0.1, 0, 0.9, 1);
  will-change: transform;
}
.hero-slide.is-active .hero-slide-bg { transform: scale(1.04); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; }
.hero-slide-content { position: relative; z-index: 3; width: 100%; }
.hero-content { max-width: 680px; padding: 80px 0; }
.hero-content .label {
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  letter-spacing: 4px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--white);
  opacity: 0.82;
}
.hero-lead {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  margin-bottom: 48px;
  max-width: 500px;
  line-height: 1.85;
  letter-spacing: 0.01em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Pfeilbuttons — kein Pink hover */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: white; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.4s ease, border-color 0.4s ease;
  backdrop-filter: blur(6px);
}
.hero-arrow:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
}
.hero-arrow--prev { left: 32px; }
.hero-arrow--next { right: 32px; }

/* Indikatoren — kein Pink */
.hero-indicators {
  position: absolute; bottom: 40px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero-indicator {
  display: block; height: 1px; width: 32px;
  background: rgba(255,255,255,0.2); border: none; padding: 0;
  cursor: pointer; border-radius: 1px;
  transition: background 0.5s ease, width 0.5s ease;
}
.hero-indicator.is-active {
  background: rgba(255,255,255,0.85);
  width: 52px;
}
.hero-scroll {
  position: absolute; bottom: 40px; right: 40px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
}
.hero-scroll span { display: block; width: 1px; height: 40px; background: rgba(255,255,255,0.18); }

/* ── Page Header (Unterseiten) ── */
.page-header {
  padding-top: 72px;
  background: var(--blue);
  padding-bottom: 72px;
  position: relative; overflow: hidden;
}
.page-header-inner { padding-top: 56px; position: relative; z-index: 1; }
.page-header-bg-deco {
  display: none;
}

/* ── Bild-Streifen & Bild-Rahmen ── */
.img-strip {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}
.img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.img-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,30,30,0.08) 0%, rgba(30,30,30,0.22) 100%);
  pointer-events: none;
}
.img-strip--short { height: 300px; }
.img-strip--tall  { height: 520px; }
.img-frame {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-frame--portrait { height: 380px; }
.img-frame--landscape { height: 260px; }

/* ── Deko-Overlays ── */
.section--navy { position: relative; overflow: hidden; }
.section-bg-deco { display: none; }
.section-bg-deco svg { display: none; }
.section-pattern { position: relative; overflow: hidden; }
.section-pattern-overlay { display: none; }
.section-pattern-overlay svg { display: none; }
.cta-banner { position: relative; overflow: hidden; }
.cta-bg-deco { display: none; }
.cta-bg-deco svg { display: none; }
.cta-banner .container { position: relative; z-index: 1; }

/* ══════════════════════════════════════════
   WAS WIR TUN — Große Editorial-Typografie
══════════════════════════════════════════ */
.intro-meta {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-200);
}
.intro-meta .label { margin-bottom: 0; }
.intro-rule { flex: 1; height: 1px; background: var(--grey-200); }

/* Riesiger Titel – dominierend, dünn, editorial */
.intro-headline-xl {
  margin-bottom: 80px;
}
.intro-headline-xl h2 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--blue);
  max-width: 820px;
}

/* Konkret-Satz — zwischen Headline und Fließtext */
.intro-clarifier {
  font-size: 0.97rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.82;
  letter-spacing: 0.01em;
}

/* Zweispaltig: Text + Zitat */
.intro-body-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-top: 48px;
}
.intro-body-split p {
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 20px;
}
.intro-pullquote {
  border-left: 2px solid var(--blue);
  padding: 20px 28px;
  background: transparent;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.intro-pullquote p {
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--blue);
  letter-spacing: 0.01em;
  margin: 0;
}

/* ══════════════════════════════════════════
   STATEMENT-BAND — Kommunikation
   Blau, sehr große dünne Schrift, kein Pink
══════════════════════════════════════════ */
.statement-band {
  background: var(--blue);
  padding: 88px 0;
  overflow: hidden;
}
.statement-band-header {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.statement-band-header .label {
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}
.statement-list { display: flex; flex-direction: column; }
.statement-item {
  display: flex;
  align-items: baseline;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.statement-item:first-child { border-top: none; }
.statement-num {
  font-family: var(--font);
  font-size: 10px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  min-width: 36px; line-height: 1;
  flex-shrink: 0;
}
.statement-text {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

/* ── Zielgruppen ── */
.audience-item {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--grey-200);
}
.audience-item:first-child { border-top: 1px solid var(--grey-200); }
.audience-num {
  font-family: var(--font);
  font-size: 1.6rem; font-weight: 400;
  color: var(--blue); min-width: 52px; padding-top: 2px;
  opacity: 0.55;
}
.audience-item h3 { font-size: 1.02rem; margin-bottom: 6px; color: var(--text); font-weight: 500; }
.audience-item p { font-size: 0.95rem; margin: 0; line-height: 1.82; }

/* ── Service Cards ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 36px 30px;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30, 94, 219, 0.08);
}
.service-card-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
}
/* Badge: kein Pink mehr */
.service-card-badge {
  display: inline-block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px;
  background: var(--blue);     /* war pink */
  color: var(--white);
  margin-bottom: 14px;
  border-radius: var(--radius-pill);
}
.service-card h3 { margin-bottom: 10px; font-size: 1.05rem; color: var(--text); font-weight: 500; }
.service-card p { font-size: 0.95rem; line-height: 1.84; }
.service-card-link {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue);
  transition: gap var(--transition), color var(--transition);
}
.service-card-link:hover { gap: 10px; color: var(--blue-dark); }

/* ── Netzwerk (Wie wir arbeiten) ── */
.network-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.network-statement {
  font-family: var(--font);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.network-statement em {
  font-style: italic;
  color: rgba(255,255,255,0.75); /* kein Pink */
}
.network-pillars { display: flex; flex-direction: column; gap: 20px; }
.network-pillar {
  border-left: 1px solid rgba(255,255,255,0.22);
  padding: 18px 22px;
  background: rgba(255,255,255,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: background var(--transition);
}
.network-pillar:hover { background: rgba(255,255,255,0.11); }
.network-pillar h4 {
  color: var(--white); font-size: 0.93rem;
  font-weight: 500; margin-bottom: 6px;
}
.network-pillar p { font-size: 0.95rem; font-weight: 400; color: rgba(255,255,255,0.93); line-height: 1.80; }

/* ── Prozess ── */
.process-step {
  text-align: center; padding: 36px 24px;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(30,94,219,0.09);
}
.process-num {
  font-family: var(--font);
  font-size: 2.8rem; font-weight: 300;
  color: rgba(30,94,219,0.22); line-height: 1;
  margin-bottom: 16px; display: block;
  letter-spacing: -0.03em;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 500; }
.process-step p { font-size: 0.95rem; line-height: 1.82; }

/* ── CTA Banner — Orange ── */
.cta-banner {
  background: var(--orange);
  padding: 88px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255,255,255,0.90);
  max-width: 520px; margin: 0 auto 44px;
  font-size: 1.05rem; font-weight: 400;
}

/* ── Offer Cards ── */
.pricing-tier { margin-bottom: 72px; }
.pricing-tier-header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.tier-badge {
  font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 18px; background: var(--blue); color: var(--white);
  white-space: nowrap; border-radius: var(--radius-pill);
}
.tier-badge--outline {
  background: transparent; border: 1px solid var(--grey-400); color: var(--text);
}
.tier-badge--premium { background: var(--text); }
.tier-line { flex: 1; height: 1px; background: var(--grey-200); }
.offer-card {
  background: var(--white); border: 1px solid var(--grey-200); padding: 40px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start;
  transition: var(--transition); border-radius: var(--radius);
}
.offer-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(30,94,219,0.07); }
.offer-card + .offer-card { margin-top: 16px; }
.offer-card h3 { margin-bottom: 10px; color: var(--text); font-weight: 500; }
.offer-card p { font-size: 0.97rem; line-height: 1.86; margin-bottom: 16px; }
.offer-tag {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  padding: 3px 14px; margin-bottom: 16px; border-radius: var(--radius-pill);
}
.offer-result {
  font-size: 0.93rem; color: var(--text);
  border-left: 2px solid var(--blue); padding-left: 14px; line-height: 1.78;
}
.offer-result strong { color: var(--text); font-weight: 500; }
.offer-price-box { text-align: right; min-width: 160px; }
.offer-price {
  font-family: var(--font);
  font-size: 1.1rem; font-weight: 300;
  color: var(--blue); display: block; line-height: 1.1;
}
.offer-price-note { font-size: 12px; color: var(--grey-600); display: block; margin-top: 4px; }
.offer-cta-small {
  margin-top: 20px; font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer; border: none; background: none; padding: 0;
}
.offer-cta-small:hover { text-decoration: underline; }
.pricing-note {
  background: var(--off-white); border-left: 2px solid var(--blue);
  padding: 20px 28px; margin-top: 48px; font-size: 0.93rem;
  color: var(--text-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── Referenzen ── */
.ref-card {
  background: var(--white); border: 1px solid var(--grey-200);
  padding: 36px 32px; border-top: 2px solid var(--blue);
  border-radius: var(--radius);
}
.ref-card blockquote {
  font-family: var(--font); font-size: 1.05rem; font-weight: 400;
  line-height: 1.82; color: var(--text); margin-bottom: 20px;
}
.ref-card cite { font-size: 0.9rem; color: var(--text-muted); font-style: normal; }
.ref-card cite strong { color: var(--text); font-weight: 500; }

/* ── Publikationen ── */
.pub-card {
  background: var(--white); border: 1px solid var(--grey-200);
  padding: 32px; transition: var(--transition); border-radius: var(--radius);
}
.pub-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(30,94,219,0.07); }
.pub-type {
  font-size: 10px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue);
  display: block; margin-bottom: 12px;
}
.pub-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 500; }
.pub-card p { font-size: 0.95rem; line-height: 1.82; }
.pub-placeholder { margin-top: 16px; font-size: 12px; color: var(--grey-400); font-style: italic; }
.pub-download {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue);
}
.pub-download:hover { text-decoration: underline; }

/* ── Open Source ── */
.os-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 64px; }
.module-card {
  border: 1px solid var(--grey-200); background: var(--white);
  display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.module-card:hover { box-shadow: 0 12px 40px rgba(30,94,219,0.1); transform: translateY(-3px); }
.module-card-top { background: var(--blue); padding: 28px 28px 20px; }
.module-card-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); display: block; margin-bottom: 10px;
}
.module-card-top h3 { color: var(--white); font-size: 1.1rem; font-weight: 300; }
.module-card-body { padding: 24px 28px 16px; flex: 1; }
.module-card-body p { font-size: 0.95rem; line-height: 1.82; }
.module-card-footer {
  padding: 16px 28px 28px; display: flex; gap: 12px;
  flex-wrap: wrap; border-top: 1px solid var(--grey-200);
}
.module-btn {
  display: inline-block; padding: 10px 22px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.5px;
  cursor: pointer; transition: var(--transition); border: none;
  border-radius: var(--radius-pill);
}
.module-btn-primary { background: var(--blue); color: var(--white); }
.module-btn-primary:hover { background: var(--blue-dark); }
.module-btn-outline { background: transparent; border: 1px solid var(--grey-200); color: var(--text); }
.module-btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.merkblatt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.merkblatt-card {
  background: var(--white); padding: 32px 28px;
  border: 1px solid var(--grey-200); border-top: 2px solid var(--blue);
  border-radius: var(--radius); transition: box-shadow var(--transition);
}
.merkblatt-card:hover { box-shadow: 0 4px 20px rgba(30,94,219,0.07); }
.merkblatt-card h4 { font-size: 0.98rem; margin-bottom: 10px; color: var(--text); font-weight: 500; }
.merkblatt-card p { font-size: 0.93rem; line-height: 1.82; margin-bottom: 24px; }
.merkblatt-dl {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--text); border-bottom: 1px solid var(--grey-200);
  padding-bottom: 2px; transition: color var(--transition), border-color var(--transition);
}
.merkblatt-dl:hover { color: var(--blue); border-color: var(--blue); }
.cc-badge { display: flex; align-items: center; gap: 12px; margin-top: 24px; font-size: 0.88rem; }

/* ── Kontakt ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-method-icon {
  width: 40px; height: 40px; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: var(--radius-sm);
}
.contact-method-text { font-size: 0.97rem; line-height: 1.75; }
.contact-method-text strong {
  display: block; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--grey-200); background: var(--white);
  font-family: var(--font); font-size: 14px; font-weight: 400;
  color: var(--text); transition: border-color var(--transition);
  outline: none; border-radius: var(--radius-sm);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-privacy { font-size: 12px; color: var(--text-muted); line-height: 1.72; margin-top: 12px; }
.form-privacy a { color: var(--blue); }

/* ── Über uns ── */
.about-role {
  display: block; font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue); margin: 8px 0 24px;
}
.expertise-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.expertise-tag {
  font-size: 12px; font-weight: 400; padding: 6px 18px;
  background: var(--off-white); border: 1px solid var(--grey-200);
  color: var(--text-light); border-radius: var(--radius-pill);
  transition: border-color var(--transition), color var(--transition);
}
.expertise-tag:hover { border-color: var(--blue); color: var(--blue); }

/* ── Trust Strip ── */
.trust-strip { display: flex; gap: 48px; margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--grey-200); }
.trust-number {
  font-family: var(--font); font-size: 2.4rem; font-weight: 300;
  color: var(--blue); display: block; line-height: 1; margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.trust-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; }

/* ── Section Headers ── */
.section-header { max-width: 640px; margin-bottom: 64px; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.02rem; line-height: 1.85; font-weight: 400; color: var(--text); }

/* ── Footer ── */
footer { background: var(--charcoal); color: rgba(255,255,255,0.5); padding: 64px 0 0; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p {
  font-size: 0.90rem; font-weight: 400; line-height: 1.82;
  color: rgba(255,255,255,0.70); margin-top: 12px; max-width: 280px;
}
.footer-col h4 {
  font-size: 10px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem; font-weight: 400;
  color: rgba(255,255,255,0.70); transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 11px; color: rgba(255,255,255,0.25);
  font-weight: 300;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.25); transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* ── Modal ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 2000;
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); max-width: 640px; width: 100%;
  max-height: 80vh; overflow-y: auto; padding: 48px;
  position: relative; border-radius: var(--radius-lg);
}
.modal-box h2 { margin-bottom: 8px; }
.modal-box h3 { font-size: 1.05rem; margin: 24px 0 8px; font-weight: 400; }
.modal-box p { font-size: 0.93rem; line-height: 1.75; }
.modal-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 24px; background: none; border: none;
  cursor: pointer; color: var(--grey-400); line-height: 1;
}
.modal-close:hover { color: var(--text); }

/* ══════════════════════════════════════════
   SCROLL-REVEAL — sanft, editorial, unaufdringlich
══════════════════════════════════════════ */
.sr {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 1.1s var(--ease),
    transform 1.1s var(--ease);
}
.sr.visible { opacity: 1; transform: translateY(0); }
.sr-d1 { transition-delay: 0.08s; }
.sr-d2 { transition-delay: 0.20s; }
.sr-d3 { transition-delay: 0.32s; }
.sr-d4 { transition-delay: 0.44s; }
.sr-d5 { transition-delay: 0.58s; }
.fade-in {
  opacity: 0; transform: translateY(18px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .network-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-body-split { grid-template-columns: 1fr; gap: 40px; }
  .intro-headline-xl h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
}
@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 20px; }
  .offer-card { grid-template-columns: 1fr; }
  .offer-price-box { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .img-strip { height: 240px; }
  .img-strip--short { height: 180px; }
  .img-strip--tall { height: 320px; }
  .img-frame--portrait { height: 240px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .trust-strip { gap: 32px; flex-wrap: wrap; }
  .hero-content { padding: 60px 0 80px; }
  .modal-box { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .os-grid { grid-template-columns: 1fr; }
  .merkblatt-grid { grid-template-columns: 1fr 1fr; }
  .hero-arrow--prev { left: 16px; }
  .hero-arrow--next { right: 16px; }
  .hero-scroll { display: none; }
  .statement-item { gap: 24px; }
  .statement-text { font-size: 1.5rem; }
  .intro-headline-xl { margin-bottom: 48px; }
}
@media (max-width: 560px) {
  .merkblatt-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.4rem; }
  .statement-text { font-size: 1.3rem; }
  .intro-headline-xl h2 { font-size: 2.2rem; }
}

.nav-links.open {
  display: flex !important; flex-direction: column;
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--off-white); padding: 24px 40px; gap: 20px;
  border-bottom: 1px solid var(--grey-200);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05); z-index: 999;
}

/* ── Workshop-Themen (Leistungen-Seite) ── */
.workshop-topics { margin-bottom: 72px; }
.workshop-topics-intro {
  max-width: 600px; margin-bottom: 32px;
  padding-bottom: 24px; border-bottom: 1px solid var(--grey-200);
}
.workshop-topics-intro .label { margin-bottom: 10px; }
.workshop-topics-intro p { font-size: 0.93rem; color: var(--text-light); line-height: 1.75; }
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.topic-card {
  background: var(--off-white); border: 1px solid var(--grey-200);
  padding: 28px 30px; transition: var(--transition); border-radius: var(--radius);
}
.topic-card:hover { border-color: var(--blue); }
.topic-card h4 { font-size: 1.02rem; font-weight: 400; color: var(--text); margin-bottom: 14px; }
.topic-card ul { list-style: none; margin-bottom: 16px; }
.topic-card ul li {
  font-size: 0.88rem; color: var(--text-light);
  padding: 4px 0 4px 18px; position: relative; line-height: 1.55;
}
.topic-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: 0.8rem; }
