@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(notosans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(notosans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #0b1f4d;
  --navy-soft: #516286;
  --brand: #2f6bff;
  --brand-dark: #1747d1;
  --warm: #ec6a45;
  --warm-dark: #d5502c;
  --warm-tint: #fef0ea;
  --tint: #eef3ff;
  --tint-2: #dbe6ff;
  --bg: #fffdfa;
  --line: #dde5f5;
  --radius: 28px;
  --shadow: 0 20px 50px -20px rgba(11, 31, 77, .25);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: 'Noto Sans', system-ui, sans-serif;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, 100% - 40px); margin-inline: auto; }
.accent { color: var(--warm); }
h1, h2, .display { font-weight: 800; }
.underline { position: relative; white-space: nowrap; color: var(--warm-dark); }
.underline svg { position: absolute; left: 0; bottom: -.12em; width: 100%; height: .3em; color: var(--warm); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px -14px rgba(11, 31, 77, 0);
  transition: box-shadow 220ms var(--ease-out);
}
.nav.scrolled { box-shadow: 0 6px 24px -14px rgba(11, 31, 77, .25); }
@media (prefers-reduced-transparency: reduce) {
  .nav { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
}
@media (prefers-contrast: more) {
  .nav { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: 1.5px solid var(--navy); }
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { font-weight: 800; font-size: 1.35rem; letter-spacing: -.02em; display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; font-size: 1.05rem;
}
.logo b { color: var(--brand); font-weight: 800; }
.nav-links { display: flex; gap: 30px; font-weight: 600; font-size: .92rem; color: var(--navy-soft); }
.nav-links a:hover { color: var(--brand-dark); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; transition: transform 160ms var(--ease-out); }
.burger:active { transform: scale(.9); }
.burger span {
  display: block; width: 24px; height: 2.5px; background: var(--navy); margin: 5px 0; border-radius: 2px;
  transform-origin: center; transition: transform 200ms var(--ease-out), opacity 160ms var(--ease-out);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  .burger { display: block; }
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 20px 20px;
    display: flex; clip-path: inset(0 0 100% 0); opacity: 0; visibility: hidden;
    transition: clip-path 200ms var(--ease-out), opacity 160ms var(--ease-out), visibility 0s linear 200ms;
  }
  .nav-links.open {
    clip-path: inset(0 0 0 0); opacity: 1; visibility: visible;
    transition: clip-path 200ms var(--ease-out), opacity 160ms var(--ease-out), visibility 0s linear 0s;
  }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  font: 700 .95rem 'Noto Sans', sans-serif; cursor: pointer;
  transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms var(--ease-out), color 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); }
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--warm); color: #fff; box-shadow: 0 12px 28px -10px rgba(236, 106, 69, .75); }
.btn-primary:hover { background: var(--warm-dark); box-shadow: 0 16px 34px -10px rgba(213, 80, 44, .8); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.nav .btn { padding: 11px 22px; font-size: .86rem; }

/* ---------- Hero ---------- */
.hero { padding: 140px 0 90px; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--tint) 0%, #fff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .8rem;
  letter-spacing: .06em; color: var(--warm-dark);
  background: var(--warm-tint); border: 1.5px solid #fbd9cc; padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: 1.1; letter-spacing: -.02em; font-weight: 800; margin-bottom: 24px; }
.hero p.lead { font-size: 1.15rem; color: var(--navy-soft); max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.checks { list-style: none; display: grid; gap: 10px; font-weight: 600; font-size: .95rem; }
.checks li { display: flex; gap: 12px; align-items: center; }
.checks li::before {
  content: '✓'; flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand); color: #fff; font-size: .78rem; font-weight: 800;
}
.hero-visual { position: relative; }
.hero-visual::before {
  content: ''; position: absolute; inset: -18px -26px -22px 34px; z-index: 0;
  background: linear-gradient(150deg, var(--warm), var(--brand) 75%);
  border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%;
}
.illus {
  position: relative; z-index: 1; aspect-ratio: 4 / 4.4; border-radius: 40px 40px 40px 90px; box-shadow: var(--shadow);
  background: linear-gradient(160deg, #ffffff 0%, var(--tint) 60%, var(--tint-2) 100%);
  display: grid; place-items: center;
}
.illus svg { width: 88%; height: auto; }
.chip {
  position: absolute; z-index: 2; background: #fff; border-radius: 16px; padding: 10px 16px; font-weight: 700; font-size: .82rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px; animation: bob 5s var(--ease-in-out) infinite;
}
.chip::before { content: '✓'; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--brand); color: #fff; font-size: .68rem; }
.chip.c2::before, .chip.c3::before { background: var(--warm); }
.chip.c1 { top: 34px; right: -10px; }
.chip.c2 { top: 45%; left: -10px; animation-delay: -1.6s; }
.chip.c3 { bottom: 40px; right: 18px; animation-delay: -3.2s; }
@keyframes bob { 50% { transform: translateY(-8px) rotate(-1deg); } }
.float-card {
  position: absolute; z-index: 2; left: -26px; bottom: 34px; background: #fff; border-radius: 22px;
  padding: 16px 20px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.float-card .ico { width: 44px; height: 44px; border-radius: 14px; background: var(--tint); display: grid; place-items: center; color: var(--brand-dark); flex: none; }
.float-card b { display: block; font-size: .95rem; line-height: 1.25; }
.float-card small { color: var(--navy-soft); font-size: .78rem; font-weight: 500; }
@media (max-width: 900px) {
  .hero { padding-top: 116px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 20px auto 0; }
  .float-card { left: 12px; }
}
@media (max-width: 480px) {
  .underline { white-space: normal; }
  .underline svg { display: none; }
}

/* ---------- Plattformen ---------- */
.platforms { padding: 26px 0 10px; text-align: center; }
.platforms small { display: block; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .72rem; color: var(--navy-soft); margin-bottom: 16px; }
.platforms-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 44px; font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; color: #b8c0cf; }

/* ---------- Sektionen ---------- */
section { padding: 100px 0; }
.eyebrow { color: var(--warm-dark); font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.01em; line-height: 1.16; font-weight: 800; margin-bottom: 18px; }
h2 .accent { display: block; }
.sub { color: var(--navy-soft); font-size: 1.08rem; max-width: 600px; }
.head { margin-bottom: 56px; }
.head.center { text-align: center; }
.head.center .sub { margin-inline: auto; }
.tint { background: var(--tint); }

/* ---------- Vorteile ---------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .benefit:hover { transform: translateY(-6px) rotate(-.6deg); box-shadow: var(--shadow); border-color: var(--warm); }
  .benefit:nth-child(even):hover { transform: translateY(-6px) rotate(.6deg); }
}
.icon {
  width: 56px; height: 56px; border-radius: 16px 16px 16px 6px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff;
}
.benefit:nth-child(3n+2) .icon { background: linear-gradient(135deg, var(--warm), var(--warm-dark)); }
.benefit:nth-child(3n) .icon { background: var(--navy); }
.benefit h3 { font-weight: 700; font-size: 1.1rem; line-height: 1.3; margin-bottom: 8px; }
.benefit p { font-size: .92rem; color: var(--navy-soft); }
@media (max-width: 1000px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefits { grid-template-columns: 1fr; } }

/* ---------- Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; position: relative; }
.step { background: #fff; border-radius: var(--radius); padding: 32px 26px; box-shadow: 0 10px 30px -18px rgba(11,31,77,.3); position: relative; }
.step::before {
  counter-increment: s; content: counter(s);
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 1.2rem; margin-bottom: 20px;
}
.step:nth-child(2)::before { background: var(--warm); }
.step:nth-child(3)::before { background: var(--brand-dark); }
.step:nth-child(4)::before { background: var(--navy); }
.step h3 { font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--navy-soft); }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Leistungen ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.timeline { background: #fff; border: 1.5px solid var(--line); border-radius: 36px; padding: 34px 32px; box-shadow: var(--shadow); }
.timeline h3 { font-weight: 700; font-size: 1.15rem; margin-bottom: 4px; }
.timeline > small { color: var(--navy-soft); font-weight: 500; display: block; margin-bottom: 24px; }
.timeline ol { list-style: none; position: relative; display: grid; gap: 20px; }
.timeline ol::before { content: ''; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px; background: var(--tint-2); }
.timeline li { position: relative; padding-left: 50px; font-weight: 700; font-size: .95rem; line-height: 1.35; }
.timeline li small { display: block; font-weight: 500; color: var(--navy-soft); font-size: .82rem; }
.timeline li::before {
  content: '✓'; position: absolute; left: 0; top: 0; width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; background: var(--brand); color: #fff; font-size: .8rem; font-weight: 800;
}
.timeline li:nth-child(even)::before { background: var(--warm); }
.wien {
  position: relative; overflow: hidden; border-radius: 40px; padding: 48px 40px; min-height: 380px; color: #fff; box-shadow: var(--shadow);
  background: radial-gradient(420px 260px at 85% 10%, rgba(255,255,255,.22), transparent 70%), linear-gradient(150deg, var(--brand), var(--brand-dark) 60%, var(--navy));
  display: flex; flex-direction: column; justify-content: flex-end;
}
.wien .pin { position: absolute; top: 36px; left: 40px; width: 54px; height: 54px; border-radius: 18px; background: rgba(255,255,255,.18); display: grid; place-items: center; }
.wien b { font-size: clamp(3.4rem, 9vw, 5.6rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.wien span { font-weight: 600; opacity: .9; margin-top: 10px; }
.split.rev .split-media { order: 2; }
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-top: 30px; list-style: none; }
.services li {
  display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .95rem;
  padding: 14px 18px; background: var(--tint); border-radius: 18px;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .services li:hover { transform: translateY(-2px); background: var(--warm-tint); }
}
.services li::before { content: ''; flex: none; width: 10px; height: 10px; border-radius: 50%; background: var(--brand); }
.services li:nth-child(even)::before { background: var(--warm); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .split-media { order: 0; }
  .services { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq details { background: #fff; border: 1.5px solid var(--line); border-radius: 22px; transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out); }
.faq details[open] { border-color: var(--warm); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 28px; font-weight: 700; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--tint); color: var(--brand-dark); font-size: 1.4rem; font-weight: 600;
  transition: transform 220ms var(--ease-out), background 220ms var(--ease-out), color 220ms var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--warm); color: #fff; }
.faq details p {
  padding: 0 28px 24px; color: var(--navy-soft);
  animation: faqIn 220ms var(--ease-out);
}
@keyframes faqIn { from { opacity: 0; transform: translateY(-4px); } }

/* ---------- Über uns ---------- */
.about-note { margin-top: 22px; font-size: .95rem; color: var(--navy-soft); }
.byline { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.avatar {
  flex: none; width: 54px; height: 54px; border-radius: 50% 50% 50% 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--warm), var(--brand)); color: #fff;
  font-weight: 700; font-size: 1.3rem;
}
.byline b { display: block; font-size: 1rem; }
.byline span { color: var(--navy-soft); font-size: .85rem; }
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.trio div {
  background: #fff; border-radius: 22px 22px 22px 8px; padding: 20px 14px; text-align: center; font-weight: 700; font-size: .88rem;
  box-shadow: 0 10px 30px -18px rgba(11,31,77,.3); transition: transform 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .trio div:hover { transform: translateY(-4px); }
}
.trio b { display: grid; place-items: center; width: 44px; height: 44px; margin: 0 auto 10px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 1.15rem; }
.trio div:nth-child(2) b { background: var(--warm); }
.trio div:nth-child(3) b { background: var(--brand-dark); }

/* ---------- Kontakt ---------- */
.contact {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; border-radius: 40px; overflow: hidden;
  background: var(--navy); color: #fff; box-shadow: var(--shadow);
}
.contact-info { padding: 56px 48px; background: linear-gradient(160deg, var(--warm), var(--brand-dark) 85%); color: #fff; }
.contact-info h2 { color: #fff; }
.contact-info p { opacity: .95; margin-bottom: 28px; }
.contact-info ul { list-style: none; display: grid; gap: 14px; font-weight: 600; }
.contact-info a { text-decoration: underline; text-underline-offset: 3px; }
form { padding: 48px; background: #fff; color: var(--navy); display: grid; gap: 16px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 6px; font-weight: 700; font-size: .82rem; }
input, textarea, select {
  font: 500 .95rem 'Noto Sans', sans-serif; color: var(--navy); padding: 14px 16px; border: 1.5px solid var(--line);
  border-radius: 14px; background: #f7f9ff; width: 100%; transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--warm); box-shadow: 0 0 0 4px rgba(236, 106, 69, .16); }
textarea { min-height: 110px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; font-size: .78rem; color: var(--navy-soft); }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brand); flex: none; }
.consent a { text-decoration: underline; }
@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .contact-info, form { padding: 34px 26px; }
  .row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
footer { padding: 44px 0; margin-top: 100px; border-top: 1px solid var(--line); font-size: .88rem; color: var(--navy-soft); }
.foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.foot div { display: flex; gap: 26px; font-weight: 600; }
.foot a:hover { color: var(--warm-dark); }

/* ---------- Rechtsseiten ---------- */
.legal { padding: 150px 0 40px; max-width: 780px; margin-inline: auto; }
.legal h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 30px; }
.legal h2 { font-size: 1.3rem; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--navy-soft); margin-bottom: 10px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--brand-dark); text-decoration: underline; }
.todo { background: #fff4d6; border: 1.5px dashed #e0a800; border-radius: 14px; padding: 14px 18px; color: #6b5200 !important; font-size: .9rem; margin-bottom: 24px; }
mark { background: #fff4d6; color: #6b5200; padding: 1px 6px; border-radius: 6px; }

/* ---------- Animation ---------- */
.reveal { opacity: 0; transform: translateY(18px) scale(.96); transition: opacity 550ms var(--ease-out), transform 550ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .chip { animation: none; }
  .faq details p { animation: none; }
}

.wien .map { position: absolute; top: 24px; right: 18px; width: min(78%, 420px); height: auto; opacity: .95; pointer-events: none; }
.wien .credit { position: relative; margin-top: 14px; font-size: .68rem; opacity: .6; font-weight: 500; }
.wien b, .wien span { position: relative; }
.wien { min-height: 440px; }




