/* ===========================
   HomeHarbor – Steps/Akkordeon
   Scope: #hh-inline-steps
   =========================== */

#hh-inline-steps{
  --ink:#0f172a;
  --ink-muted:#475569;
  --ring:#93c5fd;
  --border:#e2e8f0;
  --divider:rgba(2,6,23,.08);
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
}
#hh-inline-steps .hh-spacer{ display:block; width:100%; height:0; }

#hh-inline-steps .hh-usp-steps{ padding:10px 20px; }
#hh-inline-steps .hh-usp-wrapper{ max-width:860px; margin:0 auto; text-align:left; }

/* Heading */
#hh-inline-steps .hh-usp-steps h3{
  font-size:clamp(26px,4vw,36px);
  font-weight:800;
  letter-spacing:-.02em;
  line-height:1.2;
  margin:0 0 24px;
  color:var(--ink);
}

/* Card / Akkordeon */
#hh-inline-steps .hh-usp-box{
  background:#ffffff;
  border-left:6px solid #3b82f6;
  padding:24px 28px;
  border-radius:16px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
  margin-top:10px;
  overflow:visible;
  position:relative;
}

/* Items + Trenner */
#hh-inline-steps .hh-usp-item + .hh-usp-item{ border-top:1px solid var(--divider); }
#hh-inline-steps .hh-usp-item:last-child{ border-bottom:1px solid var(--divider); }

/* Toggles */
#hh-inline-steps .hh-usp-toggle{
  appearance:none;
  background:none;
  border:0;
  width:100%;
  text-align:left;
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  font-weight:800;
  font-size:16px;
  color:#1e293b;
  padding:12px 0;
  transition:color .3s ease;
}
/* kein blaues Hover auf Label */
#hh-inline-steps .hh-usp-toggle:hover{ color:inherit; }
#hh-inline-steps .hh-usp-toggle:focus-visible{
  outline:3px solid var(--ring);
  outline-offset:2px;
  border-radius:8px;
}

/* Caret */
#hh-inline-steps .caret{
  margin-left:auto;
  width:18px; height:18px; flex:0 0 18px;
  transition:transform .3s ease;
}
#hh-inline-steps .hh-usp-toggle[aria-expanded="true"] .caret{ transform:rotate(180deg); }

/* Panel content */
#hh-inline-steps .hh-usp-content{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:all .35s ease;
  font-size:15px;
  line-height:1.55;
  color:var(--ink-muted);
  margin:0;
}
#hh-inline-steps .hh-usp-content.show{
  margin-top:10px;
  max-height:1000px;
  opacity:1;
}

/* Mobile */
@media (max-width:768px){
  #hh-inline-steps .hh-usp-box{ padding:20px; }
  #hh-inline-steps .hh-usp-toggle{ font-size:15px; }
  #hh-inline-steps .hh-usp-content{ font-size:14px; }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  #hh-inline-steps *{ transition:none !important; }
}

/* ---- Saubere Overrides: kein zusätzlicher Hintergrund/Glow ---- */
#hh-inline-steps .hh-usp-steps,
#hh-inline-steps .hh-usp-wrapper,
#hh-inline-steps .hh-usp-box{ background-clip:border-box; }
#hh-inline-steps .hh-usp-steps::before,
#hh-inline-steps .hh-usp-steps::after,
#hh-inline-steps .hh-usp-wrapper::before,
#hh-inline-steps .hh-usp-wrapper::after{ content:none !important; }
#hh-inline-steps .hh-usp-item::before{ content:none !important; }
#hh-inline-steps .hh-usp-item:hover::before,
#hh-inline-steps .hh-usp-item:focus-within::before{ opacity:0 !important; }
