/* ══════════════════════════════════════════════════════════
   GESPRAECH.CSS – Greenstein Design (Funnel)
   Nur seitenspezifische Styles. Globale Styles in global.css.
   ══════════════════════════════════════════════════════════ */

/* ── FUNNEL LAYOUT ── */
.page { display: flex; align-items: flex-start; justify-content: center; }
.funnel-container { width: 100%; max-width: 720px; position: relative; z-index: 1; }

/* ── FUNNEL HEADER ── */
.funnel-header { text-align: center; margin-bottom: 48px; }
.funnel-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 18px;
    background: linear-gradient(135deg, rgba(200,255,0,0.08), rgba(200,255,0,0.02));
    border: 1px solid rgba(200,255,0,0.12); border-radius: 100px;
    font-size: 0.75rem; color: var(--accent); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px;
}
.funnel-badge::before {
    content: ''; width: 6px; height: 6px; background: var(--accent);
    border-radius: 50%; box-shadow: 0 0 8px rgba(200,255,0,0.5);
}
.funnel-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 14px;
}
.funnel-header h1 .highlight {
    color: var(--accent); text-shadow: 0 0 40px rgba(200,255,0,0.15);
}
.funnel-header p {
    font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7;
    max-width: 520px; margin: 0 auto;
}

/* ── PROGRESS BAR ── */
.progress-bar {
    display: flex; align-items: center; gap: 0;
    margin-bottom: 40px; padding: 0 20px;
}
.progress-step {
    display: flex; align-items: center; gap: 10px;
    flex: 1; position: relative;
}
.progress-step:not(:last-child)::after {
    content: ''; flex: 1; height: 2px;
    background: var(--border); margin-left: 10px;
    transition: background 0.4s ease;
}
.progress-step.completed:not(:last-child)::after { background: var(--accent); }
.step-dot {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    background: var(--bg-card-solid);
    border: 2px solid var(--border-light);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
    color: var(--text-muted); transition: all 0.4s ease;
}
.progress-step.active .step-dot {
    border-color: var(--accent); color: #000; background: var(--accent);
    box-shadow: 0 0 20px rgba(200,255,0,0.3);
}
.progress-step.completed .step-dot {
    border-color: var(--accent); color: #000; background: var(--accent);
    box-shadow: 0 0 12px rgba(200,255,0,0.2);
}
.step-label { display: none; }
@media (min-width: 600px) {
    .step-label {
        display: block; font-size: 0.7rem; color: var(--text-muted);
        font-weight: 500; letter-spacing: 0.02em;
        position: absolute; top: 44px; left: 50%; transform: translateX(-50%);
        white-space: nowrap;
    }
    .progress-step.active .step-label { color: var(--accent); }
    .progress-step.completed .step-label { color: var(--text-secondary); }
}

/* ── FUNNEL CARD ── */
.funnel-card {
    background: rgba(15,15,15,0.8);
    backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl); padding: 48px 40px;
    position: relative; overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.funnel-card::before {
    content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,255,0,0.3), transparent);
}

/* ── STEPS ── */
.step { display: none; }
.step.active { display: block; animation: stepIn 0.4s ease; }
.step-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.step-subtitle { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.6; }

/* ── OPTION CARDS ── */
.option-grid { display: grid; gap: 12px; margin-bottom: 32px; }
.option-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.option-grid.cols-1 { grid-template-columns: 1fr; }
.option-card {
    padding: 22px 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius); cursor: pointer;
    transition: all 0.25s ease; position: relative;
    display: flex; align-items: flex-start; gap: 16px;
}
.option-card:hover { border-color: var(--border-light); background: rgba(255,255,255,0.04); }
.option-card.selected {
    border-color: var(--accent);
    background: rgba(200,255,0,0.04);
    box-shadow: 0 0 30px rgba(200,255,0,0.06);
}
.option-card.selected::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
    background: var(--accent); border-radius: 3px 0 0 3px;
}
.option-radio {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    border: 2px solid var(--border-light); margin-top: 2px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
}
.option-card.selected .option-radio { border-color: var(--accent); }
.option-card.selected .option-radio::after {
    content: ''; width: 10px; height: 10px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 8px rgba(200,255,0,0.4);
}
.option-content h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.option-content p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ── FUNNEL BUTTONS ── */
.btn-row { display: flex; gap: 12px; margin-top: 32px; }
.btn-next {
    flex: 1; padding: 16px 32px; background: var(--accent); color: #000;
    font-weight: 700; font-size: 0.95rem; border-radius: 100px;
    border: none; cursor: pointer; transition: var(--transition);
    font-family: var(--font-main);
    box-shadow: 0 0 30px rgba(200,255,0,0.15);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-next:hover {
    background: #d4ff33; transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200,255,0,0.3);
}
.btn-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-back {
    padding: 16px 24px;
    background: rgba(255,255,255,0.03); color: var(--text-secondary);
    font-weight: 600; font-size: 0.9rem; border-radius: 100px;
    border: 1px solid var(--border); cursor: pointer;
    transition: var(--transition); font-family: var(--font-main);
}
.btn-back:hover {
    border-color: var(--border-light); color: var(--text-primary);
    background: rgba(255,255,255,0.06);
}

/* ── TRUST SIGNALS ── */
.trust-row {
    display: flex; align-items: center; justify-content: center;
    gap: 32px; margin-top: 40px; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.78rem; color: var(--text-muted);
}
.trust-icon {
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(200,255,0,0.1); border: 1px solid rgba(200,255,0,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; color: var(--accent);
}

/* ── SUCCESS STATE ── */
.success-state { text-align: center; padding: 20px 0; }
.success-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #a8d900);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px; font-size: 2rem; color: #000;
    box-shadow: 0 0 60px rgba(200,255,0,0.25);
}
.success-state h2 {
    font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
    margin-bottom: 12px; letter-spacing: -0.02em;
}
.success-state p {
    color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7;
    max-width: 440px; margin: 0 auto 32px;
}
.success-details {
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px; text-align: left; margin-bottom: 28px;
}
.success-details h4 {
    font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.detail-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.875rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-row .label { color: var(--text-muted); }
.detail-row .value { color: var(--text-primary); font-weight: 600; }
.btn-home {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; background: rgba(255,255,255,0.03);
    border: 1px solid var(--border); border-radius: 100px;
    color: var(--text-primary); font-weight: 600; font-size: 0.9rem;
    transition: var(--transition); font-family: var(--font-main);
}
.btn-home:hover { border-color: var(--border-light); background: rgba(255,255,255,0.06); }

/* ── RESPONSIVE (Funnel-spezifisch) ── */
@media (max-width: 640px) {
    .funnel-card { padding: 32px 24px; }
    .option-grid.cols-2 { grid-template-columns: 1fr; }
    .btn-row { flex-direction: column-reverse; }
    .btn-back { text-align: center; }
    .trust-row { gap: 20px; }
    .funnel-header h1 { font-size: 1.6rem; }
}
