.banner-placeholder{
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:66px;
  color:var(--muted);
  font-weight:900;
  border-style:dashed;
  background:#fff;
}

.hero{padding:16px;}
.controls{
  margin-top:12px;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.select{
  flex:1;
  min-width:220px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--border);
  background:#fff;
}
.select .icon{
  width:34px; height:34px;
  border-radius:12px;
  background: var(--brandSoft);
  display:flex; align-items:center; justify-content:center;
  color:var(--brand);
  font-weight:900;
  user-select:none;
}
select{
  width:100%;
  border:none;
  outline:none;
  background:transparent;
  font-size:14px;
  font-weight:900;
  color:var(--text);
  cursor:pointer;
  appearance:none;
}
.select .caret{
  color:var(--muted);
  font-weight:900;
  user-select:none;
}

.subchips{
  margin-top:10px;
  display:none;
  gap:8px;
  flex-wrap:wrap;
}
.chip{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:900;
  font-size:13px;
  color:var(--text);
  cursor:pointer;
  transition:.14s;
  user-select:none;
}
.chip:hover{background:var(--brandSoft); border-color:rgba(95,62,200,.25)}
.chip.active{
  background: rgba(242,237,255,.85);
  border-color: rgba(95,62,200,.25);
  color: var(--brand);
}

.home-cta{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top:12px;
}

.guide-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  padding:6px 0;
}
.guide-actions .btn{
  flex:1;
  max-width:240px;
  justify-content:center;
}

.proc-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
.proc{
  padding:12px 10px;
  border-radius:18px;
  border:1px solid var(--border);
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:8px;
  min-height:104px;
  transition:.14s;
}
.proc:hover{background:#faf8ff; border-color:rgba(95,62,200,.25)}
.proc .p-ico{
  width:38px; height:38px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(242,237,255,.65);
  display:flex; align-items:center; justify-content:center;
  color:var(--brand);
  font-weight:900;
  user-select:none;
  font-size:12px;
}
.proc b{
  font-size:13px;
  letter-spacing:-.2px;
  line-height:1.2;
}
.proc span{
  font-size:11px;
  color:var(--muted);
  line-height:1.35;
}

@media (max-width: 720px){
  .select{min-width:100%}
  .proc{min-height:92px; padding:10px}
  .proc .p-ico{width:34px; height:34px}
  .proc span{display:none;}
  .guide-actions{gap:10px}
  .guide-actions .btn{max-width:none; flex:1;}
}
@media (max-width: 360px){
  .proc-grid{grid-template-columns:repeat(2,1fr)}
}
