/* ===== Section & Tokens ===== */
.hh-wl{
  --ink:#0f172a; --ink-2:#334155;
  --grad-a:#3b82f6; --grad-b:#06b6d4;
  --bg-1:#f6fbff; --bg-2:#f0f7ff; --bg-3:rgba(240,248,255,.65);
  --glass:#ffffff; --glass-brd:rgba(0,0,0,.06);
  --shadow:0 8px 18px rgba(0,0,0,.05);
  --ring:rgba(59,130,246,.35);

  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  padding:56px 18px 66px;
  background:linear-gradient(180deg,var(--bg-1) 0%, var(--bg-2) 55%, var(--bg-3) 100%);
  border-radius:20px;
  overflow:hidden;
}
.hh-wl-wrap{max-width:1100px;margin:0 auto;text-align:center}
.hh-wl h2{font-size:clamp(22px,3.2vw,30px);font-weight:800;letter-spacing:-.01em;margin:0 0 10px}
.hh-wl-sub{color:var(--ink-2);font-size:clamp(14px,2.2vw,16px);margin:0 0 22px}

/* ===== 6er Grid ===== */
.hh-wl-six{
  display:grid; gap:16px; margin:16px 0 14px;
  grid-template-columns:1fr;
  grid-auto-rows:1fr; align-items:stretch;
}
@media (min-width:680px){ .hh-wl-six{ grid-template-columns:repeat(2,1fr);} }
@media (min-width:980px){ .hh-wl-six{ grid-template-columns:repeat(3,1fr);} }

/* ===== Card Base + Hover Glow ===== */
.hh-wl-card{
  position:relative; overflow:hidden; isolation:isolate;
  height:100%; display:flex; flex-direction:column;
  text-align:left;
  border-radius:20px;
  padding:22px 18px 18px;
  background:var(--glass); border:1px solid var(--glass-brd);
  box-shadow:var(--shadow);
  transform:translateY(0) scale(1);
  transition:transform .4s cubic-bezier(.22,.8,.24,1),
             box-shadow .4s cubic-bezier(.22,.8,.24,1),
             background-color .4s cubic-bezier(.22,.8,.24,1),
             border-color .4s cubic-bezier(.22,.8,.24,1),
             filter .4s cubic-bezier(.22,.8,.24,1);
  --mx:50%; --my:40%;
}
.hh-wl-card::before{
  content:""; position:absolute; inset:-1px; pointer-events:none; z-index:0; opacity:0;
  background:
    radial-gradient(160px circle at var(--mx) var(--my), rgba(255,255,255,.65), rgba(255,255,255,0) 60%),
    radial-gradient(280px circle at var(--mx) var(--my), rgba(56,189,248,.18), transparent 70%);
  transition:opacity .4s ease;
}
@media (hover:hover) and (pointer:fine){
  .hh-wl-card:hover,
  .hh-wl-card:focus-visible{
    transform: translateY(-6px);
    background: rgba(224,242,254,.55);
    box-shadow: 0 8px 25px rgba(56,189,248,.35), inset 0 0 8px rgba(14,165,233,.15);
    border-color: rgba(56,189,248,.25);
    outline:none;
  }
  .hh-wl-card:hover::before,
  .hh-wl-card:focus-visible::before{ opacity:1; }
}
@media (hover:none) and (pointer:coarse){
  .hh-wl-card.is-active{
    transform: translateY(-6px);
    background: rgba(224,242,254,.55);
    box-shadow: 0 8px 25px rgba(56,189,248,.35), inset 0 0 8px rgba(14,165,233,.15);
    border-color: rgba(56,189,248,.25);
  }
  .hh-wl-card.is-active::before{ opacity:1; }
}

/* Step-Badge & Einzug */
.hh-wl-card.is-step{ padding-left:64px; }
.step-badge{
  position:absolute; left:16px; top:16px;
  width:38px; height:38px; border-radius:999px; display:grid; place-items:center;
  font-weight:800; font-size:15px; color:#0b1220; z-index:2;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.6) 42%, rgba(255,255,255,.25) 66%, rgba(255,255,255,0) 100%),
    linear-gradient(135deg, rgba(59,130,246,.28), rgba(6,182,212,.28));
  border:1px solid rgba(15,23,42,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 4px 12px rgba(59,130,246,.18);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

/* Icons/Emojis */
.hh-wl .hh-wl-icon{
  width:32px; height:32px; line-height:32px;
  display:inline-flex; align-items:center; justify-content:center;
  transform-origin:center center;
  transition:transform .3s ease, filter .3s ease;
}
@media (hover:hover) and (pointer:fine){
  .hh-wl .hh-wl-card:hover .hh-wl-icon,
  .hh-wl .hh-wl-card:focus-visible .hh-wl-icon{
    transform:scale(1.22);
    filter:drop-shadow(0 2px 4px rgba(14,165,233,.30));
  }
}
@media (hover:none) and (pointer:coarse){
  .hh-wl .hh-wl-card.is-active .hh-wl-icon{
    transform:scale(1.22);
    filter:drop-shadow(0 2px 4px rgba(14,165,233,.30));
  }
}

/* Emoji-Wrapper für Fließtext/Buttons */
.hh-wl .wl-emoji{
  display:inline-block; line-height:1;
  transition: transform 300ms ease, filter 300ms ease;
}
@media (hover:hover) and (pointer:fine){
  .hh-wl .hh-wl-card:hover .wl-emoji,
  .hh-wl .hh-wl-card:focus-within .wl-emoji{
    transform:scale(1.22);
    filter:drop-shadow(0 2px 4px rgba(14,165,233,.30));
  }
}

/* Content */
.hh-wl-card h3{ margin:2px 0 6px; font-size:16px; font-weight:800; z-index:1 }
.hh-wl-card p{ margin:0; color:var(--ink-2); font-size:14.5px; line-height:1.55; z-index:1 }

/* FAQ (Details) */
.hh-wl-faq{ border-radius:20px; background:#fff; border:1px solid var(--glass-brd); padding:12px 16px; box-shadow:var(--shadow); text-align:left; }
.hh-wl-faq summary{ cursor:pointer; list-style:none; font-size:15px; padding-right:8px; user-select:none }
.hh-wl-faq-list{ list-style:none; padding:0; margin:10px 0 0 }
.hh-wl-faq-list h4{ margin:.2rem 0; font-size:15px; font-weight:700 }
.hh-wl-faq-list p{ margin:0 0 8px; color:var(--ink-2); font-size:14.5px; line-height:1.55 }

/* CTA */
.hh-wl-cta{ margin-top:16px }
.hh-wl-btn{
  display:inline-block; padding:14px 26px; border-radius:12px; font-weight:800;
  color:#fff; text-decoration:none; margin:6px 8px 0;
  background:linear-gradient(90deg,var(--grad-a),var(--grad-b));
  box-shadow:0 10px 28px rgba(59,130,246,.25);
  transition:transform .2s ease, box-shadow .2s ease;
}
.hh-wl-btn:hover{ transform:translateY(-1.5px); box-shadow:0 16px 36px rgba(59,130,246,.30) }
.hh-wl-btn.ghost{
  background:rgba(224,242,254,.55); color:var(--ink);
  border:1px solid rgba(56,189,248,.25); box-shadow:none; font-weight:700;
}
.hh-wl-micro{ margin-top:8px; color:#64748b; font-size:12.5px }

/* Optional: Beträge via globalem Switcher hervorheben */
.hh-wl .hh-amount{ font-weight:700; color:#0f172a; }
