:root {
  --font-heading: "Quicksand", "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  --font-body: "Nunito Sans", "Inter", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --primary: #75B894;
  --primary-2: #378159;
  --primary-3: #2F6F55;
  --soft-mint: #DFF2E8;
  --paper: #F6FBF8;
  --muted: #ECF7F1;
  --line: #CDE6D9;
  --accent: #F1ABC7;
  --text: #2F6F55;
  --text-strong: #378159;
  --soft: #5F846F;
  --white: #FFFFFF;
  --shadow: 0 22px 70px rgba(55, 129, 89, .16);
  --shadow-soft: 0 12px 36px rgba(55, 129, 89, .10);
  --radius: 24px;
  --max: 1180px;
  --header-height: 84px;
  --header-height-mobile: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: hidden;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(117,184,148,.18), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(241,171,199,.12), transparent 28%),
    radial-gradient(circle at 76% 82%, rgba(117,184,148,.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 40%, #ffffff 100%);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 999;
  background: var(--primary-3); color: var(--white); padding: 10px 14px; border-radius: 12px;
}
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(205,230,217,.85);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(55,129,89,.12); background: rgba(255,255,255,.97); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.brand img { width: 240px; height: auto; max-height: 62px; }
.site-nav { display: flex; align-items: center; gap: 26px; font-family: var(--font-heading); font-weight: 500; font-size: 15px; color: var(--primary-3); letter-spacing: -.01em; }
.site-nav a { opacity: .92; transition: opacity .2s ease, color .2s ease, background .2s ease; }
.site-nav a:hover { opacity: 1; color: var(--primary-2); }
.nav-cta { padding: 11px 18px; border: 1px solid var(--primary); border-radius: 999px; background: var(--soft-mint); }
.nav-cta:hover { background: var(--primary); color: var(--white) !important; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--primary-3); margin: 5px 0; border-radius: 2px; }

.hero { position: relative; overflow: hidden; padding: 96px 0 74px; }
.hero::before {
  content: ""; position: absolute; inset: -360px -260px auto auto; width: 740px; height: 740px;
  background: radial-gradient(circle, rgba(117,184,148,.24), transparent 62%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--primary-2); text-transform: uppercase; letter-spacing: .16em; font-family: var(--font-heading); font-weight: 700; font-size: 12px; }
.eyebrow.amber { color: var(--primary-2); }
h1, h2, h3 { margin: 0; line-height: 1.05; color: var(--text-strong); letter-spacing: -.035em; font-family: var(--font-heading); font-weight: 700; }
h1 { font-size: clamp(34px, 4.8vw, 58px); max-width: 620px; }
.hero h1 { font-size: clamp(34px, 4.8vw, 58px); max-width: 620px; line-height: 1.08; }
h2 { font-size: clamp(34px, 4.4vw, 58px); }
h3 { font-size: 22px; letter-spacing: -.025em; }
.hero-lead { margin: 20px 0 0; max-width: 620px; font-size: clamp(18px, 1.65vw, 22px); color: var(--soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; padding: 14px 22px; font-family: var(--font-heading); font-weight: 500; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; cursor: pointer; letter-spacing: -.01em; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--primary-3); color: var(--white); box-shadow: 0 16px 32px rgba(55,129,89,.18); }
.button-primary:hover { background: var(--primary-2); }
.button-secondary { border-color: var(--primary); background: var(--white); color: var(--primary-3); }
.button-secondary:hover { background: var(--soft-mint); }
.button-light { background: var(--white); color: var(--primary-3); border-color: var(--line); margin-top: 28px; }
.button-ghost { background: transparent; border-color: var(--line); color: var(--primary-3); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-proof span, .badges span, .team-principles span { padding: 9px 12px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); color: var(--primary-3); font-family: var(--font-heading); font-weight: 500; font-size: 14px; }
.hero-visual { position: relative; }
.hero-visual > img { border-radius: 34px; box-shadow: var(--shadow); background: var(--white); }
.metric-card { position: absolute; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 20px; padding: 16px 18px; box-shadow: var(--shadow-soft); max-width: 260px; }
.metric-card strong { display: block; color: var(--primary-2); font-size: 26px; line-height: 1.05; }
.metric-card span { display: block; margin-top: 5px; color: var(--soft); font-weight: 650; }
.metric-top { top: 28px; right: -18px; }
.metric-bottom { bottom: 32px; left: -18px; }

.intro-panel { position: relative; padding: 28px 0 0; background: rgba(255,255,255,.54); }
.panel-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: center; padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.panel-grid p:last-child { margin: 0; font-size: 20px; color: var(--soft); }

.section { position: relative; padding: 96px 0; }
.section-head { max-width: 860px; margin-bottom: 40px; }
.section-head.narrow { max-width: 720px; }
.section-head p:not(.eyebrow) { color: var(--soft); font-size: 19px; }
.cards { display: grid; gap: 20px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 54px rgba(55,129,89,.15); }
.card p { margin: 14px 0 0; color: var(--soft); }
.icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: var(--soft-mint); color: var(--primary-3); font-weight: 900; margin-bottom: 22px; }

.section-dark { background: linear-gradient(135deg, var(--soft-mint), #ffffff 72%); color: var(--text); position: relative; overflow: hidden; border-block: 1px solid var(--line); }
.section-dark::before { content: ""; position: absolute; left: 54px; top: 54px; width: 180px; height: 180px; border-radius: 50%; background: rgba(117,184,148,.10); border: 1px solid rgba(117,184,148,.18); }
.section-dark::after { content: ""; position: absolute; right: 52px; bottom: 34px; width: 260px; height: 260px; border-radius: 50%; background: rgba(241,171,199,.16); border: 1px solid rgba(241,171,199,.22); }
.section-dark .container { position: relative; z-index: 1; }
.section-dark h2, .section-dark h3 { color: var(--primary-2); }
.split-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 54px; align-items: center; position: relative; z-index: 1; }
.large-text { font-size: 22px; color: var(--soft); margin-top: 22px; }
.score-box { background: rgba(255,255,255,.86); border: 1px solid var(--line); border-radius: 30px; padding: 30px; box-shadow: var(--shadow-soft); }
.score-row { display: flex; justify-content: space-between; gap: 20px; margin: 22px 0 8px; color: var(--primary-3); font-weight: 720; }
.score-row strong { color: var(--primary-2); }
.bar { height: 9px; border-radius: 999px; background: var(--muted); overflow: hidden; }
.bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: inherit; }

.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.usecase { display: grid; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 22px; }
.usecase strong { color: var(--primary-2); font-size: 18px; }
.usecase span { color: var(--soft); }

.muted { background: linear-gradient(180deg, rgba(236,247,241,.88), rgba(255,255,255,.90)); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline article { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: relative; box-shadow: var(--shadow-soft); }
.timeline span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: var(--white); font-weight: 900; margin-bottom: 24px; }
.timeline p { color: var(--soft); }

.profile-grid { display: grid; grid-template-columns: 360px 1fr; gap: 58px; align-items: center; }
.profile-card { background: linear-gradient(160deg, var(--soft-mint), #ffffff); color: var(--primary-3); padding: 32px; border-radius: 32px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.profile-card h2 { color: var(--primary-2); font-size: 34px; margin-top: 24px; }
.profile-sub { color: var(--soft); font-weight: 650; }
.profile-photo-card { margin: 0; border-radius: 28px; overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.profile-photo { width: 100%; aspect-ratio: 323 / 377; height: auto; object-fit: cover; object-position: center; }
.profile-grid p { color: var(--soft); font-size: 18px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.team-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: start; }
.team-copy p:not(.eyebrow) { color: var(--soft); font-size: 18px; }
.team-principles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.team-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft); }
.expert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.expert-grid article { border: 1px solid var(--line); border-radius: 18px; padding: 18px; background: var(--paper); }
.expert-grid strong { display: block; color: var(--primary-2); font-size: 17px; margin-bottom: 8px; }
.expert-grid span { display: block; color: var(--soft); font-size: 15px; line-height: 1.45; }

.insights { background: rgba(255,255,255,.90); }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insight-grid article { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-soft); }
.insight-grid p:not(.tag) { color: var(--soft); }
.tag { display: inline-block; margin: 0 0 14px; padding: 7px 10px; border-radius: 999px; background: var(--soft-mint); color: var(--primary-3); font-size: 12px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }

.cta-section { padding: 96px 0; background: linear-gradient(135deg, var(--primary), #ffffff); color: var(--text); border-top: 1px solid var(--line); }
.cta-section h2 { color: var(--primary-3); }
.cta-section p:not(.eyebrow) { color: var(--primary-3); font-size: 19px; }
.cta-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.contact-form { background: rgba(255,255,255,.92); color: var(--primary-3); padding: 28px; border-radius: 28px; display: grid; gap: 16px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 8px; font-weight: 760; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--text); background: var(--white); }
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(117,184,148,.32); border-color: var(--primary); }
.form-note { margin: 0; color: var(--soft); font-size: 14px !important; }
.form-note a { color: var(--primary-2); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.site-footer { padding: 46px 0 26px; background: rgba(236,247,241,.94); color: var(--primary-3); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .7fr; gap: 44px; }
.footer-logo { width: 250px; height: auto; margin-bottom: 14px; }
.site-footer strong { display: block; margin-bottom: 12px; color: var(--primary-2); }
.site-footer a, .site-footer span { display: block; color: var(--soft); margin: 8px 0; }
.site-footer a:hover { color: var(--primary-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); padding-top: 22px; margin-top: 30px; font-size: 14px; }

.legal-page .section { padding-top: 72px; }
.legal-layout { display: grid; gap: 28px; }
.legal-lead { color: var(--soft); font-size: 20px; max-width: 900px; }
.legal-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 42px); box-shadow: var(--shadow-soft); }
.legal-card h2 { font-size: 26px; margin-top: 30px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { color: var(--soft); }
.legal-card a { color: var(--primary-2); font-weight: 750; }
.legal-note { padding: 16px 18px; background: var(--soft-mint); border: 1px solid var(--line); border-radius: 16px; }
.cookie-table { display: grid; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.cookie-table > div { display: grid; grid-template-columns: .7fr .55fr 1.8fr; }
.cookie-table > div > * { padding: 12px 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cookie-table > div > *:last-child { border-right: 0; }
.cookie-table > div:last-child > * { border-bottom: 0; }
.cookie-table > div:first-child > * { background: var(--primary); color: var(--white); }

.cookie-consent[hidden] { display: none; }
.cookie-backdrop { position: fixed; inset: 0; background: rgba(255,255,255,.54); backdrop-filter: blur(6px); z-index: 80; }
.cookie-dialog { position: fixed; z-index: 90; left: 50%; bottom: 22px; transform: translateX(-50%); width: min(760px, calc(100% - 32px)); background: var(--white); border: 1px solid var(--line); border-radius: 28px; padding: 28px; box-shadow: 0 30px 90px rgba(55,129,89,.24); }
.cookie-dialog h2 { font-size: 32px; }
.cookie-dialog p { color: var(--soft); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.cookie-links { display: flex; gap: 18px; margin-top: 18px; color: var(--primary-2); font-weight: 720; }
.cookie-option { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cookie-option strong { color: var(--primary-2); display: block; font-size: 18px; }
.switch input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.switch span { display: block; width: 52px; height: 30px; border-radius: 999px; background: var(--line); position: relative; }
.switch span::after { content: ""; position: absolute; width: 24px; height: 24px; border-radius: 50%; left: 3px; top: 3px; background: var(--white); box-shadow: 0 2px 8px rgba(55,129,89,.24); transition: transform .2s ease; }
.switch input:checked + span { background: var(--primary); }
.switch input:checked + span::after { transform: translateX(22px); }
body.cookie-open { overflow: hidden; }

@media (max-width: 980px) {
  .hero-grid, .panel-grid, .split-grid, .profile-grid, .team-grid, .cta-grid { grid-template-columns: 1fr; }
  .cards-3, .usecase-grid, .timeline, .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-grid { gap: 32px; }
  .profile-card { max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-nav { gap: 16px; font-size: 14px; }
}

@media (max-width: 780px) {
  body { padding-top: var(--header-height-mobile); }
  .container { width: min(100% - 28px, var(--max)); }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 205px; max-height: 56px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 14px; right: 14px; top: calc(var(--header-height-mobile) + 4px); display: none; flex-direction: column; align-items: stretch; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.98); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
  .site-nav.is-open { display: flex; }
  .nav-cta { text-align: center; }
  .hero { padding: 64px 0 46px; }
  h1 { font-size: clamp(42px, 14vw, 64px); }
  .hero h1 { font-size: clamp(34px, 4.8vw, 58px); max-width: 620px; line-height: 1.08; }
  .section { padding: 68px 0; }
  .cards-3, .usecase-grid, .timeline, .insight-grid, .expert-grid, .footer-grid { grid-template-columns: 1fr; }
  .metric-card { position: static; margin-top: 12px; max-width: none; }
  .hero-visual > img { border-radius: 24px; }
  .panel-grid, .score-box, .team-panel, .contact-form, .legal-card, .cookie-dialog { padding: 22px; border-radius: 22px; }
  .footer-bottom { flex-direction: column; }
  .cookie-table > div { grid-template-columns: 1fr; }
  .cookie-table > div > * { border-right: 0; }
  .section-dark::before { left: 24px; top: 24px; width: 110px; height: 110px; }
  .section-dark::after { right: 18px; bottom: 18px; width: 150px; height: 150px; }
}


.privacy-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text);
}

.privacy-consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  accent-color: var(--green-deep);
}

.privacy-consent span {
  display: block;
}



.container { position: relative; z-index: 1; }

/* Netzwerk-Hintergrund: sichtbar, aber hinter allen Inhalten.
   Die Punkte und Linien liegen auf z-index 0, Inhalte auf z-index 1/2. */


.network-background {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

main,
.site-footer,
.cookie-consent {
  position: relative;
}

main,
.site-footer,
.cookie-consent {
  z-index: 1;
}


.language-switch { display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto; }
.language-link { display: inline-flex; align-items: center; justify-content: center; gap: 5px; min-width: 48px; padding: 7px 8px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.72); color: var(--primary-3); font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: .02em; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.language-link:hover { background: var(--soft-mint); border-color: var(--primary); transform: translateY(-1px); }
.language-link.is-active { background: var(--soft-mint); border-color: var(--primary); }
.language-link img { width: 20px; height: 14px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(55,129,89,.14); }
@media (max-width: 980px) { .language-link span { display: none; } .language-link { min-width: auto; padding: 7px; } .language-link img { width: 22px; height: 15px; } }


/* ENFAN-WEB-v1.11.3: fixed header.
   The header is fixed to the viewport and remains visible while scrolling. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

section, [id] { scroll-margin-top: calc(var(--header-height) + 18px); }


/* ENFAN-WEB-v1.11.4: Edge-safe fixed header enforcement.
   Uses !important and a high z-index so Microsoft Edge keeps the header pinned above all layers. */
html {
  min-height: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  min-height: 100%;
}

body.has-fixed-header {
  padding-top: var(--runtime-header-height, var(--header-height)) !important;
}

header.site-header,
.site-header[data-header] {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 2147483000 !important;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
  contain: layout paint;
}

.site-header .nav-wrap {
  min-height: var(--header-height);
}

.network-background {
  z-index: 0 !important;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 780px) {
  html { scroll-padding-top: var(--header-height-mobile); }
  body.has-fixed-header { padding-top: var(--runtime-header-height, var(--header-height-mobile)) !important; }
  .site-header .nav-wrap { min-height: var(--header-height-mobile); }
}
/* END ENFAN-WEB-v1.11.4 */
