/* Homepage-Paket 2 Teil 2: Painpoint-Finder — Glas-Spec (entscheidungen.md):
   Karten rgba(255,255,255,.06–.09) + blur(14–16px) + 1px-Border rgba(255,255,255,.12–.16),
   Radius 14px; Gold nur als Akzent (CTA-Gradient d8b98a→c9a575). */

.finder {
    position: relative;
    padding: clamp(56px, 10vw, 110px) 20px;
    font-family: var(--font-sans, 'Jost', sans-serif);
    color: #fff;
}
.finder-inner { max-width: 860px; margin: 0 auto; }

.finder-head { text-align: center; margin-bottom: clamp(24px, 4vw, 40px); }
.finder-head .k { display: block; text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; color: #d8b98a; opacity: .85; margin-bottom: 10px; }
.finder-head h2 { font-family: var(--font-serif, 'Cinzel', serif); font-size: clamp(1.6rem, 4.5vw, 2.4rem); margin: 0 0 10px; font-weight: 600; }
.finder-sub { margin: 0 auto; max-width: 480px; font-size: .95rem; line-height: 1.5; color: rgba(255, 255, 255, .65); }

.finder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}
.finder-card {
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, .88);
    font-family: inherit; font-size: .95rem; font-weight: 600; text-align: left;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
    .finder-card { -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); }
}
.finder-card:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(216, 185, 138, .4); transform: translateY(-2px); }
.finder-card.is-active {
    background: rgba(216, 185, 138, 0.12);
    border-color: rgba(216, 185, 138, .6);
    color: #f0e2c8;
}

.finder-results { max-width: 640px; margin: 0 auto; }
.finder-result {
    margin-top: 22px;
    padding: 22px 24px;
    border-radius: 16px;
    background: rgba(22, 36, 26, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    animation: finder-in .35s cubic-bezier(.22, .61, .36, 1) both;
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
    .finder-result { -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); }
}
@keyframes finder-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .finder-result { animation: none; } }

.finder-course { display: block; text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 700; color: #d8b98a; margin-bottom: 8px; }
.finder-result p { margin: 0; font-size: .98rem; line-height: 1.55; color: rgba(255, 255, 255, .85); }

.finder-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.finder-cta-primary {
    flex: 1 1 220px;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 13px 22px; border-radius: 999px; text-decoration: none;
    background: linear-gradient(135deg, #d8b98a, #c9a575);
    color: #0b170f; font-weight: 700; font-size: .95rem;
    transition: transform .15s ease, box-shadow .15s ease;
}
.finder-cta-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(216, 185, 138, .35); color: #0b170f; }
.finder-cta-secondary {
    flex: 1 1 180px;
    padding: 13px 22px; border-radius: 999px; cursor: pointer;
    background: transparent; border: 1px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .85); font-family: inherit; font-weight: 600; font-size: .95rem;
    transition: border-color .15s ease, background .15s ease;
}
.finder-cta-secondary:hover { border-color: rgba(216, 185, 138, .5); background: rgba(255, 255, 255, .05); }
