/* ============================================================
   Cosmo Living – Designsystem (eigenständig, aus dem Brand Guide)
   Dark-First: Tiefblau-Flächen, Glas-Karten, Aqua/Lila-Akzente,
   Signatur-Verlauf #00C2DE → #7051C9
   Typo: Poppins (Headlines) + Manrope (Fließtext)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand-Guide-Palette */
  --bg:        #041625;   /* Seitenfond dunkel */
  --bg-2:      #072238;   /* Panels dunkel */
  --tiefblau:  #003050;
  --aqua:      #00A8C5;
  --cyan:      #00C2DE;
  --blau:      #2F6BE0;
  --lila:      #7051C9;
  --nebel:     #EDF3F6;
  --grad:       linear-gradient(115deg, #00789A 0%, #6A4BC4 100%); /* Flächen/Buttons – weißer Text AA-sicher */
  --grad-vivid: linear-gradient(115deg, #00C2DE 0%, #7051C9 100%);  /* nur Text-Clip & Deko */

  /* Text */
  --ink:       #003050;   /* auf hell */
  --ink-soft:  #3E5D72;
  --ink-faint: #7E96A6;
  --lite:      #C6D8E2;   /* auf dunkel */
  --lite-dim:  #7E97A8;

  /* Aliase für Inline-Styles der Unterseiten */
  --brand:      var(--aqua);
  --brand-dark: #0E5E74;
  --brand-deep: var(--tiefblau);
  --brand-tint: var(--nebel);
  --line:       #DCE7EE;
  --stroke:     rgba(255,255,255,.10);
  --glass:      rgba(255,255,255,.045);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --r: 18px;
  --r-lg: 26px;
  --t: .3s cubic-bezier(.4,0,.2,1);

  --font-display: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: var(--font-display);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1,h2,h3,h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.12; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.5rem, 6.4vw, 4.4rem); line-height: 1.04; letter-spacing: -.03em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.14rem; font-weight: 700; }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.16rem); line-height: 1.75; }

/* Verlaufs-Text (Signatur-Moment) */
.grad-text { background: var(--grad-vivid); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.aqua-text { color: #0E5E74; }
.hero .aqua-text, .section--dark .aqua-text { color: var(--cyan); }

/* Guide-Label: cyan Strich + Uppercase (auch als .eyebrow auf Unterseiten) */
.glabel, span.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: .74rem;
  letter-spacing: .22em; text-transform: uppercase; color: #0E5E74; /* Petrol: AA auf hell */
}
.hero .glabel, .section--dark .glabel, .page-hero .glabel, .page-hero span.eyebrow, .grad-card .glabel { color: var(--cyan); }
.glabel::before, span.eyebrow::before { content: ""; width: 30px; height: 2.5px; background: var(--cyan); border-radius: 2px; }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(64px, 9vw, 120px); background: #fff; }
.section--nebel { background: var(--nebel); }
.section--dark { background: var(--bg); color: var(--lite); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .lead { color: var(--lite); }
.section-head { max-width: 700px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .glabel { justify-content: center; }
.section-head h2 { margin: 16px 0 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  padding: 15px 28px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 26px -10px rgba(112,81,201,.65); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(0,194,222,.55); }
.btn--ghost-dark { border-color: rgba(255,255,255,.28); color: #fff; }
.btn--ghost-dark:hover { border-color: var(--cyan); color: var(--cyan); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--aqua); color: var(--brand-dark); }
.btn--light { background: #fff; color: var(--tiefblau); }
.btn--light:hover { transform: translateY(-2px); }
.btn--outline-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--outline-light:hover { border-color: #fff; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(4,22,37,.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background var(--t), box-shadow var(--t);
}
.header.scrolled { background: rgba(4,22,37,.94); box-shadow: 0 10px 30px -18px rgba(0,0,0,.6); }
.nav { display: flex; align-items: center; gap: 28px; min-height: 74px; }
.nav__logo img { height: 34px; width: auto; }
.nav__links { display: flex; gap: 6px; margin-left: auto; }
.nav__links a {
  padding: 9px 15px; border-radius: 999px; font-weight: 600; font-size: .93rem; color: var(--lite);
  transition: color var(--t), background var(--t);
}
.nav__links a:hover, .nav__links a.active { color: #fff; background: rgba(255,255,255,.08); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__cta .btn { padding: 11px 22px; font-size: .88rem; }
.nav__toggle { display: none; background: none; border: 0; color: #fff; width: 42px; height: 42px; }
.nav__toggle svg { width: 26px; height: 26px; }

.mobile-menu {
  display: none; position: fixed; inset: 74px 0 0 0; z-index: 55;
  background: var(--bg); padding: 28px var(--gutter); overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 17px 4px; font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem; color: #fff; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 26px; border: 0; }
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: grid; place-items: center; margin-left: auto; }
}

/* ---------- Hero (dunkel, typografisch – wie das Guide-Cover) ---------- */
.hero {
  position: relative; overflow: hidden; background: var(--bg); color: var(--lite);
  padding-block: clamp(72px, 11vw, 150px) clamp(56px, 8vw, 100px);
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.hero::before { width: 560px; height: 560px; right: -140px; top: -180px; background: radial-gradient(circle, rgba(112,81,201,.34), transparent 65%); }
.hero::after { width: 480px; height: 480px; left: -160px; bottom: -220px; background: radial-gradient(circle, rgba(0,194,222,.22), transparent 65%); }
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.hero__visual img { max-width: min(100%, 480px); margin-inline: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.45)); }
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; } .hero__visual { order: -1; } .hero__visual img { max-width: 300px; margin-inline: 0; } }
.hero h1 { color: #fff; max-width: 15ch; margin: 26px 0 24px; }
.hero__lead { max-width: 56ch; color: var(--lite); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Verlaufs-Linie + Attribute (Guide-Cover) */
.hero__rule { display: flex; align-items: center; gap: 20px; margin-top: clamp(40px, 6vw, 64px); flex-wrap: wrap; }
.hero__rule i { flex: 0 0 clamp(160px, 26vw, 340px); height: 3px; border-radius: 3px; background: var(--grad-vivid); }
.hero__rule span {
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--lite-dim);
}

/* Kennzahlen als Glas-Karten */
.hero__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; max-width: 760px; }
.hero__metrics > div {
  background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--r);
  padding: 20px 22px; backdrop-filter: blur(6px);
}
.hero__metrics strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.2rem, 2vw, 1.55rem); color: #fff; letter-spacing: -.01em; }
.hero__metrics span { font-size: .84rem; color: var(--lite-dim); }
@media (max-width: 700px) { .hero__metrics { grid-template-columns: 1fr; } }

/* ---------- Fakten-Leiste (statisch) ---------- */
.facts { background: var(--bg-2); border-block: 1px solid rgba(255,255,255,.07); }
.facts .container { display: flex; flex-wrap: wrap; }
.facts__item {
  flex: 1 1 220px; display: flex; align-items: center; gap: 12px;
  padding: 20px 22px; color: var(--lite); font-weight: 600; font-size: .93rem;
}
.facts__item + .facts__item { border-left: 1px solid rgba(255,255,255,.07); }
.facts__item svg { width: 20px; height: 20px; color: var(--cyan); flex: 0 0 auto; }
@media (max-width: 900px) { .facts__item + .facts__item { border-left: 0; } .facts__item { padding-block: 12px; } }

/* ---------- Leistungen: nummerierte Zeilen ---------- */
.lrows { border-top: 1.5px solid #CBDCE5; }
.lrow {
  display: grid; grid-template-columns: 110px 1fr 1.15fr; gap: clamp(18px, 3vw, 44px);
  align-items: start; padding: clamp(28px, 4vw, 44px) clamp(8px, 1.5vw, 20px);
  border-bottom: 1.5px solid #CBDCE5; transition: background var(--t);
}
.lrow:hover { background: #fff; }
.lrow__num {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1; color: transparent; -webkit-text-stroke: 1.6px #8FBACD; letter-spacing: -.02em;
}
.lrow h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 800; }
.lrow__gif { width: 58px; height: 58px; margin-bottom: 12px; mix-blend-mode: multiply; }
.lrow__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.lrow__tags span {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-dark); background: rgba(0,168,197,.12); border-radius: 999px; padding: 5px 12px;
}
@media (max-width: 800px) { .lrow { grid-template-columns: 1fr; gap: 10px; } .lrow__num { font-size: 2rem; } }

/* ---------- Glas-Karten (dunkle Sektionen, wie Guide-Cards) ---------- */
.gcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gcard {
  background: var(--nebel); border: 1px solid transparent; border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px); transition: border-color var(--t), transform var(--t);
}
.gcard:hover { border-color: var(--aqua); transform: translateY(-3px); }
.gcard .glabel { margin-bottom: 16px; }
.gcard h3 { margin-bottom: 10px; }
.gcard p { font-size: .96rem; }
@media (max-width: 880px) { .gcards { grid-template-columns: 1fr; } }

/* Verlaufs-Karte (Guide: Positionierung / Zitat) */
.grad-card {
  background: var(--grad); border-radius: var(--r-lg); color: #fff;
  padding: clamp(30px, 4.5vw, 52px); position: relative; overflow: hidden;
}
.grad-card h2, .grad-card h3 { color: #fff; }

/* Telefon-Zeile als Verlaufs-Karte */
.phone-usp { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(18px, 3vw, 34px); background: var(--grad); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 42px); color: #fff; }
.phone-usp h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.phone-usp p { color: rgba(255,255,255,.85); }
.phone-usp__ic { width: 62px; height: 62px; border-radius: 18px; background: rgba(255,255,255,.16); display: grid; place-items: center; }
.phone-usp__ic svg { width: 28px; height: 28px; }
.phone-usp__num { text-align: right; }
.phone-usp__num a { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); color: #fff; white-space: nowrap; }
.phone-usp__num small { display: block; color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 600; margin-top: 2px; }
@media (max-width: 760px) { .phone-usp { grid-template-columns: auto 1fr; } .phone-usp__num { grid-column: 1/-1; text-align: left; } }

/* ---------- Portal-Teaser ---------- */
.portal { position: relative; overflow: hidden; }
.portal::before {
  content: ""; position: absolute; width: 620px; height: 620px; right: -180px; top: 50%;
  transform: translateY(-50%); border-radius: 50%; filter: blur(100px);
  background: radial-gradient(circle, rgba(112,81,201,.16), transparent 65%); pointer-events: none;
}
.portal .container { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.portal__shot { position: relative; }

/* Stilisiertes Portal-Mockup (reines CSS, im Site-Branding) */
.pmock {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(0,48,80,.35);
  font-family: var(--font-sans);
}
.pmock__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--nebel); border-bottom: 1px solid var(--line); }
.pmock__bar i { width: 10px; height: 10px; border-radius: 50%; background: #CFDEE8; }
.pmock__bar i:nth-child(1) { background: #8FD8E8; }
.pmock__bar i:nth-child(3) { background: #B5A6E8; }
.pmock__bar span { margin-left: 8px; font-size: .72rem; font-weight: 700; color: var(--ink-faint); letter-spacing: .03em; }
.pmock__body { display: grid; grid-template-columns: 64px 1fr; min-height: 330px; }
.pmock__side { background: var(--tiefblau); padding: 16px 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.pmock__logo { width: 30px; height: 30px; border-radius: 9px; background: var(--grad); margin-bottom: 8px; }
.pmock__side i { width: 26px; height: 26px; border-radius: 8px; background: rgba(255,255,255,.12); }
.pmock__side i.on { background: rgba(0,194,222,.55); }
.pmock__main { padding: 20px 22px; }
.pmock__hello { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.pmock__hello strong { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 1.02rem; }
.pmock__hello span { font-size: .74rem; color: var(--ink-faint); }
.pmock__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.pmock__stats > div { background: var(--nebel); border-radius: 12px; padding: 12px 14px; }
.pmock__stats em {
  display: block; font-style: normal; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.pmock__stats span { font-size: .68rem; font-weight: 600; color: var(--ink-soft); }
.pmock__list { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.pmock__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 14px; }
.pmock__row + .pmock__row { border-top: 1px solid var(--line); }
.pmock__row strong { display: block; font-size: .8rem; color: var(--ink); font-weight: 700; }
.pmock__row span { font-size: .68rem; color: var(--ink-faint); }
.pmock__row b {
  flex: 0 0 auto; font-size: .64rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #fff; background: var(--grad); border-radius: 999px; padding: 4px 10px;
}
.pmock__row b.ok { background: var(--aqua); }
@media (max-width: 520px) { .pmock__stats { grid-template-columns: 1fr; } .pmock__body { grid-template-columns: 48px 1fr; } }
.portal__badge {
  position: absolute; top: -16px; left: -10px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: #fff; border-radius: 999px; padding: 9px 18px;
  font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 12px 30px -10px rgba(112,81,201,.7);
}
.portal__badge .dot2 { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 2.2s infinite; }
@media (max-width: 880px) { .portal .container { grid-template-columns: 1fr; } }

.checklist li { display: flex; gap: 12px; align-items: flex-start; padding-block: 9px; }
.checklist svg { width: 20px; height: 20px; color: var(--cyan); flex: 0 0 auto; margin-top: 4px; }
.section--dark .checklist li { color: var(--lite); }

/* ---------- Werte: Wortwand + Karten ---------- */
.wordwall {
  text-align: center; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 3.6vw, 2.7rem); line-height: 1.55; letter-spacing: -.015em;
  color: var(--ink); max-width: 900px; margin: 0 auto clamp(38px, 5vw, 60px);
}
.wordwall i { font-style: normal; color: var(--cyan); padding-inline: clamp(8px, 1.4vw, 18px); font-weight: 700; }
.wordwall span:nth-of-type(even) {
  background: var(--grad-vivid); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.vcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vcard {
  background: var(--nebel); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 32px);
  transition: transform var(--t), box-shadow var(--t);
}
.vcard:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(0,48,80,.4); }
.vcard__ic { width: 44px; height: 44px; border-radius: 13px; background: var(--grad); color: #fff; display: grid; place-items: center; margin-bottom: 18px; }
.vcard__ic svg { width: 21px; height: 21px; }
.vcard h3 { margin-bottom: 8px; }
.vcard p { font-size: .94rem; }
.vcard--grad { background: var(--grad); }
.vcard--grad h3, .vcard--grad p { color: #fff; }
.vcard--grad p { opacity: .92; }
.vcard--grad .vcard__ic { background: rgba(255,255,255,.2); }
@media (max-width: 880px) { .vcards { grid-template-columns: 1fr; } }

/* ---------- Zitat (Guide: „So klingen wir") ---------- */
.quote blockquote {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  line-height: 1.35; letter-spacing: -.01em; max-width: 28ch;
}
.quote cite { display: flex; align-items: center; gap: 14px; margin-top: 26px; font-style: normal; }
.quote cite img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.55); }
.quote cite strong { display: block; font-family: var(--font-display); }
.quote cite span { font-size: .86rem; opacity: .85; }

/* ---------- Statement (Über uns) ---------- */
.statement h2 { font-size: clamp(1.8rem, 3.8vw, 2.9rem); max-width: 22ch; margin: 16px auto 20px; }
.statement p { max-width: 64ch; margin-inline: auto; }

/* ---------- Karriere-Band ---------- */
.karriere-band { position: relative; overflow: hidden; }
.karriere-band::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-vivid); }

/* ---------- Verwaltungswechsel: Schritte ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { background: var(--nebel); border-radius: var(--r-lg); padding: clamp(22px, 2.6vw, 30px); position: relative; }
.step__num {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--tiefblau); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  margin-bottom: 16px;
}
.step:last-child .step__num { background: var(--grad); }
.step h3 { margin-bottom: 8px; }
.step p { font-size: .92rem; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Kontakt ---------- */
.ktiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ktile { border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 32px); background: #fff; }
.ktile__ic { width: 46px; height: 46px; border-radius: 14px; background: var(--grad); color: #fff; display: grid; place-items: center; margin-bottom: 18px; }
.ktile__ic svg { width: 22px; height: 22px; }
.ktile h3 { margin-bottom: 8px; }
.ktile p { font-size: .95rem; }
.ktile a { color: var(--brand-dark); font-weight: 700; }
@media (max-width: 880px) { .ktiles { grid-template-columns: 1fr; } }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--grad); border-radius: var(--r-lg); padding: clamp(40px, 6vw, 70px); text-align: center; color: #fff; }
.cta-band h2 { color: #fff; max-width: 24ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.88); margin: 16px auto 30px; max-width: 54ch; }
.cta-band .hero__cta { justify-content: center; margin-top: 0; }

/* ---------- Unterseiten ---------- */
.page-hero { background: var(--bg); color: var(--lite); padding-block: clamp(52px, 7vw, 88px); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; width: 460px; height: 460px; right: -120px; top: -160px;
  border-radius: 50%; filter: blur(90px); background: radial-gradient(circle, rgba(112,81,201,.3), transparent 65%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.2rem); margin-top: 18px; }
.page-hero .lead { color: var(--lite); max-width: 62ch; margin-top: 14px; }
.breadcrumb { font-size: .85rem; color: var(--lite-dim); }
.breadcrumb a { color: var(--cyan); }

/* Split (Angebotsseite) */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* ---------- Formular ---------- */
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3.4vw, 40px); box-shadow: 0 30px 70px -40px rgba(0,48,80,.35); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: end; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .86rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; font-size: .95rem; color: var(--ink); background: var(--nebel); outline: none;
  transition: border-color var(--t), background var(--t);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--aqua); background: #fff; }
.field textarea { min-height: 110px; resize: vertical; }

/* Honeypot – für Menschen unsichtbar, Bots füllen es aus */
.hp-field { position: absolute !important; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

/* Info-Popover (Verwaltungsarten erklärt) */
.info { position: relative; display: inline-flex; margin-left: 8px; vertical-align: -2px; }
.info__btn {
  width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center;
  background: var(--nebel); border: 1.5px solid var(--line); color: #0E5E74;
  font-size: .68rem; font-weight: 800; cursor: help; line-height: 1;
}
.info__pop {
  position: absolute; bottom: calc(100% + 12px); left: 50%; transform: translateX(-58%);
  width: min(360px, 82vw); background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; box-shadow: 0 24px 60px -24px rgba(0,48,80,.4);
  opacity: 0; visibility: hidden; transition: opacity var(--t), visibility var(--t);
  z-index: 10; text-align: left; font-family: var(--font-sans); font-weight: 500;
  font-size: .82rem; line-height: 1.55; color: var(--ink-soft); text-transform: none; letter-spacing: 0;
}
.info__pop p { margin-bottom: 9px; }
.info__pop p:last-child { margin-bottom: 0; }
.info__pop b { color: var(--ink); }
.info:hover .info__pop, .info:focus-within .info__pop { opacity: 1; visibility: visible; }

/* ---------- Footer ---------- */
.footer { background: #020e18; color: #93A9B8; padding-block: clamp(48px, 6vw, 72px) 30px; font-size: .93rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(26px, 4vw, 50px); }
.footer__logo { display: inline-block; margin-bottom: 18px; }
.footer__logo img { height: 40px; width: auto; }
.footer h5 {
  color: var(--cyan); font-family: var(--font-display); font-size: .74rem;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700;
}
.footer li { margin-bottom: 10px; }
.footer a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 42px; padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .84rem; color: #5F7889;
}
.footer__bottom a { margin-left: 18px; }
.footer__bottom a:hover { color: #fff; }
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Reveal & Animationen ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js [data-reveal].in { opacity: 1; transform: none; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.55); }
  70% { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.dot2 { display: inline-block; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}
