/* Clav – clean onepager
   Farben und Abstände kannst du oben in :root schnell anpassen. */

:root {
  --bg: #F8F7F2;
  --bg-soft: #EEEFE8;
  --text: #171512;
  --muted: #686C61;
  --line: rgba(23, 21, 18, 0.12);
  --card: rgba(255, 255, 255, 0.62);
  --accent: #7E9382;
  --accent-soft: #E3EBE4;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(39, 52, 41, 0.10);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  background: var(--text);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 99;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 247, 242, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(248, 247, 242, 0.92);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 10;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.brand-name {
  font-size: 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  margin: 5px auto;
}

.hero {
  padding: 96px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 500;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.title-break {
  display: block;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid var(--text);
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--text);
  color: var(--bg);
}

.button-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.button-secondary {
  background: transparent;
  color: var(--text);
}

/* Hero-Buttons: zuerst ruhig/outlined, Farbe erst beim Hover */
.hero-actions-main .button-hero {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
  gap: 10px;
}

.hero-actions-main .button-hero:hover {
  transform: translateY(-2px);
}

.button-hero-request:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.button-hero-price:hover {
  background: var(--accent-soft);
  color: var(--text);
  border-color: var(--accent-soft);
}

.button-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
  transition: transform 0.2s ease;
}

.button-hero-request:hover .button-icon {
  transform: translateY(-1px);
}


.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.proof-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.72), rgba(248, 247, 242, 0.82));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.browser-bar {
  height: 48px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(23, 21, 18, 0.25);
}

.mock-page {
  padding: 26px;
}

.mock-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.mock-top small {
  color: var(--muted);
}

.mock-top h2 {
  margin-top: 4px;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.mock-top a {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
}

.mock-hero {
  min-height: 220px;
  display: flex;
  align-items: end;
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(217,199,170,0.95), transparent 32%),
    linear-gradient(135deg, #d8d0c3, #b9ab98);
}

.mock-hero p {
  max-width: 280px;
  margin: 0;
  font-size: 31px;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0;
}

.mock-cards div {
  height: 74px;
  border-radius: 18px;
  background: rgba(23, 21, 18, 0.08);
}

.mock-line {
  width: 56%;
  height: 10px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(23, 21, 18, 0.12);
}

.mock-line.long {
  width: 88%;
}

.section {
  padding: 90px 0;
}

.compact-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.intro-strip {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip p {
  max-width: 850px;
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature,
.step,
.price-card,
.contact-form,
.quote-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.feature {
  padding: 26px;
  min-height: 250px;
}

.feature-number {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--muted);
  font-size: 14px;
}

.feature p,
.step p,
.price-card li,
.contact-text,
.form-note,
.price-note {
  color: var(--muted);
}

.muted {
  background: var(--bg-soft);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.target-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.target-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 21, 18, 0.16);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.profession-marquee {
  position: relative;
  margin-top: 42px;
  overflow: hidden;
  opacity: 0.82;
  mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
}

.profession-marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  will-change: transform;
  animation: professionMarquee 54s linear infinite;
}

.profession-sequence {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.profession-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-height: 68px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.30);
  border: 1px solid rgba(23, 21, 18, 0.07);
  box-shadow: none;
}

.profession-icon-wrap {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(23, 21, 18, 0.08);
}

.profession-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: color-mix(in srgb, var(--accent) 58%, var(--text));
  stroke-width: 1.75;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.profession-text {
  display: grid;
  gap: 2px;
}

.profession-name {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(23, 21, 18, 0.90);
}

.profession-copy {
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: -0.015em;
  color: rgba(23, 21, 18, 0.56);
}

@keyframes professionMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  padding: 24px;
}

.step span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}

.price-card.highlighted {
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  border-color: rgba(23, 21, 18, 0.28);
  box-shadow: 0 18px 50px rgba(35, 29, 20, 0.08);
}

.price-card.highlighted .price-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid rgba(23, 21, 18, 0.16);
  border-radius: 999px;
  background: rgba(227, 235, 228, 0.55);
  color: var(--text);
}

.price-card.highlighted li {
  color: var(--text);
}

.price-label {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  margin: 18px 0 30px;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-card ul {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.price-card li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(23, 21, 18, 0.12);
}

.price-card.highlighted li {
  border-bottom-color: rgba(23, 21, 18, 0.12);
}

.price-card .button {
  margin-top: auto;
}

.price-card.highlighted .button-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.price-note {
  margin: 20px 0 0;
  font-size: 14px;
}

.quote-box {
  padding: 44px;
}

.quote {
  margin: 0;
  max-width: 900px;
  font-size: clamp(30px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 64px;
}

.contact-grid h2 {
  margin-bottom: 24px;
}

.contact-text {
  max-width: 450px;
  font-size: 18px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--text);
}

.contact-links a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
}

.legal-title {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.contact-icon-links {
  gap: 14px;
}

.contact-icon-links a {
  border-bottom: 0;
}

.contact-icon-links .impressum-link {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.contact-icon-links .impressum-icon,
.contact-icon-links .impressum-icon svg {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
}

.contact-form {
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(23, 21, 18, 0.5);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 14px 0 0;
  font-size: 13px;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner div {
  display: flex;
  gap: 18px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 20px;
  letter-spacing: -0.04em;
}

.footer-copy {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
}

.footer-inner a {
  border-bottom: 1px solid transparent;
}

.footer-inner a:hover {
  border-color: currentColor;
}

@media (max-width: 920px) {
  .hero {
    padding-top: 64px;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(248, 247, 242, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    padding-bottom: 38px;
  }

  h1 {
    font-size: clamp(46px, 17vw, 70px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel {
    border-radius: 26px;
  }

  .mock-page {
    padding: 18px;
  }

  .mock-hero {
    min-height: 180px;
  }

  .mock-cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .compact-section {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .feature-grid,
  .steps,
  .target-list {
    grid-template-columns: 1fr;
  }

  .profession-marquee {
    margin-top: 30px;
  }

  .profession-item {
    min-height: 60px;
    padding: 10px 16px;
    gap: 10px;
  }

  .profession-icon-wrap {
    width: 36px;
    height: 36px;
  }

  .profession-icon {
    width: 20px;
    height: 20px;
  }

  .profession-name {
    font-size: 13px;
  }

  .profession-copy {
    font-size: 12px;
  }

  .feature {
    min-height: auto;
  }

  .feature-number {
    margin-bottom: 34px;
  }

  .quote-box {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
  }
}



/* Animierte Karten – subtil, modern, nicht aufdringlich */
.feature,
.step,
.price-card {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.feature.is-visible,
.step.is-visible,
.price-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature::before,
.step::before,
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      rgba(23, 21, 18, 0.04),
      rgba(227, 235, 228, 0.55),
      rgba(23, 21, 18, 0.08)
    );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
}

.feature:hover,
.step:hover,
.price-card:hover {
  border-color: rgba(23, 21, 18, 0.22);
  box-shadow: 0 22px 60px rgba(35, 29, 20, 0.09);
}

.feature:hover::before,
.step:hover::before,
.price-card:hover::before {
  opacity: 1;
}

.feature:nth-child(1),
.step:nth-child(1),
.price-card:nth-child(1) {
  transition-delay: 0.04s;
}

.feature:nth-child(2),
.step:nth-child(2),
.price-card:nth-child(2) {
  transition-delay: 0.12s;
}

.feature:nth-child(3),
.step:nth-child(3),
.price-card:nth-child(3) {
  transition-delay: 0.20s;
}

.feature:nth-child(4),
.step:nth-child(4),
.price-card:nth-child(4) {
  transition-delay: 0.28s;
}

.price-card.highlighted::before {
  background:
    linear-gradient(
      135deg,
      rgba(23, 21, 18, 0.04),
      rgba(227, 235, 228, 0.70),
      rgba(23, 21, 18, 0.08)
    );
}



/* Funnel-Sektion */
.funnel-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.funnel-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.funnel-card {
  position: relative;
  padding: 6px 0;
}

.funnel-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.funnel-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.funnel-step span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border: 1px solid rgba(23, 21, 18, 0.12);
  box-shadow: 0 10px 28px rgba(35, 29, 20, 0.05);
}

.funnel-step > div {
  padding: 20px 22px;
  border: 1px solid rgba(23, 21, 18, 0.10);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 44px rgba(35, 29, 20, 0.06);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.funnel-step:hover > div {
  transform: translateX(4px);
  border-color: rgba(23, 21, 18, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 52px rgba(35, 29, 20, 0.08);
}

.funnel-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.funnel-step h3 {
  margin-bottom: 8px;
}

.funnel-step p {
  margin: 0;
  color: var(--muted);
}

.funnel-arrow {
  width: 2px;
  height: 26px;
  margin: 8px 0 8px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(23, 21, 18, 0.12), rgba(23, 21, 18, 0.28));
  position: relative;
}

.funnel-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(23, 21, 18, 0.34);
  border-bottom: 1px solid rgba(23, 21, 18, 0.34);
  transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 920px) {
  .funnel-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 680px) {
  .funnel-step {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .funnel-step span {
    width: 38px;
    height: 38px;
  }

  .funnel-step > div {
    padding: 18px;
    border-radius: 20px;
  }

  .funnel-arrow {
    margin-left: 18px;
  }
}


/* Kompakte Leistungszeile */
.compact-services {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.service-strip div {
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.service-strip div:first-child {
  border-left: 0;
  padding-left: 0;
}

.service-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
}

.service-strip p {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

@media (max-width: 760px) {
  .service-strip {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }

  .service-strip div:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 520px) {
  .service-strip {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-strip div {
    border-left: 0;
    padding-left: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

  .service-strip div:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .profession-marquee-track {
    animation: none;
  }
}





/* Kontakt-Schritt im Funnel: dezente Hervorhebung mit dynamischem Rahmen */
.funnel-step.final {
  position: relative;
}

.funnel-step.final > div {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.84);
}

.funnel-step.final > div::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--funnel-border-angle, 0deg),
    rgba(23, 21, 18, 0.72) 0deg,
    rgba(23, 21, 18, 0.72) 80deg,
    rgba(23, 21, 18, 0.12) 132deg,
    rgba(23, 21, 18, 0.12) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: funnelBorderSpin 2.8s linear infinite;
  z-index: -1;
}

.funnel-step.final span {
  background: var(--text);
  color: var(--bg);
}

.funnel-step.final p {
  color: var(--muted);
}

@property --funnel-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes funnelBorderSpin {
  to {
    --funnel-border-angle: 360deg;
  }
}


.mock-page-typing {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.typing-stage {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 2px 0;
}

.typing-brand {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.typing-copy {
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(227, 235, 228, 0.70));
  border: 1px solid rgba(23, 21, 18, 0.08);
}

.typing-word {
  flex: 0 1 auto;
  max-width: 520px;
  min-height: 3.2em;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.97;
  letter-spacing: -0.065em;
  font-weight: 500;
}

.typing-caret {
  align-self: flex-end;
  width: 2px;
  height: 1em;
  margin-bottom: 0.12em;
  background: currentColor;
  animation: typingBlink 0.9s steps(1) infinite;
}

.typing-lines {
  display: flex;
  flex-direction: column;
}

@keyframes typingBlink {
  0%, 49% {
    opacity: 1;
  }

  50%, 100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .typing-caret {
    animation: none;
  }
}


@media (max-width: 680px) {
  .mock-page-typing {
    min-height: 420px;
  }

  .typing-stage {
    min-height: 280px;
  }

  .typing-copy {
    min-height: 190px;
    padding: 18px;
  }

  .typing-word {
    min-height: 2.9em;
    font-size: clamp(28px, 9vw, 42px);
  }
}


.hero-panel-plain {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.typing-stage-plain {
  min-height: 420px;
  justify-content: flex-start;
  gap: 54px;
  padding: 34px 0 12px;
}

.typing-copy-plain {
  min-height: 0;
  display: flex;
  align-items: baseline;
  gap: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.typing-copy-plain .typing-word {
  max-width: 560px;
  min-height: 2.2em;
}

@media (max-width: 680px) {
  .typing-stage-plain {
    min-height: 240px;
    gap: 34px;
    padding-top: 4px;
  }

  .typing-copy-plain .typing-word {
    min-height: 2.6em;
  }
}


.typing-copy-plain .typing-caret {
  display: none;
}

.typing-copy-plain .typing-word::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.92em;
  margin-left: 0.08em;
  background: currentColor;
  vertical-align: -0.06em;
  animation: typingBlink 0.9s steps(1) infinite;
}

@media (prefers-reduced-motion: reduce) {
  .typing-copy-plain .typing-word::after {
    animation: none;
  }
}

/* Datenschutz – ruhige, moderne Inhaltsblöcke ohne Karten */
.policy-list {
  border-top: 1px solid rgba(23, 21, 18, 0.14);
}

.policy-item {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(23, 21, 18, 0.14);
}

.policy-label {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: color-mix(in srgb, var(--accent) 62%, var(--muted));
}

.policy-content h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.policy-content p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .policy-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .policy-content h2 {
    font-size: 24px;
  }

  .policy-content p {
    font-size: 16px;
  }
}

/* FAQ – reduziert wie eine ruhige Akkordeon-Liste */
.faq-wrap {
  max-width: 1040px;
}

.faq-copy {
  max-width: 760px;
  margin-bottom: 38px;
}

.faq-copy h2 {
  max-width: 760px;
}

.faq-list {
  border-top: 1px solid rgba(23, 21, 18, 0.18);
}

.faq-item {
  border-bottom: 1px solid rgba(23, 21, 18, 0.18);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.faq-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 30px 82px 30px 0;
  font-size: clamp(22px, 2.7vw, 31px);
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: rgba(23, 21, 18, 0.52);
  transition: color 0.2s ease;
}

.faq-item[open] summary,
.faq-item summary:hover {
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "⌄";
  position: absolute;
  right: 0;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 21, 18, 0.06);
  color: rgba(23, 21, 18, 0.42);
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.faq-item[open] summary::after {
  content: "⌃";
  background: rgba(23, 21, 18, 0.08);
  color: rgba(23, 21, 18, 0.58);
}

.faq-item p {
  max-width: 800px;
  margin: -8px 90px 34px 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.faq-item:nth-child(1) { transition-delay: 0.04s; }
.faq-item:nth-child(2) { transition-delay: 0.10s; }
.faq-item:nth-child(3) { transition-delay: 0.16s; }
.faq-item:nth-child(4) { transition-delay: 0.22s; }

@media (max-width: 680px) {
  .faq-copy {
    margin-bottom: 26px;
  }

  .faq-item summary {
    padding: 24px 60px 24px 0;
    font-size: 24px;
  }

  .faq-item summary::after {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .faq-item p {
    margin: -2px 0 28px 0;
    font-size: 16px;
  }
}


.faq-panel {
  border-top: 1px solid rgba(23, 21, 18, 0.18);
  border-bottom: 1px solid rgba(23, 21, 18, 0.18);
}

.faq-panel summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 28px 82px 28px 0;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--text);
}

.faq-panel summary::-webkit-details-marker {
  display: none;
}

.faq-panel summary::after {
  content: "⌄";
  position: absolute;
  right: 0;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 21, 18, 0.06);
  color: rgba(23, 21, 18, 0.42);
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.faq-panel[open] summary::after {
  content: "⌃";
  background: rgba(23, 21, 18, 0.08);
  color: rgba(23, 21, 18, 0.58);
}

.faq-panel .faq-list {
  border-top: 1px solid rgba(23, 21, 18, 0.12);
}

.impressum-card {
  display: grid;
  gap: 28px;
}

.impressum-block p,
.impressum-contact a {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.035em;
  color: var(--text);
}

.impressum-name {
  font-weight: 500;
}

.impressum-divider {
  width: 100%;
  height: 1px;
  background: rgba(23, 21, 18, 0.12);
}

.impressum-contact {
  display: grid;
  gap: 16px;
}

.impressum-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  text-decoration: none;
}

.impressum-link:hover {
  color: var(--text);
}

.impressum-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
}

.impressum-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 680px) {
  .faq-panel summary {
    padding: 24px 60px 24px 0;
    font-size: 20px;
  }

  .faq-panel summary::after {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .impressum-block p,
  .impressum-contact a {
    font-size: 18px;
  }
}

/* Ablauf – an die restlichen Bereiche angepasst, ruhiger und kompakter */
#ablauf {
  background: var(--bg);
}

#ablauf .section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

#ablauf .eyebrow {
  color: var(--muted);
  letter-spacing: 0.08em;
  font-weight: 400;
}

#ablauf h2 {
  font-family: inherit;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 500;
  padding-bottom: 0;
}

#ablauf h2::after {
  display: none;
}

#ablauf .steps {
  gap: 18px;
  align-items: stretch;
}

#ablauf .step {
  min-height: 230px;
  padding: 26px;
  border-color: var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: none;
}

#ablauf .step-top {
  display: none;
}

#ablauf .step-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 0 36px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
}

#ablauf .step-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#ablauf .step h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 500;
}

#ablauf .step p {
  max-width: none;
  margin: 0;
  font-size: inherit;
  line-height: 1.5;
  color: var(--muted);
}

#ablauf .step:hover {
  border-color: rgba(23, 21, 18, 0.22);
  box-shadow: 0 22px 60px rgba(35, 29, 20, 0.09);
  transform: translateY(-3px);
}

@media (max-width: 920px) {
  #ablauf .steps {
    gap: 18px;
  }
}

@media (max-width: 680px) {
  #ablauf .steps {
    grid-template-columns: 1fr;
  }

  #ablauf .step {
    min-height: auto;
  }
}

.lang-switcher {
  position: relative;
  z-index: 20;
}

.lang-switcher summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  line-height: inherit;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}

.lang-switcher summary::-webkit-details-marker {
  display: none;
}

.lang-switcher summary:hover,
.lang-switcher[open] summary {
  color: var(--text);
}

.lang-current {
  letter-spacing: 0;
}

.lang-chevron {
  font-size: 12px;
  transform: translateY(-1px);
  opacity: 0.65;
}

.lang-switcher[open] .lang-chevron {
  transform: translateY(-1px) rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 146px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(248, 247, 242, 0.98);
  box-shadow: 0 18px 50px rgba(35, 29, 20, 0.11);
  backdrop-filter: blur(18px);
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-menu a span {
  width: 24px;
  font-size: 11px;
  color: inherit;
  opacity: 0.72;
}

.lang-menu a:hover,
.lang-menu a.is-active {
  background: rgba(23, 21, 18, 0.075);
  color: var(--text);
}

@media (max-width: 680px) {
  .site-nav .lang-switcher {
    padding: 13px 12px;
  }

  .site-nav .lang-switcher summary {
    width: 100%;
    justify-content: space-between;
  }

  .lang-menu {
    position: static;
    margin-top: 10px;
    box-shadow: none;
  }
}

