/* ── 무료 AI 정밀 진단 마법사 Drawer 스타일 ── */
.consultation-wizard-drawer {
  position: fixed;
  inset: 0;
  z-index: 10100;
  visibility: hidden;
  transition: visibility 0.4s;
}
.consultation-wizard-drawer.active {
  visibility: visible;
}
.wizard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 36, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.consultation-wizard-drawer.active .wizard-overlay {
  opacity: 1;
}
.wizard-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 540px; /* 상세 폼 가로폭 확보 */
  height: 100%;
  background: #FAF8F5;
  border-left: 2px solid #0d2421;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  padding: 30px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  color: #0d2421;
  font-family: 'Sora', sans-serif;
}
.consultation-wizard-drawer.active .wizard-content {
  transform: translate3d(0, 0, 0);
}

.wizard-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #0d2421;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  z-index: 10;
}
.wizard-close-btn:hover {
  opacity: 1;
}
.wizard-header {
  padding-bottom: 12px;
}
.wizard-header-eyebrow {
  font-size: 10px;
  font-weight: 800;
  color: #D86A60;
  letter-spacing: 0.1em;
  display: block;
}
.wizard-header-title {
  font-size: 22px;
  font-weight: 800;
  margin: 4px 0 0 0;
}

/* Progress Bar */
.wizard-progress-bar-wrap {
  width: 100%;
  height: 4px;
  background: rgba(13, 36, 33, 0.08);
  margin-bottom: 24px;
  position: relative;
}
.wizard-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #D86A60;
  transition: width 0.3s ease;
}

.wizard-body {
  flex-grow: 1;
  overflow-y: auto;
}
.wizard-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Info Box */
.wizard-info-box {
  background: rgba(13, 36, 33, 0.04);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(13, 36, 33, 0.04);
}
.wizard-info-box h4 {
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 4px 0;
}
.wizard-info-box p {
  font-size: 11.5px;
  line-height: 1.5;
  margin: 0;
  color: #555555;
}

/* Form Styles */
.wizard-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wizard-form-group label {
  font-size: 12.5px;
  font-weight: 800;
}
.wizard-form-group label .text-red {
  color: #dc2626;
}
.wizard-form-group input[type="text"],
.wizard-form-group input[type="tel"],
.wizard-form-group input[type="url"] {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(13, 36, 33, 0.15);
  background: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  color: #0d2421;
  box-sizing: border-box;
  transition: all 0.25s;
}
.wizard-form-group input:focus {
  outline: none;
  border-color: #0d2421;
  box-shadow: 0 0 0 2px rgba(13, 36, 33, 0.08);
}

/* Grid Select Cards */
.wizard-grid-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.grid-select-card {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(13, 36, 33, 0.1);
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
}
.grid-select-card.active {
  background: #0d2421;
  color: #ffffff;
  border-color: #0d2421;
  box-shadow: 2px 2px 0px 0px #D4A359;
}

/* List Select Cards */
.wizard-list-select {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list-select-card {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(13, 36, 33, 0.1);
  background: #ffffff;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-select-card.active {
  border-color: #0d2421;
  box-shadow: 3px 3px 0px 0px rgba(13, 36, 33, 0.1);
}
.list-select-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #0d2421;
  display: block;
}
.list-select-desc {
  font-size: 10.5px;
  color: #666666;
  display: block;
  margin-top: 4px;
}
.select-check-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #cccccc;
  transition: all 0.25s;
}
.list-select-card.active .select-check-dot {
  border-color: #0d2421;
  background: #0d2421;
}

/* Grid Multi (Checkbox style) */
.wizard-grid-multi {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 480px) {
  .wizard-grid-multi {
    grid-template-columns: 1fr 1fr;
  }
}
.grid-multi-card {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(13, 36, 33, 0.1);
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.grid-multi-card.active {
  border-color: #D86A60;
  box-shadow: 2px 2px 0px 0px rgba(216, 106, 96, 0.2);
}
.multi-check-box {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 2px solid #cccccc;
  transition: all 0.25s;
}
.grid-multi-card.active .multi-check-box {
  border-color: #D86A60;
  background: #D86A60;
}

/* Actions block */
.wizard-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}
.wizard-actions.flex-between {
  justify-content: space-between;
}
.wizard-next-btn, .wizard-submit-btn, .wizard-close-final-btn {
  padding: 14px 24px;
  border-radius: 12px;
  background: #0d2421;
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.wizard-next-btn:hover, .wizard-submit-btn:hover {
  background: #D4A359;
}
.wizard-submit-btn {
  background: #D86A60;
}
.wizard-submit-btn:hover {
  background: #e54e42;
}
.wizard-prev-btn {
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(13, 36, 33, 0.15);
  background: transparent;
  color: #555555;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s;
}
.wizard-prev-btn:hover {
  background: rgba(13, 36, 33, 0.04);
}

/* Analyzing Loader (Simulated AI) */
.wizard-analyzing-box {
  background: #0f172a;
  color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.analyzing-spinner-wrap {
  position: relative;
}
.analyzing-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #D86A60;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.analyzing-eyebrow {
  font-size: 8px;
  font-weight: 800;
  color: #888888;
  letter-spacing: 0.1em;
  margin: 0;
}
.analyzing-title {
  font-size: 13px;
  font-weight: 800;
  margin: 2px 0 0 0;
}
.analyzing-progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  max-width: 240px;
}
.analyzing-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #D86A60, #10b981);
  width: 0;
  transition: width 0.2s;
}
.analyzing-percent {
  font-size: 10px;
  font-weight: 800;
  color: #888888;
}

/* Success Banner */
.wizard-success-banner {
  display: flex;
  gap: 12px;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  padding: 14px;
  border-radius: 12px;
}
.success-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #059669;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.success-title {
  font-size: 12px;
  font-weight: 800;
  color: #065f46;
  margin: 0;
}
.success-desc {
  font-size: 10.5px;
  color: #047857;
  margin: 4px 0 0 0;
  line-height: 1.4;
}

/* Report Card styles */
.wizard-report-card {
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(13, 36, 33, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.report-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.report-tag {
  font-size: 8.5px;
  font-weight: 800;
  color: #888888;
  letter-spacing: 0.05em;
}
.report-profile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.profile-label {
  font-size: 9.5px;
  color: #888888;
  display: block;
}
.profile-value {
  font-size: 12px;
  font-weight: 800;
  color: #0d2421;
  display: block;
  margin-top: 2px;
}
.report-box-neutral {
  background: rgba(13, 36, 33, 0.03);
  padding: 12px;
  border-radius: 10px;
}
.report-text-bold {
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 4px 0;
}
.report-text-desc {
  font-size: 11px;
  line-height: 1.5;
  color: #555555;
  margin: 0;
}
.wizard-close-final-btn {
  width: 100%;
}

/* ── 진행 프로세스 로드맵 낱말 줄바꿈 방지 ── */
.timeline-text {
  white-space: nowrap !important;
  letter-spacing: -0.045em !important; /* 강제로 낱말들이 한 줄로 들어가도록 축소 조율 */
}

/* d-none 단계 제어 */
.d-none {
  display: none !important;
}

/* 골드 진단 신청 버튼 */
.btn-gold {
  background: #D4A359 !important;
  border-color: #D4A359 !important;
  color: #ffffff !important;
  box-shadow: 4px 4px 0px 0px #0d2421 !important;
}
.btn-gold:hover {
  background: #c59349 !important;
  transform: translateY(-2px);
}

/* 마법사 내부 작은 폰트 가독성 보강 */
.wizard-info-box p {
  font-size: 13.5px !important;
  color: #334155 !important;
  line-height: 1.6 !important;
}
.list-select-desc {
  font-size: 12px !important;
  color: #555555 !important;
  margin-top: 5px !important;
  font-weight: 500 !important;
}
.list-select-title {
  font-size: 14px !important;
}
.wizard-form-group label {
  font-size: 14px !important;
}
.grid-multi-card span {
  font-size: 13px !important;
}

/* Drawer 푸터 가로 2개 버튼 그리드 */
.drawer-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.drawer-btn-diag, .drawer-btn-consult {
  padding: 15px 12px;
  border-radius: 12px;
  font-size: 13px !important;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid #0d2421;
}

/* 무료 진단 신청 버튼 (파스텔 하늘색 및 레트로 보더 테마) */
.drawer-btn-diag {
  background: #3B82F6 !important;
  color: #ffffff !important;
  border-color: #0d2421 !important;
  box-shadow: 3px 3px 0px 0px #0d2421;
}
.drawer-btn-diag span {
  color: #ffffff !important;
}
.drawer-btn-diag:hover {
  transform: translateY(-2px);
  background: #2563EB !important;
  border-color: #0d2421 !important;
  box-shadow: 4px 4px 0px 0px #0d2421;
}

/* 일반 상담 문의 버튼 (다크 네이비 테마) */
.drawer-btn-consult {
  background: #0d2421 !important;
  color: #ffffff !important;
  box-shadow: 3px 3px 0px 0px rgba(212, 163, 89, 0.35);
}
.drawer-btn-consult span {
  color: #ffffff !important;
}
.drawer-btn-consult:hover {
  transform: translateY(-2px);
  background: #D4A359 !important;
  border-color: #D4A359 !important;
  box-shadow: 4px 4px 0px 0px #0d2421;
}

.drawer-btn-diag:active, .drawer-btn-consult:active {
  transform: translateY(0);
  scale: 0.98;
}

/* 로드맵 숫자 잘림 방지 (정적 정렬) */
.timeline-step {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  position: relative !important;
  margin-bottom: 8px !important;
}
.timeline-num {
  position: static !important;
  left: 0 !important;
  margin-left: 0 !important;
  margin-top: 6px !important;
  flex-shrink: 0 !important;
  background: #0d2421 !important;
  color: #ffffff !important;
}
.timeline-text {
  margin-left: 0 !important;
  white-space: nowrap !important;
  letter-spacing: -0.045em !important;
}

/* 마법사 내부 버튼 글자색 무조건 보이도록 복구 */
.wizard-next-btn, .wizard-submit-btn, .wizard-close-final-btn {
  color: #ffffff !important;
  background: #0d2421 !important;
  border: 2px solid #0d2421 !important;
}
.wizard-next-btn span, .wizard-submit-btn span, .wizard-close-final-btn span {
  color: #ffffff !important;
}
.wizard-next-btn:hover, .wizard-submit-btn:hover {
  background: #D4A359 !important;
  border-color: #D4A359 !important;
}

.wizard-prev-btn {
  color: #555555 !important;
  background: #ffffff !important;
  border: 1px solid rgba(13, 36, 33, 0.15) !important;
}

/* 오버스크롤 체이닝 방지 (스크롤 끝 도달 시 홈페이지 스크롤 방지) */
.drawer-content, .drawer-body, .wizard-content, .wizard-body {
  overscroll-behavior: contain !important;
}

/* ── 진단 리포트 창 글자 크기 대폭 확대 및 색상 대비 상향 ── */
.wizard-success-banner h4.success-title {
  font-size: 14.5px !important;
  color: #065f46 !important;
}
.wizard-success-banner p.success-desc {
  font-size: 13px !important;
  color: #047857 !important;
  line-height: 1.5 !important;
}
.report-tag {
  font-size: 12px !important;
  font-weight: 800 !important;
  color: #475569 !important; /* 더 어두운 색상으로 대비 확보 */
  letter-spacing: 0.05em !important;
  margin-bottom: 4px !important;
  display: inline-block !important;
}
.profile-label {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #64748b !important;
}
.profile-value {
  font-size: 15px !important;
  font-weight: 900 !important;
  color: #0d2421 !important;
  margin-top: 4px !important;
}
.report-score-box span {
  font-size: 13.5px !important;
  font-weight: 800 !important;
}
.report-score-box #repScore {
  font-size: 20px !important;
  font-weight: 900 !important;
  color: #D4A359 !important;
}
.report-text-bold {
  font-size: 14.5px !important;
  font-weight: 800 !important;
  color: #0d2421 !important;
}
.report-text-desc {
  font-size: 13.5px !important;
  line-height: 1.65 !important;
  color: #334155 !important;
  font-weight: 600 !important;
}
.report-box-neutral {
  padding: 14px 16px !important;
}
#repKeywords {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #0d2421 !important;
}

/* MA2 사양 무한 가로 슬라이딩 마퀴 스타일 */
.review-column-right {
  width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
}
.review-marquee-container {
  overflow: hidden !important;
  width: 100% !important;
  position: relative !important;
  padding: 12px 0 30px !important;
}
.marquee-blur-left, .marquee-blur-right {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 32px !important;
  z-index: 10 !important;
  pointer-events: none !important;
}
.marquee-blur-left {
  left: 0 !important;
  background: linear-gradient(to right, var(--beige) 0%, rgba(248, 243, 236, 0.72) 35%, rgba(248, 243, 236, 0) 100%) !important;
}
.marquee-blur-right {
  right: 0 !important;
  background: linear-gradient(to left, var(--beige) 0%, rgba(248, 243, 236, 0.72) 35%, rgba(248, 243, 236, 0) 100%) !important;
}
.review-marquee-track {
  display: flex !important;
  width: max-content !important;
  gap: 24px !important;
  animation: marquee-scroll 45s linear infinite !important;
  will-change: transform !important;
}
.review-marquee-track:hover {
  animation-play-state: paused !important;
}
@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-33.3333%, 0, 0);
  }
}

@media (max-width: 768px) {
  .wizard-content {
    width: 100% !important;
    max-width: none !important;
    padding: 22px 14px 18px !important;
  }

  .wizard-close-btn {
    top: 14px !important;
    right: 14px !important;
  }

  .wizard-header {
    padding-right: 34px !important;
  }

  .wizard-header-title {
    font-size: 20px !important;
    line-height: 1.3 !important;
    word-break: keep-all !important;
  }

  .wizard-step {
    gap: 16px !important;
  }

  .wizard-grid-select {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .grid-select-card {
    min-width: 0 !important;
    padding: 11px 6px !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  .wizard-list-select {
    gap: 8px !important;
  }

  .list-select-card {
    min-width: 0 !important;
    padding: 12px !important;
    gap: 10px !important;
  }

  .list-select-title,
  .list-select-desc,
  .grid-multi-card {
    line-height: 1.45 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  .wizard-grid-multi {
    grid-template-columns: 1fr !important;
  }

  .wizard-form-group input[type="text"],
  .wizard-form-group input[type="tel"],
  .wizard-form-group input[type="url"] {
    min-width: 0 !important;
    padding: 12px !important;
    box-sizing: border-box !important;
  }
}

/* MA2 사양 무한 가로 슬라이딩 마퀴 스타일 */
.review-column-right {
  width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
}
.review-marquee-container {
  overflow: hidden !important;
  width: 100% !important;
  position: relative !important;
  padding: 12px 0 30px !important;
}
.marquee-blur-left, .marquee-blur-right {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 32px !important;
  z-index: 10 !important;
  pointer-events: none !important;
}
.marquee-blur-left {
  left: 0 !important;
  background: linear-gradient(to right, var(--beige) 0%, rgba(248, 243, 236, 0.72) 35%, rgba(248, 243, 236, 0) 100%) !important;
}
.marquee-blur-right {
  right: 0 !important;
  background: linear-gradient(to left, var(--beige) 0%, rgba(248, 243, 236, 0.72) 35%, rgba(248, 243, 236, 0) 100%) !important;
}
.review-marquee-track {
  display: flex !important;
  width: max-content !important;
  gap: 24px !important;
  animation: marquee-scroll 45s linear infinite !important;
  will-change: transform !important;
}
.review-marquee-track:hover {
  animation-play-state: paused !important;
}
@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-33.3333%, 0, 0);
  }
}


/* ── Section 3 & 4 Animation Additions ── */

/* Section 3 Staggered Entrance */
#section-3 .trend-header,
#section-3 .trend-grid .trend-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.section.active#section-3 .trend-header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.section.active#section-3 .trend-grid .trend-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}
.section.active#section-3 .trend-grid .trend-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.trend-card:hover {
  transform: translateY(-5px) !important;
}

/* Section 3 Typing Simulator style */
.ne-post-body {
  position: relative;
  display: inline-block;
  min-height: 80px;
}
.ne-post-body.typing::after {
  content: '|';
  margin-left: 2px;
  color: #00c73c;
  font-weight: bold;
  animation: blinkCursor 0.6s step-end infinite;
}
@keyframes blinkCursor {
  from, to { color: transparent; }
  50% { color: #00c73c; }
}

/* Section 3 AI Mockup components default hidden */
.naver-ai-mockup .na-ai-box,
.naver-ai-mockup .na-sources {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.naver-ai-mockup .na-source-item {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.naver-ai-mockup .na-ai-box.simulated-show,
.naver-ai-mockup .na-sources.simulated-show {
  opacity: 1;
  transform: translateY(0);
}
.naver-ai-mockup .na-source-item.simulated-show {
  opacity: 1;
  transform: translateX(0);
}

/* Section 4 Staggered Entrance */
#section-4 .method-header,
#section-4 .method-grid .method-visual-panel,
#section-4 .method-grid .method-visual-monitor,
#section-4 .method-grid .method-info-panel {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.section.active#section-4 .method-header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.section.active#section-4 .method-grid .method-visual-panel {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}
.section.active#section-4 .method-grid .method-visual-monitor {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.section.active#section-4 .method-grid .method-info-panel {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

/* Section 4 Simulator: Table rows default hidden */
.seo-app-mockup .app-table tbody tr {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.seo-app-mockup .app-table tbody tr.simulated-show {
  opacity: 1;
  transform: translateY(0);
}

/* Section 4 Simulator: Monitor post cards default hidden */
.naver-blog-home-mockup .nbh-post-card {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.naver-blog-home-mockup .nbh-post-card.simulated-show {
  opacity: 1;
  transform: translateY(0);
}

