
/* ================= LAKANA SSI V26 WALKTHROUGH + PRESETS ================= */
.v26-start{
  margin:20px 0 26px;
  display:grid;
  grid-template-columns:minmax(420px, .95fr) minmax(520px, 1.05fr);
  gap:18px;
}
.v26-card{
  background:#fff;
  border:1px solid var(--line,#D7DEE8);
  border-radius:30px;
  box-shadow:0 18px 50px rgba(10,22,37,.08);
  padding:22px;
}
.v26-card h2,.v26-card h3{
  margin-top:0;
  letter-spacing:-.04em;
}
.v26-kicker{
  color:#0D7377;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.78rem;
  font-weight:950;
  margin-bottom:10px;
}
.v26-note{
  color:#64758A;
  line-height:1.58;
}
.v26-steps{
  display:grid;
  gap:10px;
  margin-top:14px;
}
.v26-step{
  border:1px solid #D7DEE8;
  border-radius:18px;
  background:#FAFBFD;
  padding:14px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  align-items:start;
  cursor:pointer;
}
.v26-step-num{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#10233A;
  color:#fff;
  font-weight:950;
}
.v26-step.active{
  border-color:#0D7377;
  background:#E7F5F4;
  box-shadow:0 0 0 4px rgba(13,115,119,.10);
}
.v26-step.active .v26-step-num{
  background:#0D7377;
}
.v26-step b{
  display:block;
  margin-bottom:4px;
}
.v26-step span{
  color:#64758A;
  line-height:1.38;
}
.v26-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.v26-btn{
  border:1.6px solid #7244C4;
  border-radius:999px;
  padding:11px 16px;
  background:#fff;
  font-weight:900;
  cursor:pointer;
}
.v26-btn.primary{
  background:linear-gradient(135deg,#0D7377,#56C8C8);
  color:#061220;
}
.v26-btn.soft{
  background:#F5F0FF;
  color:#7244C4;
}
.v26-preset-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:14px;
}
.v26-preset{
  border:1.6px solid #D7DEE8;
  border-radius:20px;
  background:#FAFBFD;
  padding:15px;
  text-align:left;
  cursor:pointer;
  min-height:154px;
  transition:.2s ease;
}
.v26-preset:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(10,22,37,.10);
}
.v26-preset.active{
  border-color:#0D7377;
  background:#E7F5F4;
  box-shadow:0 0 0 4px rgba(13,115,119,.10);
}
.v26-preset b{
  display:block;
  font-size:1.05rem;
  letter-spacing:-.02em;
  margin-bottom:6px;
}
.v26-preset p{
  margin:0;
  color:#64758A;
  line-height:1.38;
}
.v26-preset small{
  display:block;
  margin-top:10px;
  color:#7244C4;
  font-weight:900;
}
.v26-highlight{
  outline:4px solid rgba(13,115,119,.26)!important;
  box-shadow:0 0 0 8px rgba(13,115,119,.12),0 24px 60px rgba(10,22,37,.14)!important;
  transition:.25s ease;
}
.v26-worker-note{
  margin-top:16px;
  border:1px solid #D7DEE8;
  border-left:6px solid #7244C4;
  border-radius:18px;
  background:#FAFBFD;
  padding:15px;
}
@media(max-width:1120px){
  .v26-start{
    grid-template-columns:1fr;
  }
}
@media(max-width:680px){
  .v26-card{
    padding:16px;
    border-radius:22px;
  }
  .v26-preset-grid{
    grid-template-columns:1fr;
  }
}
