.guide-header{
  padding:28px 0 44px;
  position:relative;
  z-index:1;
}

.guide-back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:44px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#efe8ff;
  font-size:14px;
  font-weight:700;
  margin-bottom:22px;
}

.guide-hero{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:24px;
  align-items:stretch;
}

.guide-lead{
  margin:18px 0 0;
  max-width:820px;
  color:var(--muted);
  font-size:18px;
  line-height:1.78;
}

.guide-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.guide-hero-card,
.guide-card,
.guide-panel,
.guide-kids-box,
.guide-cta-box{
  border-radius:28px;
  padding:24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    rgba(18,10,34,.72);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 44px rgba(0,0,0,.22);
}

.guide-hero-card h2,
.guide-cta-box h2{
  margin:0 0 12px;
  font-size:30px;
  line-height:1.12;
  letter-spacing:-.02em;
  font-weight:900;
}

.guide-checks,
.guide-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.guide-checks li,
.guide-list li{
  position:relative;
  padding-left:24px;
  color:#eee7ff;
  font-size:15px;
  line-height:1.65;
}

.guide-checks li::before,
.guide-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--accent), var(--primary));
}

.guide-main{
  position:relative;
  z-index:1;
}

.guide-section{
  padding:72px 0;
}

.guide-grid{
  display:grid;
  gap:20px;
}

.guide-grid-2{
  grid-template-columns:repeat(2, minmax(0,1fr));
}

.guide-grid-3{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.guide-card h3,
.guide-panel h3{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.15;
  font-weight:900;
}

.guide-card p,
.guide-panel p,
.guide-kids-box p,
.guide-cta-box p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.74;
}

.guide-kids-box{
  max-width:920px;
}

.guide-kids-box p + p{
  margin-top:14px;
}

.guide-steps{
  display:grid;
  gap:16px;
}

.guide-step{
  display:grid;
  grid-template-columns:64px minmax(0,1fr);
  gap:18px;
  align-items:flex-start;
  border-radius:24px;
  padding:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    rgba(18,10,34,.72);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 44px rgba(0,0,0,.20);
}

.guide-step-no{
  width:64px;
  height:64px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(139,92,246,.24), rgba(216,180,254,.14));
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-size:24px;
  font-weight:900;
}

.guide-step h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.15;
  font-weight:900;
}

.guide-step p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.72;
}

.good-panel{
  border-color:rgba(34,197,94,.20);
}

.bad-panel{
  border-color:rgba(239,68,68,.20);
}

.danger-panel{
  border-color:rgba(239,68,68,.26);
}

.guide-note{
  margin-top:20px;
  padding:18px 20px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#f1ebff;
  font-size:15px;
  line-height:1.7;
}

.guide-cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.guide-cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

@media (max-width: 1100px){
  .guide-hero,
  .guide-grid-3,
  .guide-grid-2{
    grid-template-columns:1fr;
  }

  .guide-cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 760px){
  .guide-header{
    padding:18px 0 28px;
  }

  .guide-lead{
    font-size:15px;
    line-height:1.72;
  }

  .guide-hero-card,
  .guide-card,
  .guide-panel,
  .guide-kids-box,
  .guide-cta-box,
  .guide-step{
    padding:18px;
    border-radius:22px;
  }

  .guide-hero-card h2,
  .guide-cta-box h2,
  .guide-card h3,
  .guide-panel h3,
  .guide-step h3{
    font-size:22px;
  }

  .guide-step{
    grid-template-columns:1fr;
    gap:14px;
  }

  .guide-step-no{
    width:52px;
    height:52px;
    border-radius:16px;
    font-size:20px;
  }

  .guide-hero-actions,
  .guide-cta-actions{
    display:grid;
    width:100%;
  }

  .guide-hero-actions .btn,
  .guide-cta-actions .btn{
    width:100%;
  }
}
.guide-hero-single{
  grid-template-columns:1fr;
}

.guide-intro-box{
  max-width:920px;
  margin:0 auto;
  padding:28px;
  border-radius:28px;
  background:
    radial-gradient(circle at top left, rgba(139,92,246,.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    rgba(18,10,34,.72);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 44px rgba(0,0,0,.22);
}

.guide-intro-box h2{
  margin:0 0 14px;
  font-size:30px;
  line-height:1.12;
  letter-spacing:-.02em;
  font-weight:900;
}

.guide-intro-box p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.78;
}

.guide-intro-box p + p{
  margin-top:14px;
}

.lively-steps .guide-step{
  position:relative;
  overflow:hidden;
}

.lively-steps .guide-step::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, var(--primary), var(--accent));
  opacity:.9;
}

.lively-steps .guide-step:nth-child(odd){
  transform:translateY(0);
}

.lively-steps .guide-step:hover{
  transform:translateY(-4px);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  box-shadow:0 24px 54px rgba(0,0,0,.26);
  border-color:rgba(196,181,253,.20);
}

.guide-card,
.guide-panel,
.guide-intro-box{
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.guide-card:hover,
.guide-panel:hover,
.guide-intro-box:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 52px rgba(0,0,0,.24);
  border-color:rgba(196,181,253,.20);
}

@media (max-width: 760px){
  .guide-intro-box{
    padding:20px;
    border-radius:22px;
  }

  .guide-intro-box h2{
    font-size:24px;
  }

  .guide-intro-box p{
    font-size:15px;
    line-height:1.72;
  }
}