/* ==========================================================================
   RAUMFREI HOMEPAGE
   Mobile-first · No animations · WCAG AA
   ========================================================================== */

.hp {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: var(--rf-text);
  text-align: left;
}

.hp *, .hp *::before, .hp *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hp a { text-decoration: none; color: inherit; }
.hp img { display: block; max-width: 100%; height: auto; }

/* ── Buttons ── */

.hp__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.01em;
  padding: 16px 28px 16px 32px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: background .15s, box-shadow .15s;
}

.hp__btn--primary {
  background: var(--rf-primary);
  color: var(--rf-white) !important;
  font-weight: 700;
}

.hp__btn--primary:hover {
  background: var(--rf-primary-hover);
  box-shadow: 0 6px 28px rgba(45, 95, 138, .3);
}

.hp__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

/* Invertierter Button (weiß auf dunkel) */
.hp__btn--invert {
  background: var(--rf-white) !important;
  color: var(--rf-dark) !important;
}

.hp__btn--invert:hover {
  box-shadow: 0 6px 28px rgba(255, 255, 255, .15);
}

/* FAQ weiß (override für Unterseiten) */
.hp-faq--white {
  background: var(--rf-white) !important;
}


/* ==========================================================================
   HERO — Bild im H1 integriert
   ========================================================================== */

.hp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hp-hero__ov {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 15, 28, .65);
}

.hp-hero__c {
  position: relative;
  z-index: 2;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

.hp-hero h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.05em;
  color: var(--rf-white);
  text-wrap: balance;
}

/* Breadcrumb */
.hp-bc {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px;
}

.hp-bc a {
  color: rgba(255, 255, 255, .35);
  transition: color .15s;
}

.hp-bc a:hover {
  color: rgba(255, 255, 255, .6);
}

.hp-bc span {
  margin: 0 6px;
  color: rgba(255, 255, 255, .2);
}

/* Short hero (Unterseiten ohne Foto) */
.hp-hero--short {
  background: var(--rf-dark);
  min-height: auto;
  padding: 80px 24px clamp(48px, 6vw, 64px);
}

.hp-hero--short h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

.hp-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--rf-accent), var(--rf-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-hero__p {
  margin: 28px auto 0;
  font-size: clamp(1rem, 2vw, 1.1875rem);
  font-weight: 400;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  max-width: 480px;
}




/* ==========================================================================
   LEISTUNGEN (weiß)
   ========================================================================== */

.hp-srv {
  padding: clamp(80px, 14vw, 160px) 24px;
}

.hp-srv__c {
  max-width: 900px;
  margin: 0 auto;
}

.hp-srv__h {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--rf-dark);
  margin-bottom: clamp(32px, 5vw, 52px);
  text-wrap: balance;
}

.hp-srv__list {
  display: flex;
  flex-direction: column;
}

.hp-srv__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 28px) 0;
  gap: 20px;
  border-bottom: 1px solid var(--rf-border);
}

.hp-srv__card:first-child {
  border-top: 1px solid var(--rf-border);
}

.hp-srv__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.hp-srv__name {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--rf-dark);
  transition: color .15s;
}

.hp-srv__card:hover .hp-srv__name {
  color: var(--rf-primary);
}

.hp-srv__desc {
  font-size: .8125rem;
  color: var(--rf-text-light);
  line-height: 1.4;
}

.hp-srv__card::after {
  content: '\2192';
  font-size: 1.125rem;
  color: var(--rf-border-dim);
  flex-shrink: 0;
  transition: color .15s;
}

.hp-srv__card:hover::after {
  color: var(--rf-primary);
}

/* ==========================================================================
   LEGAL (Rechtsseiten)
   ========================================================================== */

.hp-legal {
  padding: clamp(60px, 10vw, 100px) 24px clamp(80px, 14vw, 160px);
}

.hp-legal__c {
  max-width: 680px;
  margin: 0 auto;
}

.hp-legal__c h2 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--rf-dark);
  margin: 36px 0 12px;
}

.hp-legal__c h2:first-child {
  margin-top: 0;
}

.hp-legal__c h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rf-dark);
  margin: 28px 0 8px;
}

.hp-legal__c p {
  font-size: .875rem;
  color: var(--rf-text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}

.hp-legal__c ul, .hp-legal__c ol {
  font-size: .875rem;
  color: var(--rf-text-secondary);
  line-height: 1.75;
  margin: 0 0 12px 20px;
}

.hp-legal__c a {
  color: var(--rf-primary);
  font-weight: 500;
}

.hp-legal__c a:hover {
  text-decoration: underline;
}

.hp-legal__c strong {
  color: var(--rf-dark);
  font-weight: 600;
}

.hp-legal__stand {
  margin-top: 40px;
  font-size: .75rem;
  color: var(--rf-text-light);
}

.hp-legal__c table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: .8125rem;
}

.hp-legal__c th {
  text-align: left;
  font-weight: 700;
  color: var(--rf-dark);
  padding: 10px 12px;
  border-bottom: 2px solid var(--rf-border);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.hp-legal__c td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--rf-surface-alt);
  color: var(--rf-text-secondary);
  vertical-align: top;
}

.hp-legal__c code {
  font-size: .75rem;
  color: var(--rf-dark);
  background: var(--rf-surface-alt);
  padding: 2px 6px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .hp-legal__c table {
    font-size: .75rem;
  }

  .hp-legal__c th,
  .hp-legal__c td {
    padding: 8px 8px;
  }
}

/* ==========================================================================
   MAP SECTION (Kontakt-Seite)
   ========================================================================== */

.hp-map {
  padding: clamp(80px, 14vw, 160px) 24px;
  background: var(--rf-surface);
}

.hp-map__c {
  max-width: 680px;
  margin: 0 auto;
}

.hp-map__h {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--rf-dark);
  margin-bottom: 10px;
  text-wrap: balance;
}

.hp-map__p {
  font-size: .875rem;
  color: var(--rf-text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hp-map__frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rf-border);
}

/* ==========================================================================
   WIZARD OVERRIDES (Angebot-Seite)
   ========================================================================== */

.hp .rf {
  padding: clamp(32px, 6vw, 64px) 20px clamp(64px, 10vw, 120px);
  background: var(--rf-surface);
}

.hp .rf .rf-wizard {
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
}

.hp .rf .rf-wizard__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Progress bar */
.hp .rf .rf-prog {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.hp .rf .rf-prog__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rf-white);
  border: 1.5px solid var(--rf-border);
  color: var(--rf-text-light);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp .rf .rf-prog__dot.is-active {
  background: var(--rf-primary);
  border-color: var(--rf-primary);
  color: var(--rf-white);
}

.hp .rf .rf-prog__dot.is-done {
  background: var(--rf-primary);
  border-color: var(--rf-primary);
  color: var(--rf-white);
}

.hp .rf .rf-prog__line {
  width: 32px;
  height: 2px;
  background: var(--rf-border);
  border-radius: 1px;
}

.hp .rf .rf-prog__line.is-done {
  background: var(--rf-primary);
}

/* Card */
.hp .rf .rf-card {
  max-width: 680px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid var(--rf-border);
  background: var(--rf-white);
  box-shadow: 0 4px 24px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .02);
  overflow: hidden;
}

.hp .rf .rf-card__inner {
  padding: clamp(24px, 4vw, 40px);
}

/* Section headings inside wizard */
.hp .rf h2,
.hp .rf .rf-card h2,
.hp .rf .rf-card__title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--rf-dark);
  margin-bottom: 6px;
}

.hp .rf .rf-card__sub,
.hp .rf .rf-card p.sub {
  font-size: .875rem;
  color: var(--rf-text-secondary);
  margin-bottom: clamp(20px, 3vw, 28px);
  line-height: 1.5;
}

/* Quick services (Step 1) */
.hp .rf .rf-quick-services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: clamp(16px, 2vw, 24px);
}

.hp .rf .rf-quick-svc {
  border-radius: 14px;
  border: 1.5px solid var(--rf-border);
  padding: 18px 10px;
  text-align: center;
  cursor: pointer;
  background: var(--rf-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 96px;
}

.hp .rf .rf-quick-svc:hover {
  border-color: var(--rf-primary);
  background: rgba(45, 95, 138, .03);
}

.hp .rf .rf-quick-svc.is-active {
  border-color: var(--rf-primary);
  background: rgba(45, 95, 138, .06);
}

.hp .rf .rf-quick-svc__ico {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.hp .rf .rf-quick-svc__ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--rf-text-light);
}

.hp .rf .rf-quick-svc:hover .rf-quick-svc__ico svg,
.hp .rf .rf-quick-svc.is-active .rf-quick-svc__ico svg {
  stroke: var(--rf-primary);
}

.hp .rf .rf-quick-svc__label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--rf-text);
  letter-spacing: -.005em;
}

.hp .rf .rf-quick-svc.is-active .rf-quick-svc__label {
  color: var(--rf-primary);
}

/* Form fields */
.hp .rf .rf-field,
.hp .rf .rf-fields > div,
.hp .rf .rf-grid > div {
  margin-bottom: 16px;
}

.hp .rf .rf-lbl,
.hp .rf label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--rf-dark);
  margin-bottom: 6px;
  letter-spacing: -.005em;
}

.hp .rf .rf-lbl b,
.hp .rf label b {
  color: var(--rf-primary);
  font-weight: 700;
  margin-left: 2px;
}

.hp .rf .rf-inp,
.hp .rf .rf-sel,
.hp .rf .rf-ta,
.hp .rf input[type="text"],
.hp .rf input[type="email"],
.hp .rf input[type="tel"],
.hp .rf input[type="number"],
.hp .rf select,
.hp .rf textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: .9375rem;
  font-family: inherit;
  color: var(--rf-dark);
  background: var(--rf-white);
  border: 1.5px solid var(--rf-border);
  border-radius: 10px;
  -webkit-appearance: none;
  appearance: none;
}

.hp .rf .rf-inp:focus,
.hp .rf .rf-sel:focus,
.hp .rf .rf-ta:focus,
.hp .rf input:focus,
.hp .rf select:focus,
.hp .rf textarea:focus {
  outline: none;
  border-color: var(--rf-primary);
}

.hp .rf .rf-sel,
.hp .rf select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.hp .rf .rf-ta,
.hp .rf textarea {
  min-height: 90px;
  resize: vertical;
  line-height: 1.5;
}

.hp .rf .rf-inp.has-error,
.hp .rf .rf-sel.has-error,
.hp .rf .rf-ta.has-error {
  border-color: var(--rf-error, #ef4444);
}

/* 2-column grid for paired fields */
.hp .rf .rf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 520px) {
  .hp .rf .rf-grid {
    grid-template-columns: 1fr;
  }
}

/* Checkboxes / radios */
.hp .rf .rf-chks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hp .rf .rf-chk {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--rf-border);
  border-radius: 10px;
  background: var(--rf-white);
  cursor: pointer;
  font-size: .875rem;
  color: var(--rf-text);
}

.hp .rf .rf-chk:hover {
  border-color: var(--rf-primary);
}

.hp .rf .rf-chk input {
  margin: 0;
  accent-color: var(--rf-primary);
}

.hp .rf .rf-chk:has(input:checked) {
  border-color: var(--rf-primary);
  background: rgba(45, 95, 138, .04);
}

/* Upload dropzone */
.hp .rf .rf-upload {
  border: 1.5px dashed var(--rf-border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  background: var(--rf-surface);
  cursor: pointer;
}

.hp .rf .rf-upload:hover {
  border-color: var(--rf-primary);
  background: rgba(45, 95, 138, .03);
}

.hp .rf .rf-upload__ico {
  margin-bottom: 8px;
  color: var(--rf-text-light);
}

.hp .rf .rf-upload__text {
  font-size: .875rem;
  color: var(--rf-text);
  font-weight: 500;
}

.hp .rf .rf-upload__hint {
  font-size: .75rem;
  color: var(--rf-text-light);
  margin-top: 4px;
}

/* Wizard navigation (buttons) */
.hp .rf .rf-wizard__nav,
.hp .rf .rf-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 32px);
  padding: 0;
}

.hp .rf .rf-wizard__nav.right,
.hp .rf .rf-nav--right {
  justify-content: flex-end;
}

.hp .rf .rf-b,
.hp .rf button[type="submit"],
.hp .rf .rf-b--fill,
.hp .rf .rf-b--next,
.hp .rf .rf-b--back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 26px;
  font-size: .875rem;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: -.01em;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  min-height: 44px;
}

.hp .rf .rf-b--fill,
.hp .rf .rf-b--next,
.hp .rf button[type="submit"] {
  background: var(--rf-primary);
  color: var(--rf-white);
}

.hp .rf .rf-b--fill:hover,
.hp .rf .rf-b--next:hover,
.hp .rf button[type="submit"]:hover {
  background: var(--rf-primary-hover);
}

.hp .rf .rf-b--back,
.hp .rf .rf-b--ghost {
  background: transparent;
  color: var(--rf-text);
  border: 1.5px solid var(--rf-border);
}

.hp .rf .rf-b--back:hover,
.hp .rf .rf-b--ghost:hover {
  border-color: var(--rf-primary);
  color: var(--rf-primary);
}

/* Error messages — hidden by default, JS toggles .is-vis */
.hp .rf .rf-err,
.hp .rf .rf-error-message {
  display: none;
}

.hp .rf .rf-err.is-vis,
.hp .rf .rf-error-message.is-vis {
  display: block;
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .25);
  color: #b91c1c;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .8125rem;
  font-weight: 500;
  margin-top: 12px;
}

/* Success/OK panel (Step 4) */
.hp .rf .rf-panel.rf-ok,
.hp .rf #ok {
  text-align: center;
  padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 24px);
}

.hp .rf #ok h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--rf-dark);
  margin-bottom: 8px;
}

.hp .rf #ok p {
  font-size: .9375rem;
  color: var(--rf-text-secondary);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

/* Summary (Step 3) */
.hp .rf .rf-sum,
.hp .rf #sum {
  background: var(--rf-surface);
  border: 1px solid var(--rf-border);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
  font-size: .8125rem;
  color: var(--rf-text);
  line-height: 1.6;
}

.hp .rf .rf-sum strong {
  color: var(--rf-dark);
  font-weight: 600;
}

/* Selection badge (selected service chip) */
.hp .rf .rf-selbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(45, 95, 138, .08);
  color: var(--rf-primary);
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hp .rf .rf-selbadge button {
  background: transparent;
  border: none;
  color: var(--rf-primary);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  opacity: .6;
}

.hp .rf .rf-selbadge button:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .hp .rf .rf-quick-services {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding: 0 4px 4px;
    margin: 24px -4px 0;
  }
  .hp .rf .rf-quick-services::-webkit-scrollbar { display: none; }
  .hp .rf .rf-quick-svc {
    flex: 0 0 110px;
    scroll-snap-align: start;
  }
}

/* ==========================================================================
   FORM SECTION (Kontakt-Seite)
   ========================================================================== */

.hp-form-sect {
  padding: clamp(40px, 6vw, 60px) 24px clamp(80px, 14vw, 160px);
  background: var(--rf-white);
}

.hp-form-sect__c {
  max-width: 680px;
  margin: 0 auto;
}

.hp-form-sect__h {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--rf-dark);
  margin-bottom: 12px;
  text-wrap: balance;
}

.hp-form-sect__p {
  font-size: .875rem;
  color: var(--rf-text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ==========================================================================
   CONTACT CARDS (Kontakt-Seite)
   ========================================================================== */

.hp-contact {
  padding: clamp(60px, 10vw, 100px) 24px clamp(40px, 6vw, 60px);
}

.hp-contact__c {
  max-width: 680px;
  margin: 0 auto;
}

.hp-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hp-contact__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(18px, 3vw, 24px) clamp(18px, 3vw, 24px);
  border-radius: 14px;
  background: var(--rf-surface);
  border: 1px solid var(--rf-surface-alt);
  transition: background .15s, border-color .15s;
}

.hp-contact__card:hover {
  background: var(--rf-surface-alt);
  border-color: var(--rf-border);
}

.hp-contact__card svg {
  flex-shrink: 0;
}

.hp-contact__card-h {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rf-dark);
}

.hp-contact__card-p {
  font-size: .75rem;
  color: var(--rf-text-light);
  margin-top: 2px;
}

@media (min-width: 640px) {
  .hp-contact__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hp-contact__card {
    flex-direction: column;
    text-align: center;
    padding: clamp(24px, 4vw, 32px);
  }
}

/* ==========================================================================
   LEISTUNGEN DETAIL (Leistungen-Seite)
   ========================================================================== */

.hp-detail {
  padding: clamp(80px, 14vw, 160px) 24px;
}

.hp-detail__c {
  max-width: 720px;
  margin: 0 auto;
}

.hp-detail__item {
  padding: clamp(48px, 7vw, 72px) 0;
  border-bottom: 1px solid var(--rf-border);
}

.hp-detail__item:first-child {
  padding-top: 0;
}

.hp-detail__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hp-detail__num {
  font-size: .875rem;
  font-weight: 800;
  color: var(--rf-border-light);
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.hp-detail__h {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--rf-dark);
  margin-bottom: 12px;
  text-wrap: balance;
}

.hp-detail__lead {
  font-size: clamp(.9375rem, 1.5vw, 1.0625rem);
  font-weight: 500;
  color: var(--rf-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.hp-detail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.hp-detail__list li {
  font-size: .8125rem;
  color: var(--rf-text-secondary);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.hp-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rf-border-light);
}

.hp-detail__links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hp-detail__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--rf-primary);
}

.hp-detail__link::after {
  content: '\2192';
  transition: margin-left .15s;
}

.hp-detail__link:hover::after {
  margin-left: 3px;
}

.hp-detail__link--muted {
  color: var(--rf-text-light);
}

.hp-detail__link--muted:hover {
  color: var(--rf-primary);
}

/* ==========================================================================
   TEXT SECTION (Über uns etc.)
   ========================================================================== */

.hp-text {
  padding: clamp(48px, 8vw, 80px) 24px clamp(32px, 5vw, 48px);
  background: var(--rf-surface);
}

.hp-text--white {
  background: var(--rf-white);
}

.hp-text__c {
  max-width: 640px;
  margin: 0 auto;
}

.hp-text__h {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--rf-dark);
  margin-bottom: clamp(20px, 3vw, 28px);
  text-wrap: balance;
}

.hp-text p {
  font-size: clamp(.875rem, 1.3vw, .9375rem);
  color: var(--rf-text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.hp-text p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   VALUES GRID (Über uns)
   ========================================================================== */

.hp-values {
  padding: clamp(80px, 14vw, 160px) 24px;
}

.hp-values__c {
  max-width: 720px;
  margin: 0 auto;
}

.hp-values__h {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--rf-dark);
  margin-bottom: clamp(32px, 5vw, 48px);
  text-wrap: balance;
}

.hp-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.hp-values__grid--3 {
  grid-template-columns: 1fr;
}

.hp-values__item-h {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--rf-dark);
  margin-bottom: 6px;
}

.hp-values__item-p {
  font-size: .8125rem;
  color: var(--rf-text-secondary);
  line-height: 1.65;
}

@media (min-width: 640px) {
  .hp-values__grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .hp-values__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   RELATED (Oft kombiniert mit)
   ========================================================================== */

.hp-related {
  padding: clamp(32px, 5vw, 48px) 24px;
  background: var(--rf-surface);
}

.hp-related__c {
  max-width: 640px;
  margin: 0 auto;
}

.hp-related__h {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--rf-dark);
  margin-bottom: clamp(20px, 3vw, 28px);
  text-wrap: balance;
}

.hp-related__grid {
  display: flex;
  flex-direction: column;
}

.hp-related__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 2.5vw, 20px) 0;
  gap: 16px;
  border-bottom: 1px solid var(--rf-border);
}

.hp-related__card:first-child {
  border-top: 1px solid var(--rf-border);
}

.hp-related__card-h {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--rf-dark);
  transition: color .15s;
}

.hp-related__card:hover .hp-related__card-h {
  color: var(--rf-primary);
}

.hp-related__card-p {
  font-size: .75rem;
  color: var(--rf-text-light);
  margin-top: 2px;
}

.hp-related__card::after {
  content: '\2192';
  font-size: 1rem;
  color: var(--rf-border-dim);
  flex-shrink: 0;
  transition: color .15s;
}

.hp-related__card:hover::after {
  color: var(--rf-primary);
}

/* ==========================================================================
   HINT (Leistung nicht dabei?)
   ========================================================================== */

.hp-cities__link {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--rf-primary);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid var(--rf-border);
  transition: background .15s, border-color .15s;
}

.hp-cities__link:hover {
  background: var(--rf-primary);
  color: var(--rf-white);
  border-color: var(--rf-primary);
}

.hp-cities__more {
  width: 100%;
}

.hp-cities__more summary {
  display: inline-flex;
  align-items: center;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--rf-primary);
  cursor: pointer;
  list-style: none;
  padding: 6px 0;
  margin-top: 4px;
}

.hp-cities__more summary::-webkit-details-marker {
  display: none;
}

.hp-cities__more[open] summary {
  margin-bottom: 0;
}

.hp-cities__more[open] summary::before {
  content: '− ';
  margin-right: 2px;
}

.hp-cities__more:not([open]) summary::before {
  content: '';
}

.hp-hint {
  padding: clamp(60px, 10vw, 100px) 24px;
  background: var(--rf-surface);
  text-align: center;
}

.hp-hint__c {
  max-width: 480px;
  margin: 0 auto;
}

.hp-hint__h {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--rf-dark);
  margin-bottom: 8px;
  text-wrap: balance;
}

.hp-hint__p {
  font-size: .875rem;
  color: var(--rf-text-secondary);
  line-height: 1.6;
}

.hp-hint .hp__cta {
  margin-top: 28px;
}

/* ==========================================================================
   KOMPLETT-PAKET (dunkel)
   ========================================================================== */

.hp-paket {
  padding: clamp(80px, 14vw, 160px) 24px;
  background: var(--rf-dark);
  text-align: center;
}

.hp-paket__c {
  max-width: 640px;
  margin: 0 auto;
}

.hp-paket__label {
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(91, 163, 217, .5);
  margin-bottom: 16px;
}

.hp-paket__h {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.045em;
  color: var(--rf-white);
  line-height: .95;
  text-wrap: balance;
  margin-bottom: 16px;
}

.hp-paket__p {
  font-size: clamp(.875rem, 1.3vw, .9375rem);
  color: rgba(255, 255, 255, .4);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
}

.hp-paket__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: clamp(48px, 7vw, 72px);
  text-align: center;
}

.hp-paket__step-n {
  font-size: .875rem;
  font-weight: 800;
  color: rgba(91, 163, 217, .4);
  letter-spacing: .04em;
  margin-bottom: 12px;
}

.hp-paket__step-h {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 4px;
}

.hp-paket__step-p {
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
  line-height: 1.5;
}

.hp-paket .hp__cta {
  margin-top: clamp(48px, 7vw, 64px);
}

@media (min-width: 640px) {
  .hp-paket__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* ==========================================================================
   SOCIAL PROOF
   ========================================================================== */

.hp-proof {
  padding: clamp(80px, 14vw, 160px) 24px;
  background: var(--rf-surface);
}

/* Bewertungen = grau */

.hp-proof__c {
  max-width: 640px;
  margin: 0 auto;
}

.hp-proof__h {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--rf-dark);
  margin-bottom: clamp(24px, 4vw, 36px);
  text-wrap: balance;
}

.hp-proof__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.hp-proof__g {
  flex-shrink: 0;
}

.hp-proof__rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hp-proof__stars {
  font-size: 1.375rem;
  color: var(--rf-star);
  letter-spacing: 2px;
  line-height: 1;
}

.hp-proof__score {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--rf-dark);
  line-height: 1;
}

.hp-proof__quote {
  padding: 0;
  margin: 0 0 clamp(28px, 4vw, 40px);
  border: none;
  border-left: 2px solid var(--rf-border);
  padding-left: clamp(20px, 3vw, 28px);
}

.hp-proof__quote:last-of-type {
  margin-bottom: 0;
}

.hp-proof__quote p {
  font-size: clamp(.875rem, 1.3vw, 1rem);
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--rf-dark);
  line-height: 1.6;
  margin: 0;
}

.hp-proof__quote cite {
  display: block;
  margin-top: 10px;
  font-size: .75rem;
  font-weight: 600;
  font-style: normal;
  color: var(--rf-text-light);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hp-proof__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: clamp(32px, 5vw, 48px);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--rf-primary);
}

.hp-proof__link::after {
  content: '\2192';
  transition: margin-left .15s;
}

.hp-proof__link:hover::after {
  margin-left: 3px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.hp-faq {
  padding: clamp(60px, 10vw, 100px) 24px;
  background: var(--rf-white) !important;
}

.hp-faq__c {
  max-width: 640px;
  margin: 0 auto;
}

.hp-faq__h {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--rf-dark);
  margin-bottom: clamp(32px, 5vw, 52px);
  text-wrap: balance;
}

.hp-faq__acc details {
  border-bottom: 1px solid var(--rf-border);
}

.hp-faq__acc details:first-child {
  border-top: 1px solid var(--rf-border);
}

.hp-faq__acc summary {
  font-size: clamp(.875rem, 1.3vw, 1rem);
  font-weight: 600;
  color: var(--rf-dark);
  padding: clamp(16px, 2.5vw, 22px) 0;
  min-height: 44px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.hp-faq__acc summary::-webkit-details-marker {
  display: none;
}

.hp-faq__acc summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--rf-border-light);
  flex-shrink: 0;
  margin-left: 16px;
}

.hp-faq__acc details[open] summary::after {
  content: '\2212';
  color: var(--rf-primary);
}

.hp-faq__acc summary:hover {
  color: var(--rf-primary);
}

.hp-faq__acc summary:focus-visible {
  outline: 2px solid var(--rf-primary);
  outline-offset: 4px;
  border-radius: 4px;
}

.hp-faq__acc p {
  font-size: .875rem;
  color: var(--rf-text-secondary);
  line-height: 1.75;
  padding: 0 0 22px;
  max-width: 520px;
}

/* FAQ Kategorie-Sektionen (FAQ-Seite) */
.hp-faq-cat {
  padding: clamp(60px, 10vw, 100px) 24px;
}

.hp-faq-cat--alt {
  background: var(--rf-surface);
}

.hp-faq__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: clamp(32px, 5vw, 48px);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--rf-primary);
}

.hp-faq__link::after {
  content: '\2192';
  transition: margin-left .15s;
}

.hp-faq__link:hover::after {
  margin-left: 3px;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.hp-end {
  padding: clamp(80px, 14vw, 160px) 24px;
  background: var(--rf-surface);
  text-align: center;
}

.hp-end__c {
  max-width: 520px;
  margin: 0 auto;
}

.hp-end__h {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.045em;
  color: var(--rf-dark);
  line-height: .95;
  text-wrap: balance;
}

.hp-end__p {
  margin-top: 16px;
  font-size: clamp(.9375rem, 1.3vw, 1.0625rem);
  color: var(--rf-text-light);
  line-height: 1.65;
}

.hp-end .hp__btns {
  justify-content: center;
  margin-top: clamp(32px, 5vw, 44px);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 767px) {
  .hp__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .hp-hero h1 {
    font-size: 2.75rem;
  }

}

@media print {
  .hp-hero {
    min-height: auto;
    padding: 40px 0;
    background: #fff;
  }

  .hp-hero h1 {
    color: #000 !important;
  }

  .hp-end {
    background: #eee !important;
  }

  .hp-end__h {
    color: #000 !important;
  }
}
