/* Selbst gehostete Schriften (DSGVO-konform, keine Google-Server) */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/space-grotesk-latin-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/inter-latin-variable.woff2") format("woff2");
}
/* Jasinski Solutions — Version 3 (modern, hell, lebendig) */
:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --ink: #101826;
  --muted: #56677c;
  --line: #dde3ea;
  --line2: #d6e2ef;
  --blue: #235ea6;
  --blue-deep: #1b4b84;
  --blue-bright: #3e86d6;
  --blue-soft: #eaf2fc;
  --blue-100: #d6e4f5;
  --navy: #14222f;
  --radius: 18px;
  --btn-radius: 12px;
  --shadow: 0 26px 60px -34px rgba(16, 32, 56, 0.38);
  --shadow-sm: 0 12px 30px -18px rgba(16, 32, 56, 0.26);
  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --wrap: 1140px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  color-scheme: light;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}
body {
  margin: 0;
  color-scheme: light;
  font-family: var(--body);
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 420px, var(--bg) 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* Feine Grain-Textur für mehr Tiefe statt platter Flächen */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
@media print {
  body::after {
    display: none;
  }
}
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 26px;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  line-height: 1.06;
}
h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}
h3 {
  font-size: 1.24rem;
  letter-spacing: -0.02em;
}
p {
  margin: 0 0 1em;
}
a {
  color: var(--blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
:focus-visible {
  outline: 3px solid var(--blue-deep);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  padding: 0.7rem 1.1rem;
  border-radius: var(--btn-radius);
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
  text-decoration: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: var(--blue-soft);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  margin: 0 0 1.4rem;
}
.badge .dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 3px;
  background: var(--blue);
  display: inline-block;
}
/* Leichtere Alternative zur Badge-Pille: für Abschnitte, in denen nicht
   jede Überschrift dieselbe blaue Kapsel braucht (weniger "Baukasten"-Takt). */
.overline {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin: 0 0 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--btn-radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.18s ease;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(35, 94, 166, 0.65);
}
.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line2);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  text-decoration: none;
}
.btn:active {
  transform: scale(0.96);
}

.hd {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 249, 246, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand:hover {
  text-decoration: none;
}
.brand img {
  height: 60px;
  width: auto;
  display: block;
}
.links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.links a {
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  font-size: 1rem;
  position: relative;
}
.links a:hover {
  color: var(--blue);
  text-decoration: none;
}
.links a.active {
  color: var(--blue);
}
.links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--blue);
}
.navcta a {
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
}
/* In der Navigation bewusst nur Kontur: der Button steht auf jeder Seite
   dauerhaft im Blick und wirkt als Vollfläche aufdringlich. */
.navcta .btn-primary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: none;
}
.navcta .btn-primary:hover {
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  color: var(--ink);
  cursor: pointer;
}

section {
  padding: 88px 0;
}
.center {
  text-align: center;
}
.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 60ch;
}
.center .lead {
  margin: 0 auto;
}
.intro {
  padding: 66px 0 30px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 88px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -160px;
  top: -260px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(62, 134, 214, 0.2),
    rgba(62, 134, 214, 0) 62%
  );
  z-index: 0;
  animation: blob 14s ease-in-out infinite;
}
.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--blue) 10%, var(--blue-bright) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.22rem;
  color: var(--muted);
  max-width: 40ch;
  margin: 0.4rem 0 1.7rem;
}
.flow {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
  font-family: var(--display);
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.9rem;
}
.flow .ar {
  color: var(--blue);
  padding: 0 0.55rem;
  font-weight: 700;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.7rem;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.pill {
  font-size: 0.86rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
}


/* Pain */
.pain-wrap {
  background: var(--blue-soft);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  padding: 44px;
}
.pain {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 34px;
}
.pain li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 500;
}
.pain li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.55em;
  width: 16px;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
}

/* Services */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.scard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.35s ease;
  will-change: transform;
}
.scard:hover {
  box-shadow: var(--shadow);
}
.illus {
  height: 132px;
  border-radius: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  border: 1px solid var(--blue-100);
  overflow: hidden;
}
.illus svg {
  width: 80%;
  height: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.scard:hover .illus svg {
  transform: scale(1.06) rotate(-1deg);
}
.scard p {
  color: var(--muted);
  margin: 0;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.step .n {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--blue);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step p {
  color: var(--muted);
  margin: 0;
}

/* CTA band */
.ctaband {
  background: linear-gradient(120deg, var(--navy), #1e3a57);
  color: #fff;
  border-radius: 26px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ctaband::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 134, 214, 0.4), transparent 60%);
}
.ctaband h2 {
  color: #fff;
  position: relative;
}
.ctaband p {
  color: #c4d2e2;
  position: relative;
  max-width: 52ch;
  margin: 0 auto 1.6rem;
}
.ctaband .btn-primary {
  position: relative;
  background: #fff;
  color: var(--navy);
}
.ctaband .btn-primary:hover {
  background: #eaf1fb;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: center;
}
.photo {
  display: flex;
  justify-content: center;
}
.photo img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  box-shadow:
    0 0 0 8px var(--surface),
    0 0 0 9px var(--blue-100),
    0 26px 54px -26px rgba(20, 40, 66, 0.4);
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 2.4rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: start;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line2);
  border-radius: 11px;
  font-family: var(--body);
  font-size: 1rem;
  background: var(--surface);
  color: var(--ink);
}
.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--blue);
  border-color: var(--blue);
}
.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.consent input {
  margin-top: 0.25rem;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.info-line {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--muted);
}
.info-line strong {
  color: var(--ink);
  font-family: var(--display);
  min-width: 78px;
  display: inline-block;
}

/* Booking */
.booking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.checklist li {
  position: relative;
  padding-left: 38px;
  color: var(--ink);
}
.checklist li strong {
  font-family: var(--display);
}
.checklist li span {
  color: var(--muted);
  display: block;
  font-size: 0.95rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #fff;
  font-weight: 700;
  background: var(--blue);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}
.booking-embed {
  min-height: 640px;
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
/* Zwei-Klick-Lösung: Kalender lädt erst nach Einwilligung */
.cal-gate {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  min-height: 640px;
  padding: 44px;
  background: linear-gradient(160deg, #f6faff 0%, var(--surface) 70%);
}
.cal-gate h2 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.cal-gate p {
  max-width: 48ch;
  color: var(--muted);
}
.cal-gate .btn {
  margin: 1rem 0 1.4rem;
}
.cal-gate-note {
  font-size: 0.88rem;
}
@media (max-width: 600px) {
  .cal-gate {
    padding: 30px 24px;
    min-height: 0;
  }
}

/* Paket-Zusammenfassung in der Seitenleiste der Buchungsseiten */
.booking-summary {
  position: relative;
  margin-bottom: 26px;
  padding: 24px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.booking-summary-featured {
  border: 2px solid var(--blue);
  background: linear-gradient(160deg, #f6faff 0%, #fff 68%);
  box-shadow: 0 12px 32px rgba(29, 78, 137, 0.14);
}
.booking-summary .package-price {
  font-size: 1.95rem;
}
.booking-summary > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.58;
}
/* Terminbestätigung */
.booking-confirm-list {
  max-width: 36rem;
  margin: 2.4rem auto 0;
  text-align: left;
}
@media (max-width: 600px) {
  .booking-summary {
    padding: 22px 20px;
  }
}

/* Legal */
.legal {
  max-width: 760px;
}
.legal h2 {
  margin-top: 2rem;
  font-size: 1.3rem;
}
.legal p,
.legal li {
  color: var(--ink);
}
.note {
  background: #fbf3e4;
  border: 1px solid #ebd9b4;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.9rem;
  color: #6b5a2e;
  margin-bottom: 24px;
}

/* Footer */
.ft {
  background: var(--navy);
  color: #a9b7c6;
  padding: 56px 0 34px;
}
.ft a {
  color: #d6e0e9;
}
.ft-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 26px;
}
.ft-brand {
  font-family: var(--display);
  font-weight: 700;
  color: #fff;
  font-size: 1.15rem;
}
.ft-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.94rem;
}
.ft-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  font-size: 0.82rem;
  color: #8394a5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes blob {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.12) translate(-20px, 14px);
  }
}
@keyframes grow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@media (max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .grid3,
  .steps,
  .about-grid,
  .contact-grid,
  .booking-grid,
  .values,
  .pain {
    grid-template-columns: 1fr;
  }
  .nav-toggle {
    display: block;
  }
  .links {
    position: fixed;
    inset: 78px 0 auto 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 8px 26px 20px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .links.open {
    display: flex;
  }
  .links li {
    width: 100%;
  }
  .links a {
    display: block;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }
  .links a.active::after {
    display: none;
  }
  .navcta {
    padding-top: 0.6rem;
  }
  .navcta a {
    display: inline-flex;
  }
  section {
    padding: 60px 0;
  }
  .ctaband {
    padding: 40px 26px;
  }
  .pain-wrap {
    padding: 30px;
  }
}
@media (max-width: 600px) {
  .brand img {
    height: 48px;
  }
}

/* Pain-Überschrift dezenter (weniger fett, etwas kleiner) */
.pain-wrap h2 {
  font-weight: 600;
  font-size: clamp(1.5rem, 2.7vw, 1.95rem);
  letter-spacing: -0.01em;
}
.pain-note {
  margin-top: 1.6rem;
  color: var(--muted);
  max-width: 60ch;
}

/* Pills mit Icon (statt Emoji) */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.pill svg {
  width: 14px;
  height: 14px;
  color: var(--blue);
  flex: none;
}
.chip-float .ic svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
}

/* Icons statt Emojis in Pillen */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pill svg {
  flex: none;
}
.chip-float .ic svg {
  display: block;
}
.tick .ck svg {
  display: block;
}

/* Preis-Zusatz auf Paketkarten */
.price .pnote {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 3px;
}

/* FAQ-Akkordeon */
.faq {
  max-width: 820px;
  display: grid;
  gap: 14px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover {
  color: var(--blue);
}
.faq .ic {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.faq details[open] .ic {
  transform: rotate(45deg);
}
.faq .ans {
  display: none;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.65;
}
.faq details[open] .ans {
  display: block;
}
.faq .ans a {
  color: var(--blue);
}

/* Scroll-Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Zeitersparnis-Rechner */
.calc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.calc-field label {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.calc-field label span {
  color: var(--blue);
  font-family: var(--display);
}
.calc-field input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--blue-100);
  appearance: none;
  -webkit-appearance: none;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  border: 4px solid #fff;
  box-shadow: 0 4px 12px -2px rgba(35, 94, 166, 0.6);
  cursor: pointer;
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  border: 4px solid #fff;
  box-shadow: 0 4px 12px -2px rgba(35, 94, 166, 0.6);
  cursor: pointer;
  border: none;
}
.calc-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 1rem;
}
.calc-results {
  background: var(--blue-soft);
  border: 1px solid var(--blue-100);
  border-radius: 14px;
  padding: 26px;
  display: grid;
  gap: 18px;
}
.calc-stat b {
  display: block;
  font-family: var(--display);
  font-size: 1.9rem;
  color: var(--blue-deep);
  line-height: 1.1;
}
.calc-stat span {
  color: var(--muted);
  font-size: 0.88rem;
}
.calc-results .btn {
  margin-top: 4px;
}
@media (max-width: 820px) {
  .calc-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }
}

/* Vorher / Nachher */
.compare-tabs {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.compare-tabs button {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.94rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.18s ease;
}
.compare-tabs button.active {
  background: var(--blue);
  color: #fff;
}
.compare-panel {
  display: none;
}
.compare-panel.active {
  display: block;
  animation: fadein 0.35s ease;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.messy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  min-height: 270px;
  overflow: hidden;
}
.sticky-note {
  position: absolute;
  background: #fbf3e4;
  border: 1px solid #ebd9b4;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.86rem;
  color: #6b5a2e;
  box-shadow: 0 10px 22px -12px rgba(20, 40, 66, 0.35);
  width: 150px;
}
.sticky-note.n1 {
  top: 14px;
  left: 6%;
  transform: rotate(-6deg);
}
.sticky-note.n2 {
  top: 36px;
  left: 38%;
  transform: rotate(4deg);
  background: #fdecec;
  border-color: #f2c6c6;
  color: #7a3434;
}
.sticky-note.n3 {
  top: 96px;
  left: 16%;
  transform: rotate(3deg);
}
.sticky-note.n4 {
  top: 110px;
  left: 56%;
  transform: rotate(-4deg);
  background: #e9f1fb;
  border-color: #cfe0f2;
  color: #1b4b84;
}
.sticky-note.n5 {
  top: 170px;
  left: 34%;
  transform: rotate(-2deg);
  background: #fdecec;
  border-color: #f2c6c6;
  color: #7a3434;
}
.tidy-notes {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 220px;
}
.tidy-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-100);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--blue-deep);
  width: calc(50% - 7px);
  box-shadow: 0 8px 18px -12px rgba(20, 40, 66, 0.3);
}
.tidy-note svg {
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--blue);
}
@media (max-width: 600px) {
  .tidy-note {
    width: 100%;
  }
  .tidy-notes {
    min-height: 0;
  }
}
@media (max-width: 600px) {
  .messy {
    min-height: 260px;
  }
  .sticky-note {
    width: 130px;
    font-size: 0.8rem;
  }
}

/* Lead-Magnet */
.leadmagnet {
  background: linear-gradient(120deg, var(--blue-soft), #f3f8fe);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.leadmagnet .lm-icon {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -14px rgba(35, 94, 166, 0.65);
}
.leadmagnet .lm-text {
  flex: 1;
  min-width: 240px;
}
.leadmagnet h2 {
  margin-bottom: 0.35rem;
}
.leadmagnet p {
  color: var(--muted);
  margin: 0;
  max-width: 52ch;
}
.leadmagnet .btn {
  flex: none;
}

/* Beispielszenarien (ausdrücklich keine benannten Kundenreferenzen) */
.cases {
  display: grid;
  gap: 18px;
  margin-top: 2.2rem;
}
.case {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 28px;
}
.case-head {
  display: flex;
  gap: 14px;
  align-items: baseline;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 17px;
}
.case-head h3 {
  margin: 0;
  font-size: 1.14rem;
}
.case-tag {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: var(--blue-soft);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  padding: 4px 11px;
  white-space: nowrap;
}
.case-rows {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 13px 22px;
  margin: 0;
}
.case-rows dt {
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.2rem;
}
.case-rows dd {
  margin: 0;
  max-width: 62ch;
  font-size: 0.96rem;
  line-height: 1.6;
}
.case-rows dd.case-result {
  color: var(--blue-deep);
  font-weight: 600;
}
.cases-note {
  margin: 18px 0 0;
  font-size: 0.83rem;
  color: var(--muted);
  max-width: 74ch;
}
/* Belegsatz unter einem Wert – macht aus dem Versprechen eine Zusage */
.scard .proof {
  display: block;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 0.92rem;
}
/* Arbeitsweise als nummerierte Zeilen statt weiterer Karten */
.method {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.method li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 22px;
  align-items: baseline;
  padding: 22px 2px;
  border-bottom: 1px solid var(--line);
}
.method .m-n {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--blue-deep);
}
.method h3 {
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
}
.method p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  .method li {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }
}
@media (max-width: 700px) {
  .case {
    padding: 24px 22px;
  }
  .case-tag {
    margin-left: 0;
  }
  .case-rows {
    grid-template-columns: 1fr;
    gap: 3px 0;
  }
  .case-rows dd {
    margin: 0 0 13px;
  }
  .case-rows dd:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 700px) {
  .leadmagnet {
    padding: 30px;
    text-align: center;
    justify-content: center;
  }
  .leadmagnet .lm-icon {
    margin: 0 auto;
  }
}

/* Selbsttest / Quiz */
.quiz-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 32px;
}
.quiz-q {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.quiz-q.last {
  border-bottom: none;
}
.quiz-q .q-text {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  flex: 1;
  min-width: 220px;
}
.quiz-q .q-text span {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.35rem;
}
.quiz-toggle {
  display: inline-flex;
  gap: 10px;
  flex: none;
}
.topt {
  position: relative;
  display: inline-block;
}
.topt input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.topt label {
  display: inline-block;
  cursor: pointer;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid var(--line2);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  transition: 0.15s ease;
  user-select: none;
}
.topt input:checked + label {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.topt input:focus-visible + label {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
@media (max-width: 600px) {
  .quiz-q {
    flex-direction: column;
    align-items: flex-start;
  }
  .quiz-toggle {
    align-self: flex-start;
  }
}

.quiz-result {
  margin-top: 26px;
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--blue-100);
  background: var(--blue-soft);
  box-shadow: var(--shadow-sm);
}
.quiz-result.tier-low {
  background: #fbf3e4;
  border-color: #ebd9b4;
}
.quiz-result.tier-high {
  background: linear-gradient(120deg, var(--navy), #1e3a57);
  border-color: transparent;
}
.quiz-result.tier-high h2,
.quiz-result.tier-high p {
  color: #fff;
}
.quiz-result.tier-high .score {
  color: #bfd6f0;
}
.quiz-result h2 {
  margin-bottom: 0.5rem;
}
.quiz-result .score {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  color: var(--blue-deep);
  margin: 0.4rem 0 0;
}
.quiz-result-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.print-brand {
  display: none;
}

/* Druckansicht der Auswertung */
@media print {
  .no-print,
  .hd,
  .ft,
  #quiz-form,
  .sticky-cta {
    display: none !important;
  }
  body {
    background: #fff;
  }
  .quiz-result {
    border: 1px solid #ccc;
    box-shadow: none;
    background: #fff !important;
    margin-top: 0;
  }
  .quiz-result.tier-high h2,
  .quiz-result.tier-high p {
    color: var(--ink) !important;
  }
  .quiz-result.tier-high .score {
    color: var(--blue-deep) !important;
  }
  .print-brand {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue-deep);
    margin-bottom: 1rem;
  }
  .quiz-result-actions {
    display: none;
  }
}

/* Package comparison */
.package-overview {
  padding-top: 16px;
}
.package-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.package-card-featured {
  border: 2px solid var(--blue);
  background: linear-gradient(160deg, #f6faff 0%, #fff 68%);
  box-shadow: 0 12px 32px rgba(29, 78, 137, 0.14);
}
.package-recommendation {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--blue-deep);
  color: #fff;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.package-label {
  margin: 0 0 9px;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.package-price {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}
.package-price span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
}
.package-card-title {
  margin: 6px 0 7px;
  color: var(--ink);
  font-weight: 800;
}
.package-card
  > p:not(.package-label):not(.package-price):not(.package-card-title) {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.58;
}
.package-card .btn {
  width: 100%;
  margin-top: auto;
}
.package-comparison {
  margin-top: 44px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.package-comparison-head {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 22px;
}
.package-comparison h2 {
  margin: 9px 0 7px;
}
.package-comparison-head p {
  margin: 0;
  color: var(--muted);
}
.comparison-legend {
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  font-size: 0.82rem;
}
.comparison-legend .comparison-cross {
  margin-left: 10px;
}
.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.comparison-table thead th {
  background: var(--blue-deep);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  text-align: center;
}
.comparison-table thead th:first-child {
  text-align: left;
}
.comparison-table tbody tr:nth-child(even) {
  background: #f8fbfe;
}
.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}
.comparison-table tbody th {
  width: 40%;
  color: var(--ink);
  font-weight: 700;
  text-align: left;
}
.comparison-table td {
  width: 20%;
  color: var(--muted);
  text-align: center;
  line-height: 1.35;
}
.comparison-check,
.comparison-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 0.91rem;
  font-weight: 900;
  line-height: 1;
}
.comparison-check {
  background: #e7f5ee;
  color: #157347;
}
.comparison-cross {
  background: #f9e9e9;
  color: #a13e3e;
}
.comparison-note {
  display: block;
  margin-top: 3px;
  font-size: 0.7rem;
  color: var(--muted);
}
.comparison-price-row {
  background: #edf5fd !important;
}
.comparison-price-row th,
.comparison-price-row td {
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
}
.comparison-footnote {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.package-custom {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding: 29px 32px;
  background: var(--blue-deep);
  border-radius: var(--radius);
}
.package-custom .badge {
  background: rgba(255, 255, 255, 0.1);
  color: #dcecff;
}
.package-custom h2 {
  margin: 10px 0 7px;
  color: #fff;
}
.package-custom p {
  max-width: 680px;
  margin: 0;
  color: #dcecff;
}
.package-custom .btn {
  flex: 0 0 auto;
  background: #fff;
  color: var(--blue-deep);
}
.package-custom .btn:hover {
  background: #edf5fd;
}
@media (max-width: 900px) {
  .package-cards {
    grid-template-columns: 1fr;
  }
  .package-card {
    padding: 28px 24px;
  }
  .package-comparison {
    padding: 26px 20px;
  }
  .package-comparison-head {
    display: block;
  }
  .comparison-legend {
    margin-top: 14px;
  }
  .package-custom {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 24px;
  }
  .package-custom .btn {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .package-comparison {
    margin-left: -4px;
    margin-right: -4px;
    padding: 22px 14px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 13px 12px;
  }
  .comparison-table {
    font-size: 0.84rem;
  }
  .comparison-table tbody th {
    width: 42%;
  }
}

/* Runde 2: weniger Baukasten, mehr echte Arbeitsrealität */
.hero-photo {
  margin: 0;
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 6px 36px 6px 6px;
  background: var(--blue-soft);
  box-shadow: 18px 18px 0 var(--blue-100);
}
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 50% 30%;
}
.hero-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 29ch;
  padding: 0.9rem 1rem;
  color: #fff;
  background: rgba(20, 34, 47, 0.88);
  font-size: 0.84rem;
}
.hero-note {
  max-width: 43ch;
  margin: 0 0 1.7rem;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--blue-deep);
}
.audience-lines {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.9fr;
  gap: 1.5rem 2.5rem;
  max-width: 1050px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}
.audience-lines .scard {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.audience-lines .scard h3 {
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quiz-privacy-note {
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.88rem;
}
@media (max-width: 1000px) and (min-width: 901px) {
  .nav {
    gap: 1rem;
  }
  .links {
    gap: 0.8rem;
  }
  .links a {
    font-size: 0.86rem;
  }
}
@media (max-width: 900px) {
  .hero-photo,
  .hero-photo img {
    min-height: 350px;
  }
  .audience-lines {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 560px) {
  .hero-photo,
  .hero-photo img {
    min-height: 300px;
  }
  .hero-photo {
    box-shadow: 10px 10px 0 var(--blue-100);
  }
}

/* Website-Fragebogen (langes, mehrteiliges Formular) */
.fortschritt-leiste {
  margin-top: 1rem;
  height: 8px;
  background: var(--line2);
  border-radius: 4px;
  overflow: hidden;
}
.fortschritt-fuellung {
  height: 100%;
  width: 0%;
  background: var(--blue);
  transition: width 0.2s ease;
}
.fortschritt-text {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.4rem;
}
.legal .note {
  font-size: 0.92rem;
}
.legal fieldset {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.3rem 1.4rem 1.5rem;
  margin: 0 0 1.4rem 0;
}
.legal legend {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0 0.4rem;
}
.frage {
  margin: 1.1rem 0;
}
.frage label.haupt {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}
.frage .hilfe {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  margin-bottom: 0.4rem;
}
.pflicht {
  color: #b3261e;
  font-weight: 700;
  margin-left: 0.15rem;
}
.frage input[type="text"],
.frage input[type="email"],
.frage input[type="tel"],
.frage input[type="date"],
.frage input[type="number"],
.frage textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line2);
  border-radius: 11px;
  font-family: var(--body);
  font-size: 1rem;
  background: var(--surface);
  color: var(--ink);
}
.frage input:focus,
.frage textarea:focus {
  outline: 2px solid var(--blue);
  border-color: var(--blue);
}
.frage textarea {
  min-height: 4.5rem;
  resize: vertical;
}
.auswahl-gruppe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.auswahl-gruppe label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid var(--line2);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: 0.15s ease;
}
.auswahl-gruppe label:has(input:checked) {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.auswahl-gruppe input {
  width: auto;
  margin: 0;
}
table.funktionen {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 0.5rem;
}
table.funktionen th,
table.funktionen td {
  border-bottom: 1px solid var(--line2);
  padding: 0.6rem 0.4rem;
  text-align: center;
}
table.funktionen th:first-child,
table.funktionen td:first-child {
  text-align: left;
}
table.funktionen th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
  font-family: var(--display);
}
.abschluss-hinweis {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.7rem;
  text-align: center;
}
@media (max-width: 480px) {
  .legal fieldset {
    padding: 1rem 1rem 1.2rem;
  }
}
