/* ============================================================
   rawe hermetics — Formular- und CTA-Ebene
   ------------------------------------------------------------
   Extrahiert aus assets/rh-convert.css (Stand 02.08.2026).
   Uebernommen wurden ausschliesslich Regeln, deren Selektoren
   eine .rh--Klasse tragen, plus der :root-Block mit den
   --rh--Custom-Properties.

   BEWUSST NICHT uebernommen (56 Regeln): Selektoren des alten
   Designs vor der Tailwind-Umstellung. Sie haetten auf diesem
   Stand Schaden angerichtet:
     .flex > *, .grid > *   -> jeder Tailwind-Flex-/Grid-Container
     .btn-primary, .btn-secondary-light, #hero h1, .footer-cta-bg h2,
     .pillar-card:hover, .testimonial-card, .impact-co2-*
                            -> im Inline-<style> jeder Seite definiert
     .floating-area-switch  -> display:none haette den Bereichswechsler
                               ausgeblendet statt ihn zu reparieren
     .fade-left/.fade-right -> greift in die bestehende Animation ein
     .custom-cursor, .scroll-progress, .whatsapp-fab
                            -> Elemente, die es hier nicht gibt

   Alle Klassen dieser Datei beginnen mit rh- und koennen daher
   nicht mit tailwind.css oder den rh-Farb-Utilities kollidieren.
   ============================================================ */

/* ============================================================
   rawe hermetics — Conversion-Layer
   Wird NACH dem seiteneigenen <style> geladen und ueberschreibt
   gezielt. Nutzt die bestehenden Bereichs-Variablen (--rh-blue*),
   damit Druckluft (blau) und Elektro (gelb) automatisch getrennt
   bleiben, ohne dass hier Farbwerte doppelt gepflegt werden.
   ============================================================ */
:root {
  --rh-shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.06), 0 2px 8px rgba(26, 26, 26, 0.04);
  --rh-shadow-md: 0 4px 12px rgba(26, 26, 26, 0.08), 0 12px 32px rgba(26, 26, 26, 0.06);
  --rh-shadow-lg: 0 8px 24px rgba(26, 26, 26, 0.10), 0 24px 64px rgba(26, 26, 26, 0.10);
  --rh-radius: 10px;
  --rh-radius-sm: 7px;
  --rh-bar-h: 64px;
  --rh-ease: cubic-bezier(0.16, 1, 0.3, 1);
}
/* Telefon-CTA — bewusst anders als der Formular-CTA, damit beide
   nebeneinander stehen koennen, ohne sich zu kannibalisieren. */
.rh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  padding: 17px 30px;
  min-height: 54px;
  border-radius: var(--rh-radius-sm);
  transition: all 0.2s var(--rh-ease);
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}
.rh-btn-phone {
  background: #ffffff;
  color: var(--rh-black);
  border-color: #ffffff;
}
.rh-btn-phone:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}
.rh-btn-phone-light {
  background: transparent;
  color: var(--rh-black);
  border-color: var(--rh-black);
}
.rh-btn-phone-light:hover {
  background: var(--rh-black);
  color: #ffffff;
  transform: translateY(-2px);
}
.rh-btn-wa {
  background: #25d366;
  color: #08351a;
  border-color: #25d366;
}
.rh-btn-wa:hover { background: #1fb855; border-color: #1fb855; transform: translateY(-2px); }
.rh-btn-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
  opacity: 0.85;
}
.rh-btn-ghost:hover { opacity: 1; }
/* CTA-Gruppe: Formular + Telefon nebeneinander, mobil untereinander */
.rh-cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}
.rh-cta-pair > * { flex: 1 1 240px; }
@media (max-width: 480px) {
.rh-cta-pair > * { flex: 1 1 100%; }
}
/* ============================================================
   3. REASSURANCE-ZEILE — direkt unter jedem CTA
   ============================================================ */
.rh-reassure {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 16px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14.5px;
  line-height: 1.4;
}
.rh-reassure span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0.9;
}
.rh-reassure span::before {
  content: '';
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--rh-blue);
  -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat, linear-gradient(#000, #000);
  mask-composite: exclude;
}
.rh-reassure.on-dark span { color: rgba(255, 255, 255, 0.82); }
.rh-reassure.on-dark span::before { background: var(--rh-blue-bright); }
.rh-reassure.on-light span { color: var(--rh-gray-text, #6b6b6a); }
/* ============================================================
   4. VERSPRECHEN-LEISTE (unter dem Hero)
   ============================================================ */
.rh-promise {
  background: var(--rh-blue);
  color: #fff;
}
/* Elektro-Gelb braucht dunkle Schrift, sonst unlesbar */
body[data-area="elektro"] .rh-promise { color: var(--rh-black); }
.rh-promise-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 30px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  text-align: center;
}
.rh-promise-inner > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.rh-promise-inner svg { width: 17px; height: 17px; flex: 0 0 auto; }
.rh-promise a { text-decoration: underline; text-underline-offset: 3px; }
/* ============================================================
   5. STICKY MOBILE-CTA-LEISTE
   Groesster Einzelhebel: die Telefonnummer war auf Mobil bisher
   ueberhaupt nicht sichtbar.
   ============================================================ */
.rh-mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--rh-black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.28);
  transform: translateY(110%);
  transition: transform 0.35s var(--rh-ease);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.rh-mobile-bar.is-visible { transform: translateY(0); }
.rh-mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: var(--rh-bar-h);
  padding: 9px 4px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  transition: background 0.2s;
}
.rh-mobile-bar a:last-child { border-right: none; }
.rh-mobile-bar a:active { background: rgba(255, 255, 255, 0.10); }
.rh-mobile-bar svg { width: 20px; height: 20px; }
.rh-mobile-bar .rh-mb-call { background: var(--rh-blue); }
body[data-area="elektro"] .rh-mobile-bar .rh-mb-call { color: var(--rh-black); }
.rh-mobile-bar .rh-mb-wa { color: #4ae08a; }
@media (max-width: 1023px) {
body.rh-has-bar { padding-bottom: calc(var(--rh-bar-h) + env(safe-area-inset-bottom, 0px)); }
}
@media (min-width: 1024px) {
.rh-mobile-bar { display: none; }
}
/* ============================================================
   6. WHATSAPP-FAB (Desktop)
   ============================================================ */
.rh-fab {
  position: fixed;
  right: 22px;
  bottom: 78px;
  z-index: 55;
  display: none;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 20px 0 17px;
  border-radius: 100px;
  background: #25d366;
  color: #08351a;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s var(--rh-ease), box-shadow 0.2s;
}
.rh-fab:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }
.rh-fab svg { width: 24px; height: 24px; }
@media (min-width: 1024px) {
.rh-fab { display: inline-flex; }
}
/* ============================================================
   7. FORMULAR
   ============================================================ */
.rh-form-card {
  background: #fff;
  border-radius: var(--rh-radius);
  box-shadow: var(--rh-shadow-lg);
  padding: 30px;
  text-align: left;
  color: var(--rh-charcoal);
  position: relative;
  overflow: hidden;
}
.rh-form-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rh-blue), var(--rh-blue-bright));
}
@media (min-width: 768px) {
.rh-form-card { padding: 38px; }
}
.rh-form-head { margin-bottom: 22px; }
.rh-form-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--rh-black);
  margin-bottom: 7px;
}
.rh-form-sub { font-size: 15px; line-height: 1.55; color: var(--rh-gray-text, #6b6b6a); }
/* Fortschritt */
.rh-steps-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}
.rh-steps-bar i {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: var(--rh-gray, #e5e5e5);
  transition: background 0.3s var(--rh-ease);
}
.rh-steps-bar i.is-done { background: var(--rh-blue); }
.rh-step-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rh-gray-text, #6b6b6a);
  margin-bottom: 9px;
  display: block;
}
.rh-step { display: none; }
.rh-step.is-active { display: block; animation: rh-step-in 0.32s var(--rh-ease); }
@keyframes rh-step-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
.rh-step-q {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  color: var(--rh-black);
  margin-bottom: 14px;
}
/* Auswahlkacheln — Schritt 1 verlangt keine Daten, nur einen Klick */
.rh-choices { display: grid; gap: 9px; }
@media (min-width: 560px) {
.rh-choices.cols-2 { grid-template-columns: 1fr 1fr; }
}
.rh-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 15px 16px;
  border: 2px solid var(--rh-gray, #e5e5e5);
  border-radius: var(--rh-radius-sm);
  background: #fff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--rh-charcoal);
  cursor: pointer;
  transition: all 0.18s var(--rh-ease);
  min-height: 54px;
}
.rh-choice:hover { border-color: var(--rh-blue); background: var(--rh-blue-pale); transform: translateX(3px); }
.rh-choice.is-picked { border-color: var(--rh-blue); background: var(--rh-blue-light); }
.rh-choice::before {
  content: '';
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 2px solid var(--rh-gray, #e5e5e5);
  transition: all 0.18s;
}
.rh-choice:hover::before, .rh-choice.is-picked::before {
  border-color: var(--rh-blue);
  box-shadow: inset 0 0 0 4px var(--rh-blue);
}
.rh-fields { display: grid; gap: 14px; }
@media (min-width: 560px) {
.rh-fields.cols-2 { grid-template-columns: 1fr 1fr; }
}
.rh-field { display: flex; flex-direction: column; gap: 6px; }
.rh-field.full { grid-column: 1 / -1; }
.rh-field label {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--rh-charcoal);
}
.rh-field label .opt { font-weight: 400; color: var(--rh-gray-text, #6b6b6a); }
.rh-field input,
.rh-field select,
.rh-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 2px solid var(--rh-gray, #e5e5e5);
  border-radius: var(--rh-radius-sm);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px; /* 16px verhindert Auto-Zoom auf iOS */
  color: var(--rh-charcoal);
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
  min-height: 52px;
}
.rh-field textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.rh-field input:focus,
.rh-field select:focus,
.rh-field textarea:focus {
  outline: none;
  border-color: var(--rh-blue);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--rh-blue) 18%, transparent);
}
.rh-field input[aria-invalid="true"],
.rh-field textarea[aria-invalid="true"] { border-color: #d92d20; }
.rh-field .rh-err { font-size: 13px; color: #d92d20; font-weight: 600; }
/* Honeypot — fuer Menschen unsichtbar, fuer Bots verlockend */
.rh-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.rh-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 4px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--rh-gray-text, #6b6b6a);
}
.rh-consent input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--rh-blue);
  cursor: pointer;
}
.rh-consent a { color: var(--rh-blue); text-decoration: underline; text-underline-offset: 2px; }
.rh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
.rh-submit {
  flex: 1 1 auto;
  background: var(--rh-blue);
  color: #fff;
  border: none;
  border-radius: var(--rh-radius-sm);
  padding: 17px 28px;
  min-height: 56px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s var(--rh-ease);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--rh-blue) 35%, transparent);
}
body[data-area="elektro"] .rh-submit { color: var(--rh-black); }
.rh-submit:hover { background: var(--rh-blue-dark); transform: translateY(-2px); box-shadow: 0 12px 26px color-mix(in srgb, var(--rh-blue) 40%, transparent); }
.rh-submit:disabled { opacity: 0.62; cursor: not-allowed; transform: none; }
.rh-back {
  background: none;
  border: none;
  color: var(--rh-gray-text, #6b6b6a);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  padding: 12px 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rh-back:hover { color: var(--rh-charcoal); }
.rh-form-foot {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--rh-gray, #e5e5e5);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13.5px;
  color: var(--rh-gray-text, #6b6b6a);
}
.rh-form-foot a { color: var(--rh-charcoal); font-weight: 700; }
.rh-form-foot a:hover { color: var(--rh-blue); }
.rh-status { margin-top: 14px; font-size: 14.5px; font-weight: 600; line-height: 1.5; }
.rh-status.err { color: #d92d20; }
/* Danke-Zustand */
.rh-done { text-align: center; padding: 14px 0; }
.rh-done-mark {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--rh-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rh-pop 0.45s var(--rh-ease);
}
.rh-done-mark svg { width: 30px; height: 30px; color: #fff; }
body[data-area="elektro"] .rh-done-mark svg { color: var(--rh-black); }
@keyframes rh-pop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.rh-done h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 23px;
  color: var(--rh-black);
  margin-bottom: 9px;
}
.rh-done p { font-size: 15.5px; line-height: 1.6; color: var(--rh-gray-text, #6b6b6a); margin-bottom: 20px; }
/* Noscript-Fallback */
.rh-noscript {
  background: var(--rh-blue-light);
  border: 1px solid var(--rh-blue);
  border-radius: var(--rh-radius-sm);
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--rh-charcoal);
}
.rh-noscript a { color: var(--rh-blue-dark); font-weight: 700; text-decoration: underline; }
/* ============================================================
   8. CTA-BAND (Zwischen-CTA mitten auf der Seite)
   ============================================================ */
.rh-band {
  background: var(--rh-black);
  color: #fff;
  border-radius: var(--rh-radius);
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
  overflow: hidden;
}
.rh-band::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  right: -110px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--rh-blue) 40%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.rh-band > * { position: relative; z-index: 1; }
.rh-band-text { flex: 1 1 320px; }
.rh-band-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rh-blue-bright);
  margin-bottom: 9px;
  display: block;
}
.rh-band h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.rh-band p { color: rgba(255, 255, 255, 0.75); font-size: 15.5px; line-height: 1.55; }
.rh-band-actions { flex: 0 1 auto; display: flex; flex-wrap: wrap; gap: 11px; }
@media (min-width: 768px) {
.rh-band { padding: 38px 42px; }
.rh-band h3 { font-size: 29px; }
}
/* ============================================================
   9. ABLAUF-SCHRITTE (ersetzt Bildmaterial durch echte Grafik)
   ============================================================ */
.rh-steps {
  display: grid;
  gap: 16px;
  counter-reset: rhstep;
}
@media (min-width: 768px) {
.rh-steps { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}
.rh-steps-item {
  position: relative;
  padding: 24px 20px 22px;
  background: #fff;
  border: 1px solid var(--rh-gray, #e5e5e5);
  border-radius: var(--rh-radius);
  transition: all 0.22s var(--rh-ease);
}
.rh-steps-item:hover { border-color: var(--rh-blue); transform: translateY(-3px); box-shadow: var(--rh-shadow-md); }
.rh-steps-item::before {
  counter-increment: rhstep;
  content: counter(rhstep, decimal-leading-zero);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--rh-blue);
  display: block;
  margin-bottom: 11px;
}
@media (min-width: 768px) {
.rh-steps-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    right: -13px;
    width: 14px;
    height: 2px;
    background: var(--rh-gray, #e5e5e5);
  }
}
.rh-steps-item h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  color: var(--rh-black);
  margin-bottom: 7px;
}
.rh-steps-item p { font-size: 14.5px; line-height: 1.55; color: var(--rh-gray-text, #6b6b6a); }
/* ============================================================
   10. OVERLAY (Exit-Intent + Rueckruf)
   ============================================================ */
.rh-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(15, 15, 15, 0.68);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s var(--rh-ease);
  overflow-y: auto;
}
.rh-overlay.is-open { opacity: 1; pointer-events: auto; }
.rh-overlay-box {
  width: 100%;
  max-width: 520px;
  margin: auto;
  transform: translateY(22px) scale(0.98);
  transition: transform 0.3s var(--rh-ease);
}
.rh-overlay.is-open .rh-overlay-box { transform: translateY(0) scale(1); }
.rh-overlay-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  color: var(--rh-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 2;
}
.rh-overlay-close:hover { background: rgba(0, 0, 0, 0.13); }
.rh-overlay-close svg { width: 17px; height: 17px; }
/* ============================================================
   11. KONTAKT-KANAELE (Kontaktseite)
   ============================================================ */
.rh-channels { display: grid; gap: 14px; }
@media (min-width: 640px) {
.rh-channels { grid-template-columns: 1fr 1fr; }
}
.rh-channel {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--rh-gray, #e5e5e5);
  border-radius: var(--rh-radius);
  transition: all 0.2s var(--rh-ease);
}
.rh-channel:hover { border-color: var(--rh-blue); transform: translateY(-3px); box-shadow: var(--rh-shadow-md); }
.rh-channel-ico {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: var(--rh-radius-sm);
  background: var(--rh-blue-light);
  color: var(--rh-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rh-channel-ico svg { width: 21px; height: 21px; }
.rh-channel-ico.wa { background: #e6f9ee; color: #12854a; }
.rh-channel dt {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--rh-black);
  margin-bottom: 3px;
}
.rh-channel dd { font-size: 15px; line-height: 1.5; color: var(--rh-gray-text, #6b6b6a); }
.rh-channel .big {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--rh-black);
  letter-spacing: -0.01em;
  display: block;
}
.rh-channel .big:hover { color: var(--rh-blue-dark); }
/* ============================================================
   12. HEADER — Telefon auch mobil, klarere CTA-Zone
   ============================================================ */
.rh-head-cta { display: inline-flex; align-items: center; gap: 9px; }
.rh-head-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border-radius: var(--rh-radius-sm);
  border: 2px solid var(--rh-gray, #e5e5e5);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--rh-black);
  transition: all 0.18s var(--rh-ease);
  white-space: nowrap;
}
.rh-head-phone:hover { border-color: var(--rh-blue); color: var(--rh-blue-dark); }
.rh-head-phone svg { width: 16px; height: 16px; }
@media (max-width: 1279px) {
.rh-head-cta .rh-head-phone { display: none; }
}
/* Topbar-Telefon: war "hidden md:flex" und damit mobil unsichtbar */
.rh-topbar-contact {
  display: flex !important;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
/* ============================================================
   14. UTILITIES
   ============================================================ */
.rh-hide { display: none !important; }
.rh-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.rh-anchor { scroll-margin-top: 110px; }
