/* ==========================================================================
   Funnel Base
   ========================================================================== */
.bt-funnel {
  max-width: 840px;
  margin: 0 auto;
  font-family: inherit;
  color: #111;
}

.bt-funnel button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  padding: 15px 24px;
  font-weight: 700;
  cursor: pointer;
}

.bt-funnel .bt-prev {
  background: #eee;
  color: #111;
}

/* ==========================================================================
   Progress Bar
   ========================================================================== */
.bt-progress {
  height: 8px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}

.bt-progress span {
  display: block;
  height: 100%;
  background: #111;
  transition: width 0.25s ease;
}

/* ==========================================================================
   Steps
   ========================================================================== */
.bt-step {
  display: none;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.bt-step.is-active {
  display: block;
}

.bt-step h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  margin: 0 0 16px;
}

/* ==========================================================================
   Typography Helpers
   ========================================================================== */
.bt-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
}

.bt-lead {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
}

.bt-status {
  font-weight: 700;
}

.bt-thanks {
  text-align: center;
}

/* ==========================================================================
   Card & List Grids
   ========================================================================== */
.bt-card-grid,
.bt-job-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.bt-card-grid > div,
.bt-list li {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 18px;
}

.bt-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

/* ==========================================================================
   Options
   ========================================================================== */
.bt-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.bt-options label {
  cursor: pointer;
}

.bt-options input {
  position: absolute;
  opacity: 0;
}

.bt-options span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  text-align: center;
  background: #f7f7f7;
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 16px;
  transition: 0.18s ease;
}

.bt-options input:checked + span {
  border-color: #111;
  background: #fff;
}

/* ==========================================================================
   Form Fields
   ========================================================================== */
.bt-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.bt-fields input,
.bt-fields textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 15px;
  font: inherit;
}

.bt-fields textarea {
  grid-column: 1 / -1;
  min-height: 100px;
}

/* E-Mail-Feld: Theme-/Divi-Begrenzungen wie max-width:300px aufheben */
.bt-fields input[name="email"] {
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
}

.bt-privacy {
  display: block;
  margin: 12px 0 22px;
  font-size: 14px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.bt-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

/* ==========================================================================
   Honeypot (anti-spam)
   ========================================================================== */
.bt-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

/* ==========================================================================
   Info / Benefit Cards
   ========================================================================== */
.bt-job-info-card strong,
.bt-benefit-card strong,
.bt-job-info-grid strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 6px;
}

.bt-job-info-card .bt-value,
.bt-job-info-card p,
.bt-job-info-card div:last-child,
.bt-benefit-card span,
.bt-job-info-grid span,
.bt-benefit-card p {
  display: block;
  font-size: 17px;
  line-height: 1.4;
}

.bt-job-info-card .bt-value,
.bt-job-info-card p,
.bt-job-info-card div:last-child {
  font-weight: 400;
}

.bt-benefit-card span,
.bt-benefit-card p {
  font-weight: 400;
}

/* ==========================================================================
   Interactive Text (options, buttons, answers)
   ========================================================================== */
.bt-options span,
.bt-option,
.bt-button,
.bt-answer,
.bt-funnel button,
.bt-funnel .button {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 680px) {
  .bt-step {
    padding: 24px;
  }

  .bt-card-grid,
  .bt-job-info-grid,
  .bt-options,
  .bt-fields {
    grid-template-columns: 1fr;
  }

  .bt-nav {
    flex-direction: column-reverse;
  }

  .bt-funnel button {
    width: 100%;
  }
}