/* ====== SUBPAGE COMPONENTS ====== */
.sub-hero {
  position: relative;
  padding: clamp(50px, 7vw, 96px) 0 clamp(48px, 7vw, 80px);
  overflow: hidden;
}
.sub-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 600px at 85% 10%, rgba(14,87,73,0.10), transparent 55%),
    radial-gradient(700px 400px at -10% 80%, rgba(208,74,44,0.05), transparent 60%);
  pointer-events: none;
}
.sub-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 65% at 30% 45%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 65% at 30% 45%, black 20%, transparent 75%);
  pointer-events: none;
}
.sub-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
  position: relative; z-index: 1;
}
@media (max-width: 980px) { .sub-hero-grid { grid-template-columns: 1fr; } }

.sub-hero-left { display: flex; flex-direction: column; justify-content: center; }

.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  transition: color .25s;
  align-self: flex-start;
}
.breadcrumb:hover { color: var(--bio); }
.breadcrumb .arr { transition: transform .3s var(--ease); }
.breadcrumb:hover .arr { transform: translateX(-3px); }

.sub-hero-title {
  font-weight: 600;
  font-size: clamp(42px, 6.5vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: clamp(22px, 3vw, 32px);
}
.sub-hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}
.sub-hero-title .reveal {
  display: inline-block;
  transform: translateY(110%);
  animation: reveal-up 1s var(--ease-out) forwards;
}
.sub-hero-title .line:nth-child(1) .reveal { animation-delay: .15s; }
.sub-hero-title .line:nth-child(2) .reveal { animation-delay: .28s; }
.sub-hero-title .accent {
  color: var(--bio);
}

.sub-hero-lead {
  max-width: 520px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
  color: var(--ink-mute);
  margin-bottom: clamp(28px, 3.5vw, 36px);
  opacity: 0;
  animation: fade-up 1s var(--ease-out) .9s forwards;
}
.sub-hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 1.05s forwards;
}

.sub-hero-visual {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  opacity: 0;
  animation: fade-up 1.1s var(--ease-out) .55s forwards;
}
@media (max-width: 980px) { .sub-hero-visual { min-height: 420px; } }
.sub-hero-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
  transform: scale(1.05);
  animation: slow-zoom 18s ease-in-out infinite alternate;
}
.sub-hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,9,0.10) 0%, rgba(10,10,9,0) 30%, rgba(10,10,9,0.45) 100%),
    linear-gradient(135deg, rgba(14,87,73,0.18), transparent 50%);
}

/* PROBLEM SECTION */
.problem-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  margin-bottom: clamp(60px, 7vw, 96px);
}
@media (max-width: 800px) { .problem-block { grid-template-columns: 1fr; } }
.problem-block h2 {
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.problem-block h2 .accent { color: var(--bio); }
.problem-block p {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 60ch;
}

/* PILLARS GRID */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
@media (max-width: 900px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: border-color .35s, transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pillar:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 25px 50px -28px rgba(10,10,9,0.18);
}
.pillar-num {
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  display: flex; justify-content: flex-end;
}
.pillar-num .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--bio);
  color: var(--paper);
  display: inline-grid; place-items: center;
  font-size: 10px;
}
.pillar h3 {
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.pillar p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.5;
}

/* LEISTUNGEN MINI GRID */
.leistungen-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.5vw, 20px);
}
@media (max-width: 700px) { .leistungen-mini { grid-template-columns: 1fr; } }

.lm-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: border-color .35s, transform .4s var(--ease), background .35s;
  position: relative;
  overflow: hidden;
}
.lm-card::before {
  content: ""; position: absolute; inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .55s var(--ease-out);
  z-index: 0;
}
.lm-card > * { position: relative; z-index: 1; transition: color .4s; }
.lm-card:hover::before { transform: translateY(0); }
.lm-card:hover { border-color: var(--ink); }
.lm-card:hover * { color: var(--cream); }
.lm-card:hover .lm-num { background: var(--bio-glow); color: var(--ink); border-color: var(--bio-glow); }
.lm-card:hover .lm-norm { color: var(--mute-2) !important; border-color: rgba(242,239,231,0.2) !important; }

.lm-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--cream);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  transition: background .35s, color .35s, border-color .35s;
}
.lm-body { flex: 1; min-width: 0; }
.lm-body h3 {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.lm-body p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.5;
  margin-bottom: 16px;
}
.lm-norm {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: 9px;
}
.lm-norm::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 50%;
}

/* FOCUS GRID */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.5vw, 22px);
}
@media (max-width: 900px) { .focus-grid { grid-template-columns: 1fr; } }

.focus-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .45s var(--ease);
}
.focus-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(14,87,73,0.4), transparent 60%);
  opacity: 0.7;
  transition: opacity .4s, transform .8s var(--ease);
}
.focus-card:hover { transform: translateY(-4px); }
.focus-card:hover::before { opacity: 1; transform: scale(1.2); }
.focus-card > * { position: relative; z-index: 1; }
.focus-card .fc-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.focus-card h3 {
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  margin-top: 32px;
}
.focus-card p {
  font-size: 14px;
  color: var(--mute-2);
  line-height: 1.5;
}

/* GUARANTEE SECTION */
.guarantees {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 6vw, 90px) 0;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) { .guarantee-grid { grid-template-columns: 1fr; } }
.guarantee {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  display: flex; gap: 18px; align-items: flex-start;
}
.guarantee:last-child { border-right: none; }
@media (max-width: 800px) {
  .guarantee { border-right: none; border-bottom: 1px solid var(--line); }
  .guarantee:last-child { border-bottom: none; }
}
.g-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bio);
  color: var(--cream);
  display: grid; place-items: center;
}
.g-icon svg { width: 18px; height: 18px; stroke-width: 2.4; }
.g-body h3 {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.g-body p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.5;
}

/* CONTACT CARD (Frau Petrovic) */
.contact-cta {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 130px) 0;
}
.contact-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 20% 30%, rgba(14,87,73,0.4), transparent 60%),
    radial-gradient(800px 500px at 100% 100%, rgba(208,74,44,0.18), transparent 65%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  position: relative;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-text h2 {
  font-weight: 600;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.contact-text h2 .accent { color: var(--bio-glow); }
.contact-text p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--mute-2);
  margin-bottom: 32px;
  max-width: 50ch;
  line-height: 1.55;
}

.contact-person {
  padding: 28px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  background: rgba(242,239,231,0.04);
  backdrop-filter: blur(12px);
}
.cp-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute-2);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.cp-label .live {
  width: 7px; height: 7px;
  background: var(--bio-glow);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}
.cp-name {
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.15;
}
.cp-role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--mute-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.cp-phone {
  display: block;
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 6px;
}
.cp-phone .accent { color: var(--bio-glow); }
.cp-hours {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mute-2);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-bright);
  margin-bottom: 22px;
}
.cp-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute-2);
  margin-top: 18px;
  display: flex; align-items: center; gap: 8px;
}
.cp-note::before {
  content: "✓";
  width: 16px; height: 16px;
  background: var(--bio);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 9px;
}

/* ====== AVATAR IN CONTACT CARD ====== */
.cp-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.cp-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  border: 1.5px solid var(--bio-glow);
  box-shadow: 0 0 0 4px rgba(43,202,166,0.08);
}
.cp-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cp-info { flex: 1; min-width: 0; }
.cp-header .cp-name {
  font-size: clamp(19px, 1.8vw, 24px);
  margin-bottom: 4px;
  line-height: 1.15;
}
.cp-header .cp-role {
  margin-bottom: 0;
}

/* ====== CONTACT PAGE COMPONENTS ====== */

/* CHANNEL GRID */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.5vw, 20px);
}
@media (max-width: 900px) { .channel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .channel-grid { grid-template-columns: 1fr; } }

.channel-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  transition: border-color .35s, transform .4s var(--ease), background .3s;
  display: block;
}
.channel-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  background: var(--cream);
}
.ch-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid; place-items: center;
  margin-bottom: 24px;
  transition: background .3s;
}
.channel-card:hover .ch-icon { background: var(--bio); }
.ch-icon svg { width: 18px; height: 18px; stroke-width: 2; }
.ch-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-bottom: 8px;
}
.ch-value {
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
}
.ch-note {
  font-size: 12.5px;
  color: var(--mute);
  margin-top: 8px;
  font-family: var(--font-mono);
  letter-spacing: 0;
}

/* CONTACT FORM SECTION */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
@media (max-width: 900px) { .contact-section-grid { grid-template-columns: 1fr; } }

.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 44px);
}
.contact-form-card h2 {
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.contact-form-card h2 .accent { color: var(--bio); }
.contact-form-card .form-sub {
  font-size: 14.5px;
  color: var(--mute);
  margin-bottom: 28px;
  line-height: 1.5;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; margin-bottom: 14px; }
.field label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-bottom: 7px;
}
.field label .req { color: var(--signal); margin-left: 3px; }
.field input,
.field textarea,
.field select {
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  letter-spacing: -0.015em;
  width: 100%;
  transition: border-color .25s, background .25s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--bio);
  background: #fff;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
  font-family: var(--font-sans);
}

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 22px 0 26px;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.5;
}
.checkbox-row input {
  width: 16px; height: 16px;
  accent-color: var(--bio);
  flex-shrink: 0;
  margin-top: 3px;
}
.checkbox-row a { color: var(--bio); text-decoration: underline; }

.btn-submit {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 16px 14px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.015em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-submit::before {
  content: ""; position: absolute; inset: 0;
  background: var(--bio);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn-submit > * { position: relative; z-index: 1; }
.btn-submit:hover::before { transform: translateY(0); }
.btn-submit .icon {
  width: 26px; height: 26px;
  background: var(--cream);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  color: var(--ink);
  transition: transform .4s var(--ease);
}
.btn-submit:hover .icon { transform: rotate(-45deg); }
.btn-submit .icon svg { width: 12px; height: 12px; }

/* LOCATION GRID */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}
@media (max-width: 800px) { .location-grid { grid-template-columns: 1fr; } }

.location-info {
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--line);
}
@media (max-width: 800px) {
  .location-info { border-right: none; border-bottom: 1px solid var(--line); }
}
.location-info .tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.location-info .tag::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--signal);
}
.location-info .addr {
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.location-info .addr-line {
  font-weight: 400;
  font-size: 15px;
  color: var(--mute);
  margin-top: 4px;
}
.location-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 24px;
  font-size: 13.5px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  margin-top: 22px;
}
.location-info dt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
}
.location-info dd {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.location-map {
  background: var(--ink);
  min-height: 380px;
  position: relative;
}
.location-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.7) contrast(1.03);
  position: absolute; inset: 0;
}

/* FAQ */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item {
  background: var(--paper);
  transition: background .25s;
}
.faq-item:hover { background: var(--cream); }
.faq-item details { padding: 26px 30px; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.022em;
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--mute);
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
  transition: all .3s var(--ease);
}
.faq-item details[open] summary::after {
  content: "−";
  color: var(--cream);
  background: var(--bio);
  border-color: var(--bio);
}
.faq-item details[open] summary { margin-bottom: 14px; }
.faq-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 72ch;
}

/* ====== CONTACT CARD LIGHT VARIANT (for paper/cream backgrounds) ====== */
.contact-person.light {
  background: var(--cream);
  border-color: var(--line);
  box-shadow: 0 24px 50px -30px rgba(10,10,9,0.12);
}
.contact-person.light .cp-label { color: var(--mute); }
.contact-person.light .cp-name { color: var(--ink); }
.contact-person.light .cp-role { color: var(--mute); }
.contact-person.light .cp-phone { color: var(--ink); }
.contact-person.light .cp-phone .accent { color: var(--bio); }
.contact-person.light .cp-hours {
  color: var(--mute);
  border-color: var(--line);
}
.contact-person.light .cp-note { color: var(--ink-mute); }

/* ====== LEGAL PAGES (Impressum / Datenschutz) ====== */
.legal-hero {
  background: var(--cream);
  padding: clamp(56px, 6vw, 100px) 0 clamp(40px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 400px at 80% 0%, rgba(14,87,73,0.07), transparent 60%);
  pointer-events: none;
}
.legal-hero-inner {
  position: relative; z-index: 1;
}
.legal-hero h1 {
  font-weight: 600;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin-bottom: 14px;
}
.legal-hero h1 .accent { color: var(--bio); }
.legal-hero .lead {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-mute);
  max-width: 60ch;
  line-height: 1.55;
}
.legal-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.legal-meta::before {
  content: ""; width: 24px; height: 1px; background: var(--signal);
}
.legal-warning {
  margin-top: 28px;
  padding: 14px 18px;
  background: rgba(208,74,44,0.07);
  border: 1px solid rgba(208,74,44,0.2);
  border-radius: 8px;
  font-size: 13px;
  color: var(--signal);
  font-family: var(--font-mono);
  letter-spacing: 0;
  line-height: 1.5;
  max-width: 70ch;
  display: flex; gap: 10px; align-items: flex-start;
}
.legal-warning::before {
  content: "⚠";
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.legal-section {
  padding: clamp(50px, 6vw, 90px) 0;
}
.legal-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 900px) {
  .legal-grid { grid-template-columns: 1fr; }
}

.legal-toc {
  position: sticky;
  top: 110px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0;
}
.legal-toc h4 {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.legal-toc ul {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 6px;
}
.legal-toc a {
  color: var(--ink-mute);
  display: flex; gap: 10px;
  padding: 4px 0;
  transition: color .25s, transform .25s var(--ease);
  line-height: 1.4;
}
.legal-toc a:hover {
  color: var(--bio);
  transform: translateX(3px);
}
.legal-toc a .n {
  color: var(--mute-2);
  flex-shrink: 0;
  min-width: 22px;
}
@media (max-width: 900px) {
  .legal-toc {
    position: static; padding-bottom: 28px; margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }
}

.legal-content {
  max-width: 72ch;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-mute);
}
.legal-content h2 {
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
  margin-top: 60px;
  margin-bottom: 18px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.legal-content h2:first-of-type {
  margin-top: 0; padding-top: 0; border-top: 0;
}
.legal-content h2 .n {
  font-family: var(--font-mono);
  font-size: 0.5em;
  color: var(--mute);
  font-weight: 400;
  margin-right: 14px;
  vertical-align: 0.3em;
  letter-spacing: 0;
}
.legal-content h3 {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-content p {
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.legal-content li {
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--bio);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s;
}
.legal-content a:hover { color: var(--ink); }
.legal-content strong { color: var(--ink); font-weight: 600; }

.data-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
  margin: 22px 0;
  font-size: 14.5px;
  font-family: var(--font-mono);
  letter-spacing: 0;
}
.data-block p { margin-bottom: 4px; line-height: 1.55; }
.data-block p:last-child { margin-bottom: 0; }
.data-block .lbl {
  display: inline-block;
  width: 100px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
}

/* ====== FAQ PAGE ====== */
.faq-hero {
  background: var(--cream);
  padding: clamp(60px, 7vw, 110px) 0 clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.faq-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 400px at 85% 0%, rgba(14,87,73,0.08), transparent 60%),
    radial-gradient(600px 300px at -10% 100%, rgba(208,74,44,0.04), transparent 60%);
  pointer-events: none;
}
.faq-hero-inner { position: relative; z-index: 1; }
.faq-hero h1 {
  font-weight: 600;
  font-size: clamp(46px, 7vw, 100px);
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin-bottom: 18px;
}
.faq-hero h1 .accent { color: var(--bio); }
.faq-hero .lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-mute);
  max-width: 60ch;
  line-height: 1.55;
}
.faq-stats {
  display: flex; gap: 24px; margin-top: 26px;
  flex-wrap: wrap;
}
.faq-stat {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
  display: inline-flex; align-items: center; gap: 8px;
}
.faq-stat .num {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: -0.025em;
  text-transform: none;
}

.faq-cat-section {
  scroll-margin-top: 100px;
  margin-bottom: 36px;
}
.faq-cat-title {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.faq-cat-title .count {
  background: var(--ink);
  color: var(--cream);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
}

/* ====== SUB-HERO als BANNER (wie Startseite) ====== */
.sub-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  padding: clamp(80px, 9vw, 130px) 0 clamp(60px, 7vw, 100px);
  background: var(--ink);
}
.sub-hero::before, .sub-hero::after { content: none; }
.sub-hero .hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.sub-hero .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85);
  transform: scale(1.05);
  animation: hero-zoom 24s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.1); }
}
.sub-hero .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,9,0.55) 0%, rgba(10,10,9,0.80) 100%),
    radial-gradient(900px 500px at 25% 50%, rgba(14,87,73,0.25), transparent 60%);
}
.sub-hero .container {
  position: relative; z-index: 2;
  max-width: 1100px;
}

.sub-hero .breadcrumb {
  color: rgba(242,239,231,0.7) !important;
}
.sub-hero .breadcrumb:hover {
  color: var(--bio-glow) !important;
}

.sub-hero .eyebrow {
  background: rgba(242,239,231,0.10) !important;
  border-color: rgba(242,239,231,0.20) !important;
  color: var(--cream) !important;
  backdrop-filter: blur(10px);
}
.sub-hero .eyebrow .eb-dot { background: var(--bio-glow); }

.sub-hero-title {
  color: var(--cream);
}
.sub-hero-title .accent { color: var(--bio-glow); }
.sub-hero-lead {
  color: rgba(242,239,231,0.85);
}

/* Buttons on dark sub-hero */
.sub-hero .btn-on-dark.btn-primary {
  background: var(--cream);
  color: var(--ink);
}
.sub-hero .btn-on-dark.btn-primary::before { background: var(--bio-glow); }
.sub-hero .btn-on-dark.btn-primary:hover { color: var(--ink); }
.sub-hero .btn-on-dark.btn-primary .icon {
  background: var(--ink);
  color: var(--cream);
}
.sub-hero .btn-on-dark.btn-ghost {
  border: 1px solid rgba(242,239,231,0.4);
  color: var(--cream);
  background: rgba(242,239,231,0.04);
  backdrop-filter: blur(6px);
}
.sub-hero .btn-on-dark.btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* Override old 2-col layout */
.sub-hero-grid { display: block !important; }
.sub-hero-visual { display: none !important; }
.sub-hero-left { display: block !important; }

/* ====== GUARANTEES REDESIGN (2-Spalten-Layout) ====== */
.guarantees-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .guarantees-grid { grid-template-columns: 1fr; gap: 32px; }
}
.guarantees-side {
  position: sticky;
  top: 110px;
}
@media (max-width: 900px) { .guarantees-side { position: static; } }
.guarantees-side .section-tag { margin-bottom: 22px; }
.guarantees-side h2 {
  font-weight: 600;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.guarantees-side h2 .accent { color: var(--bio); }
.guarantees-side p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 42ch;
}

.guarantees-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.g-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: border-color .3s, transform .4s var(--ease), background .3s;
}
.g-item:hover {
  border-color: var(--ink);
  transform: translateX(4px);
  background: #fff;
}
.g-item .g-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bio);
  color: var(--cream);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .4s var(--ease);
}
.g-item:hover .g-icon { transform: scale(1.08) rotate(-4deg); }
.g-item .g-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}
.g-item .g-body h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin-bottom: 6px;
  line-height: 1.25;
}
.g-item .g-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--mute);
}

/* ====== NEW SUBPAGE COMPONENTS FOR LIVE CONTENT ====== */

/* CHECK-LIST (Wann sind Betreiber prüfpflichtig?) */
.check-list-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding: clamp(56px, 6vw, 88px) 0;
}
@media (max-width: 900px) { .check-list-block { grid-template-columns: 1fr; gap: 28px; } }
.check-list-block .check-side h2 {
  font-weight: 600;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.check-list-block .check-side h2 .accent { color: var(--bio); }
.check-list-block .check-side p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--mute);
  max-width: 40ch;
}
.check-list ul {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
}
.check-list li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-mute);
  transition: border-color .3s, background .3s, transform .35s var(--ease);
}
.check-list li:hover {
  border-color: var(--ink);
  background: var(--cream);
  transform: translateX(4px);
}
.check-list li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bio);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F2EFE7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* SERVICES GRID (6 cards, neu) */
.services-six-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.5vw, 22px);
}
@media (max-width: 900px) { .services-six-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-six-grid { grid-template-columns: 1fr; } }
.s6-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color .3s, transform .4s var(--ease), background .3s;
}
.s6-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  background: var(--cream);
}
.s6-card .s6-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--bio);
  color: var(--cream);
  display: grid; place-items: center;
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.s6-card h3 {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.022em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.s6-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mute);
}

/* STEPS (Ablauf in 4 Schritten) */
.steps-section { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  position: relative;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: border-color .3s, transform .4s var(--ease);
}
.step-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.step-num {
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.04em;
  color: var(--bio);
  line-height: 1;
  margin-bottom: 22px;
  display: flex; align-items: baseline; gap: 8px;
}
.step-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.step-card h3 {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.022em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mute);
}
.steps-after {
  margin-top: 36px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--ink-mute);
  font-style: italic;
  text-align: center;
  background: var(--cream);
}

/* NORM CARDS (Normen & rechtliche Grundlagen) */
.norms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  margin-bottom: 32px;
}
@media (max-width: 800px) { .norms-grid { grid-template-columns: 1fr; } }
.norm-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color .3s, transform .4s var(--ease);
}
.norm-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.norm-card .norm-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bio);
  color: var(--cream);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.norm-card h3 {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.022em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.norm-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mute);
}
.norm-impact {
  padding: 24px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--signal);
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mute);
}
.norm-impact strong { color: var(--ink); font-weight: 600; }

/* BENEFITS LIST (Das erhalten Sie von uns) */
.benefits-section { background: var(--ink); color: var(--cream); padding: clamp(70px, 9vw, 130px) 0; position: relative; overflow: hidden; }
.benefits-section::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 20% 30%, rgba(14,87,73,0.4), transparent 60%),
    radial-gradient(800px 500px at 100% 100%, rgba(43,202,166,0.10), transparent 65%);
  pointer-events: none;
}
.benefits-section .section-tag { color: var(--mute-2); }
.benefits-section .section-tag::before { background: var(--bio-glow); }
.benefits-section .section-title { color: var(--cream); }
.benefits-section .section-title .accent { color: var(--bio-glow); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-bright);
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
@media (max-width: 1100px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
  background: var(--ink);
  padding: 28px 24px;
  transition: background .3s;
}
.benefit-card:hover { background: var(--ink-soft); }
.benefit-card .b-num {
  font-weight: 600;
  font-size: 14px;
  color: var(--bio-glow);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.022em;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--cream);
}
.benefit-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mute-2);
}
.benefits-after {
  margin-top: 32px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(242,239,231,0.85);
  line-height: 1.55;
  max-width: 60ch;
}

/* BRANCHES GRID */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
@media (max-width: 900px) { .branches-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .branches-grid { grid-template-columns: 1fr; } }
.branche-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color .3s, transform .4s var(--ease), background .3s;
}
.branche-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  background: var(--cream);
}
.branche-card h3 {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.022em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.branche-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mute);
}

/* ====== ICON CARD COMPONENTS (Validierung & co) ====== */

/* Major-Cards: 2 großformatige Karten nebeneinander (z.B. Maschinell vs Manuell) */
.major-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 1.8vw, 24px);
}
@media (max-width: 800px) { .major-grid { grid-template-columns: 1fr; } }

.major-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
  transition: border-color .3s, transform .4s var(--ease);
}
.major-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}
.major-card .m-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bio);
  color: var(--cream);
  display: grid; place-items: center;
  margin-bottom: 24px;
  transition: transform .4s var(--ease);
}
.major-card:hover .m-icon { transform: rotate(-6deg) scale(1.05); }
.major-card .m-icon svg { width: 28px; height: 28px; stroke-width: 1.8; }
.major-card h3 {
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.major-card .m-sub {
  font-size: 14.5px;
  color: var(--mute);
  margin-bottom: 24px;
  line-height: 1.55;
}
.major-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.major-card li {
  font-size: 14.5px;
  color: var(--ink-mute);
  line-height: 1.55;
  padding: 8px 0 8px 26px;
  position: relative;
}
.major-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 14px; height: 2px;
  background: var(--bio);
}

/* Reason-Cards (Warum ist X Pflicht?) — 3 Karten mit Icon + Text */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
@media (max-width: 900px) { .reason-grid { grid-template-columns: 1fr; } }

.reason-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color .3s, transform .4s var(--ease), background .3s;
}
.reason-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  background: var(--cream);
}
.reason-card .r-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--signal);
  color: var(--cream);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.reason-card .r-icon svg { width: 20px; height: 20px; stroke-width: 2.2; }
.reason-card h3 {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.022em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.reason-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mute);
}

/* Stage-Cards (IQ/OQ/PQ) — 3 nebeneinander, schmal */
.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  margin-top: 28px;
}
@media (max-width: 800px) { .stage-grid { grid-template-columns: 1fr; } }
.stage-card {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .3s;
}
.stage-card:last-child { border-right: none; }
@media (max-width: 800px) {
  .stage-card { border-right: none; border-bottom: 1px solid var(--line); }
  .stage-card:last-child { border-bottom: none; }
}
.stage-card:hover { background: var(--cream); }
.stage-card .stage-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 5px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.stage-card h3 {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.022em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.stage-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mute);
}

/* Branche-Cards mit Icons */
.branche-card.with-icon { display: flex; flex-direction: column; }
.branche-card .b-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bio);
  color: var(--cream);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.branche-card .b-icon svg { width: 20px; height: 20px; stroke-width: 2; }

/* Advantages — 6 Karten mit Icons */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
@media (max-width: 900px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .adv-grid { grid-template-columns: 1fr; } }
.adv-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color .3s, transform .4s var(--ease), background .3s;
}
.adv-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  background: var(--cream);
}
.adv-card .a-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bio);
  color: var(--cream);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: background .3s, transform .4s var(--ease);
}
.adv-card:hover .a-icon { background: var(--ink); transform: rotate(-4deg); }
.adv-card .a-icon svg { width: 18px; height: 18px; stroke-width: 2.2; }
.adv-card h3 {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.022em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.adv-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mute);
}
