/* RACKL Anfrage-Funnel — Styling passend zur dunklen Original-Sektion + RACKL-Grün */
.rackl-funnel { width: 100%; max-width: 640px; margin: 0 auto; color: #fff; }
.rackl-funnel * { box-sizing: border-box; }

.rkf-step { animation: rkf-fade .28s ease; }
@keyframes rkf-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.rkf-step__head { text-align: center; margin-bottom: 26px; }
.rkf-step__title {
  font-size: clamp(22px, 3vw, 30px); font-weight: 700; line-height: 1.2;
  margin: 0 0 8px; color: #fff;
}
.rkf-step__desc { font-size: 17px; margin: 0; color: rgba(255,255,255,.8); }

/* Tabs (select) */
.rkf-tabs { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.rkf-tab {
  display: flex; align-items: center; justify-content: center; text-align: center;
  width: 100%; padding: 18px 20px; cursor: pointer;
  background: rgb(38,38,38); color: #fff;
  border: 2px solid rgba(255,255,255,.14); border-radius: 10px;
  font-size: 17px; font-weight: 600; transition: border-color .18s, background .18s, transform .05s;
}
.rkf-tab:hover { border-color: rgba(95,191,73,.55); }
.rkf-tab:active { transform: scale(.995); }
.rkf-tab--active { border-color: #5fbf49; background: rgba(95,191,73,.16); }
.rkf-tab__label { pointer-events: none; }

/* Inputs / textarea */
.rkf-field { margin-bottom: 16px; }
.rkf-label { display: block; font-size: 15px; font-weight: 600; margin-bottom: 7px; color: rgba(255,255,255,.92); }
.rkf-req { color: #5fbf49; }
.rkf-input, .rkf-textarea {
  width: 100%; padding: 14px 16px; font-size: 16px; font-family: inherit;
  background: rgb(30,30,30); color: #fff;
  border: 2px solid rgba(255,255,255,.16); border-radius: 8px; outline: none;
  transition: border-color .18s;
}
.rkf-input::placeholder, .rkf-textarea::placeholder { color: rgba(255,255,255,.45); }
.rkf-input:focus, .rkf-textarea:focus { border-color: #5fbf49; }
.rkf-input--invalid { border-color: #e05a4c !important; }
.rkf-textarea { resize: vertical; min-height: 120px; }

.rkf-error { color: #ff8a7d; font-size: 15px; font-weight: 600; min-height: 20px; margin: 6px 2px 0; }

/* Buttons */
.rkf-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; margin-top: 18px; padding: 16px 24px; cursor: pointer;
  background: #5fbf49; color: #fff; border: none; border-radius: 8px;
  font-size: 17px; font-weight: 700; font-family: inherit; text-decoration: none;
  transition: background .18s, transform .05s;
}
.rkf-btn:hover { background: #52a83e; }
.rkf-btn:active { transform: scale(.99); }

/* Finish */
.rkf-step--finish { text-align: center; }
.rkf-check {
  width: 76px; height: 76px; margin: 0 auto 18px; color: #fff;
  display: flex; align-items: center; justify-content: center;
  background: #5fbf49; border-radius: 50%;
}

@media (max-width: 640px) {
  .rkf-step__title { font-size: 22px; }
  .rkf-tab { padding: 16px; font-size: 16px; }
}

/* Datenschutz-Checkbox im Kontakt-Schritt (wie Original) */
.rkf-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 2px 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,.8);
}
.rkf-consent__box {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #5FBF49;
  cursor: pointer;
}
.rkf-consent__text a {
  color: #5FBF49;
  text-decoration: underline;
}
