#bizGuideMain {
  width: 100%;
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-background, #fdfeff);
}

#bizGuideFirst {
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(
    180deg,
    var(--bg-background, #fdfeff) 0%,
    var(--bg-surface-variant, #f7f8fa) 100%
  );
}

#bizGuideSecond {
  width: 100%;
  padding: 80px 0;
  background: var(--bg-surface-variant, #f7f8fa);
}

#bizGuideThird {
  width: 100%;
  padding: 80px 0;
  background: var(--bg-surface-variant, #f7f8fa);
}

#bizGuideFourth {
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(
    180deg,
    var(--bg-surface-variant, #f7f8fa) 0%,
    var(--bg-background, #fdfeff) 100%
  );
}

#bizGuideFifth {
  width: 100%;
  padding: 50px 0;
  background: var(--bg-background, #fdfeff);
}

#bizGuideFinal {
  width: 100%;
  padding: 60px 0 40px 0;
}

#userGuideMain {
  width: 100%;
  padding: 60px 0 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-background, #fdfeff);
}

#userGuideFirst {
  width: 100%;
  background: linear-gradient(
    180deg,
    var(--bg-background, #fdfeff) 0%,
    var(--bg-surface-variant, #f7f8fa) 100%
  );
}

#userGuideSecond {
  width: 100%;
  padding: 60px 0 80px 0;
  background: var(--bg-surface-variant, #f7f8fa);
}

#userGuideThird {
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(
    180deg,
    var(--bg-surface-variant, #f7f8fa) 0%,
    var(--bg-background, #fdfeff) 100%
  );
}

#userGuideFourth {
  width: 100%;
  padding: 50px 0;
  background: var(--bg-background, #fdfeff);
}

#userGuideFinal {
  width: 100%;
  padding: 60px 0 40px 0;
}

.guide-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ==========================================
   4. 가이드 모달 스타일
   ========================================= */
.guide-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 100000;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}
.guide-modal.open {
  display: block;
}
.guide-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 100001;
  cursor: pointer;
}
.guide-modal-card {
  position: absolute;
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 100002;
}
.guide-modal-card::before,
.guide-modal-card::after {
  content: "";
  position: absolute;
  left: var(--arrow-left, 50%);
  transform: translateX(-50%);
}
.guide-modal-card::after {
  top: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
.guide-option {
  text-decoration: none;
  color: #111;
  font-size: 17px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.425px;
  cursor: pointer;
}
.guide-option:focus {
  outline: none;
}
.guide-option.active {
  color: #f00;
}
.guide-divider {
  width: 1px;
  height: 24px;
  background: #e0e0e0;
}
