/* ===== FUNNEL PAGE ===== */
.funnel-page {
  background: #f8f9fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Top accent bar */
.funnel-topbar {
  width: 100%;
  height: 4px;
  background: #004280;
}

/* Header */
.funnel-header {
  text-align: center;
  padding: 40px 24px 0;
}

.funnel-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #004280;
  margin-bottom: 12px;
}

.funnel-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-500);
}

.funnel-logo {
  height: 32px;
  width: auto;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

/* Ratings */
.funnel-ratings {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 520px;
  width: 100%;
  padding: 24px 24px 0;
}

.funnel-ratings a {
  max-width: 48%;
}

.funnel-rating-img {
  height: auto;
  width: 100%;
  object-fit: contain;
}

/* Main Question Card */
.funnel-main {
  max-width: 520px;
  width: 100%;
  padding: 16px 24px 0;
}

.funnel-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px 28px;
}

.funnel-question {
  font-size: 1.35rem;
  font-weight: 700;
  color: #004280;
  line-height: 1.4;
  margin-bottom: 24px;
}

/* Option Cards */
.funnel-option {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.funnel-option:last-child {
  margin-bottom: 0;
}

.funnel-option:hover {
  border-color: #004280;
  box-shadow: 0 0 0 1px #004280;
}

.funnel-option-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.funnel-option-desc {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Trust Section */
.funnel-trust {
  text-align: center;
  padding: 40px 24px 60px;
  max-width: 520px;
  width: 100%;
}

.funnel-trust-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.funnel-trust-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.funnel-tag {
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  color: rgb(64, 64, 64);
  background: var(--white);
  border: 1px solid rgba(64, 64, 64, 0.1);
  border-radius: 6px;
  padding: 4px 12px;
  line-height: 1.4;
}

.funnel-benefits-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.funnel-benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: #004280;
  border: 1px solid rgba(0, 66, 128, 0.1);
  border-radius: 6px;
  padding: 4px 12px;
  line-height: 1.4;
}

.funnel-benefit-icon {
  width: 18px;
  height: 18px;
}

/* ===== FORWARD PAGE (mail-weiterleiten) ===== */

/* Steps */
.fw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fw-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 20px;
  position: relative;
}

.fw-step:last-child {
  padding-bottom: 0;
}

/* Connecting line between steps */
.fw-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 17px;
  top: 40px;
  bottom: -2px;
  width: 2px;
  background: var(--gray-200);
}

.fw-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f0fa;
  color: #004280;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.4s ease, color 0.4s ease;
}

.fw-step-num.accent {
  background: #004280;
  color: #fff;
}

.fw-step-body {
  flex: 1;
}

.fw-step-title {
  font-size: 15px;
  font-weight: 700;
  color: #004280;
  margin-bottom: 6px;
  line-height: 1.35;
}

.fw-step-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.55;
}

/* Email copy box */
.fw-email-box {
  display: flex;
  align-items: center;
  background: #f5f8fc;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  padding: 5px 5px 5px 16px;
  margin-top: 10px;
  transition: border-color 0.2s;
}

.fw-email-box:hover {
  border-color: #004280;
}

.fw-email-addr {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: -0.1px;
}

.fw-copy-btn {
  background: #004280;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
  font-family: inherit;
  white-space: nowrap;
}

.fw-copy-btn:hover {
  background: #003a6d;
}

.fw-copy-btn svg {
  width: 15px;
  height: 15px;
}

.fw-copy-ok {
  display: none;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #16a34a;
}

.fw-copy-ok.show {
  display: flex;
}

.fw-playful {
  margin-top: 10px;
  font-size: 13px;
  color: var(--gray-500);
}

/* Later Card */
.fw-later-card {
  margin-top: 16px;
}

.fw-later-title {
  font-size: 17px;
  font-weight: 700;
  color: #004280;
  margin-bottom: 4px;
}

.fw-later-sub {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 18px;
}

.fw-later-btns {
  display: flex;
  gap: 12px;
}

.fw-later-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: #fafcfe;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s;
}

.fw-later-btn:hover {
  border-color: #004280;
  background: #f0f5fb;
  box-shadow: 0 2px 8px rgba(0, 66, 128, 0.08);
}

.fw-later-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e8f0fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fw-later-btn-icon svg {
  width: 20px;
  height: 20px;
  color: #004280;
}

.fw-later-btn-label {
  font-size: 14px;
  font-weight: 600;
  color: #004280;
  text-align: center;
  line-height: 1.3;
}

.fw-later-btn-sub {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.4;
}

/* Explain box */
.fw-explain-box {
  margin-top: 14px;
  background: #f5f8fc;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 14px 16px;
}

.fw-explain-box p {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.55;
}

.fw-explain-box strong {
  color: var(--gray-900);
}

.fw-highlight {
  display: inline-block;
  background: #e8f0fa;
  color: #004280;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* ===== PRIVAT PAGE ===== */
.privat-info p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 16px;
}

.privat-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #004280;
  margin-bottom: 16px;
}

.privat-instruction {
  background: #f5f8fc;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.privat-instruction:last-child {
  margin-bottom: 0;
}

.privat-instruction h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.privat-instruction p {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .funnel-title {
    font-size: 1.5rem;
  }

  .funnel-question {
    font-size: 1.15rem;
  }

  .funnel-card {
    padding: 24px 20px;
  }

  .funnel-option {
    padding: 20px;
  }

  .fw-email-box {
    flex-direction: column;
    padding: 14px;
    gap: 10px;
  }

  .fw-email-addr {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }

  .fw-copy-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 15px;
    border-radius: 10px;
  }
}
