.guide-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.guide-hero {
  background: #ffffff;
  border: 1px solid #dbe6f3;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(15, 47, 85, 0.06);
}

.guide-hero__eyebrow {
  margin: 0 0 8px;
  color: #f39c12;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.guide-hero h1 {
  margin: 0 0 12px;
  color: var(--ns-header);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
}

.guide-hero__text {
  max-width: 850px;
  color: var(--ns-muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.guide-card {
  background: #ffffff;
  border: 1px solid #dbe6f3;
  border-radius: 16px;
  padding: 20px;
}

.guide-card h2,
.guide-card h3 {
  margin-top: 0;
  color: var(--ns-header);
}

.guide-card p,
.guide-card li {
  color: #344054;
  line-height: 1.65;
}

.guide-card ul,
.guide-card ol {
  padding-left: 20px;
  margin-bottom: 0;
}

.guide-section {
  margin-top: 22px;
}

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

.guide-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  background: #f8fbff;
  border: 1px solid #e6eef8;
  border-radius: 14px;
  padding: 14px;
}

.guide-step__num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f2f55;
  color: #ffffff;
  font-weight: 800;
}

.guide-step h3 {
  margin: 0 0 4px;
  color: var(--ns-header);
}

.guide-step p {
  margin: 0;
  color: #475467;
  line-height: 1.6;
}

.guide-note {
  background: #fffaf0;
  border: 1px solid #f4d39b;
  border-radius: 14px;
  padding: 16px;
  color: #7a4b00;
  line-height: 1.65;
}

.guide-video-placeholder {
  border: 1px dashed #9fb5d0;
  border-radius: 14px;
  padding: 18px;
  background: #f8fbff;
  color: #475467;
}

@media (max-width: 800px) {
  .guide-hero {
    padding: 20px;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

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

  .guide-actions .ns-btn {
    width: 100%;
  }
}
