/* Funnel-Modul — eigenständige Styles (nutzt globale Tokens aus styles.css) */
.fn { padding-block: clamp(64px, 9vw, 130px); background: var(--grad-cool); overflow: hidden; }
.fn-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.fn-intro .lead { margin-top: 1.2rem; }
.fn-usps { margin-top: 1.8rem; display: grid; gap: 0.8rem; }
.fn-usps li { display: flex; align-items: center; gap: 0.7rem; font-weight: 300; color: var(--ink-2); }
.fn-usps svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

.fn-card { background: #fff; border-radius: var(--r-xl); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-card); }
.fn-progress { height: 5px; border-radius: 999px; background: var(--paper-2); overflow: hidden; }
.fn-progress i { display: block; height: 100%; width: 16.66%; border-radius: 999px; background: var(--grad-accent); transition: width 0.5s var(--ease); }
.fn-step-label { margin-top: 0.9rem; font-weight: 500; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.fn-body { margin-top: 1.4rem; min-height: 230px; }
.fn-step { display: none; }
.fn-step.active { display: block; animation: fnIn 0.4s var(--ease); }
@keyframes fnIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.fn-q { font-weight: 700; font-size: 1.3rem; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 1.2rem; }
.fn-opts { display: grid; gap: 0.6rem; }
.fn-opts.two { grid-template-columns: 1fr 1fr; }
.fn-opt {
  text-align: left; padding: 15px 18px; border-radius: 14px; font-weight: 500; font-size: 0.97rem; color: var(--ink);
  background: var(--paper); transition: background 0.25s, color 0.25s, transform 0.18s, box-shadow 0.25s;
}
.fn-opt:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.fn-opt.selected { background: var(--grad-accent); color: #fff; }

.fn-fields { display: grid; gap: 0.9rem; }
.fn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.fn-field label { display: block; font-weight: 600; font-size: 0.82rem; color: var(--ink); margin-bottom: 0.35rem; }
.fn-field input, .fn-field textarea { width: 100%; padding: 0.85em 1em; border: none; border-radius: 12px; background: var(--paper); font-size: 0.97rem; color: var(--ink); transition: box-shadow 0.2s; }
.fn-field input:focus, .fn-field textarea:focus { outline: none; box-shadow: 0 0 0 2px var(--accent); }
.fn-field textarea { resize: vertical; min-height: 84px; }
.fn-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 300; font-size: 0.85rem; color: var(--ink-2); }
.fn-consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent); flex: none; }
.fn-consent a { color: var(--accent); }
.fn-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.fn-err { font-size: 0.85rem; color: #c0392b; }

.fn-summary { background: var(--paper); border-radius: 14px; padding: 14px 16px; margin-bottom: 1.1rem; display: grid; gap: 0.4rem; }
.fn-summary .sl { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.88rem; }
.fn-summary .sl .k { color: var(--muted); font-weight: 300; }
.fn-summary .sl .v { color: var(--ink); font-weight: 600; text-align: right; }

.fn-foot { margin-top: 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.fn-back { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 500; font-size: 0.9rem; color: var(--muted); transition: color 0.2s; }
.fn-back:hover { color: var(--ink); }
.fn-back svg { width: 16px; height: 16px; }
.fn-back[hidden] { visibility: hidden; }

.fn-done { display: none; text-align: center; padding: 18px 8px; }
.fn-done.show { display: block; animation: fnIn 0.5s var(--ease); }
.fn-ok { width: 66px; height: 66px; border-radius: 50%; background: var(--grad-accent); color: #fff; display: grid; place-items: center; margin: 0 auto 1.2rem; }
.fn-ok svg { width: 32px; height: 32px; }
.fn-done h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.fn-done p { font-weight: 300; color: var(--ink-2); max-width: 38ch; margin: 0 auto; }

@media (max-width: 940px) { .fn-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .fn-opts.two, .fn-row { grid-template-columns: 1fr; } }
