/* TRO应诉页面差异化样式 */
.tro-response-page {
  letter-spacing: 0;
  color: #1f2933;
}
.tro-response-page .response-hero .header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  max-width: 760px;
  width: min(760px, calc(100% - 40px));
  height: auto;
  display: block;
  background-color: transparent !important;
  text-align: center;
  transform: translate(-50%, -50%);
}
.tro-response-page .response-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
  pointer-events: none;
}
.response-section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
}
.response-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: stretch;
}
.response-copy,
.response-panel,
.decision-card,
.rule-brief-item,
.timeline-step {
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(19, 31, 48, 0.06);
}
.response-copy {
  padding: 34px;
  border-left: 4px solid var(--primary-color);
}
.tro-response-page .response-risk-intro {
  padding-bottom: 6px;
}
.response-copy h2 {
  font-size: 30px;
  line-height: 1.35;
  margin: 0 0 18px;
}
.response-copy p {
  color: #53616f;
  font-size: 16px;
  line-height: 1.8;
}
.response-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.tro-response-page .response-actions .handle-btn {
  margin: 0;
}
.text-link {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.response-panel {
  padding: 28px;
  background: #fcfcfd;
}
.response-panel h3 {
  color: #111827;
  font-size: 20px;
  margin: 0 0 16px;
}
.response-panel ul,
.material-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.response-panel li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  color: #4b5563;
  line-height: 1.6;
}
.response-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
}
.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.decision-card {
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.decision-card:hover,
.timeline-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(19, 31, 48, 0.1);
}
.decision-card.strong {
  border-top: 4px solid var(--primary-color);
}
.decision-tag {
  display: inline-block;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.decision-card h3,
.timeline-step h3,
.rule-brief-item strong {
  color: #111827;
  font-size: 19px;
  line-height: 1.45;
  margin: 0 0 12px;
}
.decision-card p,
.rule-brief-item p,
.timeline-step p {
  color: #5f6c7b;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
.rule-brief {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.rule-brief-item {
  padding: 22px;
}
.rule-brief-item strong {
  display: block;
  color: var(--primary-color);
}
.response-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.timeline-step {
  position: relative;
  padding: 24px 20px;
  min-height: 245px;
  overflow: hidden;
}
.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(254, 153, 6, 0.12);
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 18px;
}
.timeline-step::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(254, 153, 6, 0.08);
}
.response-materials {
  align-items: stretch;
}
.response-materials .material-card {
  position: relative;
  align-items: flex-start;
  text-align: left;
  min-height: 100%;
  padding: 26px 24px 24px;
  border: 1px solid #e9edf3;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(19, 31, 48, 0.05);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.response-materials .material-card .iconfont {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid rgba(254, 153, 6, 0.35);
  background: rgba(254, 153, 6, 0.06);
  font-size: 20px;
  color: var(--primary-color);
}

.tro-response-page .response-materials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tro-response-page .response-materials .material-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  color: #d7dce2;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.tro-response-page .response-materials .material-card:nth-child(1)::after { content: "01"; }
.tro-response-page .response-materials .material-card:nth-child(2)::after { content: "02"; }
.tro-response-page .response-materials .material-card:nth-child(3)::after { content: "03"; }
.tro-response-page .response-materials .material-card:nth-child(4)::after { content: "04"; }

.tro-response-page .response-materials .material-card:hover {
  transform: translateY(-3px);
  border-color: #ffd8b0;
  box-shadow: 0 14px 30px rgba(19, 31, 48, 0.08);
}

.tro-response-page .response-materials .material-card h3 {
  width: 100%;
  margin: 0 0 12px;
  padding-right: 40px;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.tro-response-page .response-materials .material-card ul {
  width: 100%;
}

.tro-response-page .response-materials .material-card li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  color: #5f6c7b;
  font-size: 14px;
  line-height: 1.75;
}

.tro-response-page .response-materials .material-card li:last-child {
  margin-bottom: 0;
}

.tro-response-page .response-materials .material-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
}
.response-warning .notes-row {
  margin-bottom: 20px;
}
.final-cta {
  margin-top: 10px !important;
}

.tro-response-page #response-faq {
  width: min(1120px, calc(100% - 40px));
  padding: 34px 0 20px;
}
.tro-response-page #response-faq .module-titles {
  margin-bottom: 18px;
}
.tro-response-page .faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
  border-top: 0;
}
.tro-response-page .faq-item {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.tro-response-page .faq-item:hover {
  transform: translateY(-1px);
  border-color: rgba(254, 153, 6, 0.22);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}
.tro-response-page .faq-item.active {
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  border-color: rgba(254, 153, 6, 0.28);
  box-shadow: 0 18px 40px rgba(254, 153, 6, 0.08);
}
.tro-response-page .faq-q {
  width: 100%;
  min-height: 60px;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: #111827;
  text-align: left;
  cursor: pointer;
}
.tro-response-page .faq-q::before {
  content: none;
}
.tro-response-page .faq-q:focus-visible {
  outline: 2px solid rgba(254, 153, 6, 0.45);
  outline-offset: -2px;
}
.tro-response-page .faq-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(254, 153, 6, 0.12);
  color: #f59e0b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}
.tro-response-page .faq-title {
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  min-width: 0;
}
.tro-response-page .faq-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border-radius: 50%;
  color: #f59e0b;
  background: rgba(255, 247, 237, 0.9);
  border: 1px solid rgba(254, 153, 6, 0.35);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: color 0.22s ease, transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}
.tro-response-page .faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 18px;
  transition: grid-template-rows 0.24s ease, padding 0.24s ease;
}
.tro-response-page .faq-a {
  overflow: hidden;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
  padding: 0 18px 0 18px;
  border-left: 0;
  border-radius: 10px;
  background: #f8fafc;
  position: relative;
}
.tro-response-page .faq-a::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(254, 153, 6, 0.95), rgba(254, 153, 6, 0.45));
  opacity: 0;
  transition: opacity 0.22s ease;
}
.tro-response-page .faq-item.active .faq-title {
  color: #111827;
}
.tro-response-page .faq-item.active .faq-icon {
  color: #fff;
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: none;
}
.tro-response-page .faq-item.active .faq-a-wrap {
  display: grid;
  grid-template-rows: 1fr;
  padding: 0 18px 14px;
}
.tro-response-page .faq-item.active .faq-a {
  padding-top: 14px;
  padding-bottom: 14px;
  color: #4b5563;
}
.tro-response-page .faq-item.active .faq-a::before {
  opacity: 1;
}
@media (max-width: 768px) {
  .tro-response-page .plan-timeline .plan-step::before,
  .tro-response-page .plan-timeline .plan-step::after {
    content: none !important;
  }
  .tro-response-page #response-faq {
    width: calc(100% - 24px);
    padding-top: 22px;
  }
  .tro-response-page #response-faq .module-titles {
    margin-bottom: 10px;
  }
  .tro-response-page .faq-list {
    gap: 10px;
  }
  .tro-response-page .faq-q {
    grid-template-columns: 28px 1fr 28px;
    min-height: 54px;
    gap: 10px;
    padding: 0 14px;
  }
  .tro-response-page .faq-num {
    font-size: 12px;
    width: 22px;
    height: 22px;
  }
  .tro-response-page .faq-title {
    font-size: 13px;
  }
  .tro-response-page .faq-icon {
    font-size: 16px;
    width: 22px;
    height: 22px;
  }
  .tro-response-page .faq-a-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }
  .tro-response-page .faq-a {
    font-size: 12px;
    line-height: 1.75;
    padding: 0 14px 0 14px;
  }
  .tro-response-page .faq-a::before {
    left: 14px;
    top: 12px;
    bottom: 12px;
  }
  .tro-response-page .faq-item.active .faq-a-wrap {
    padding: 0 12px 12px;
  }
  .tro-response-page .faq-item.active .faq-a {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}

.tro-solve-modal-open {
  overflow: hidden;
}

#solveFormOverlay.shensu-box {
  top: 0;
  z-index: 2147483647 !important;
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.tro-response-page .tro-image {
  margin: 12px auto;
  max-width: 1200px;
  width: calc(100% - 40px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(19, 31, 48, 0.08);
  transition: box-shadow 0.3s ease;
}
.tro-response-page .tro-image:hover {
  box-shadow: 0 12px 28px rgba(19, 31, 48, 0.14);
}
.tro-response-page .tro-image img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.tro-response-page .tro-image img:hover {
  transform: scale(1.02);
}

/* Hero 补充描述 */
.tro-response-page .response-hero .hero-desc {
  margin-top: 14px;
  color: #f1f3f6;
  font-size: 16px;
  line-height: 1.8;
}

/* 章节引导语 */
.section-lead {
  max-width: 900px;
  margin: -6px auto 0;
  text-align: center;
  color: #5f6c7b;
  font-size: 16px;
  line-height: 1.8;
}
.response-plans-intro {
  padding-bottom: 6px;
}

/* 风险科普：忽视后果列表 */
.response-panel.danger-panel {
  background: #fff8f2;
  border-color: #ffe0c2;
}
.response-panel.danger-panel h3 {
  color: #d9480f;
}
.danger-list {
  counter-reset: danger;
}
.danger-list li {
  padding-left: 34px;
  margin-bottom: 16px;
  color: #4b5563;
  line-height: 1.7;
}
.danger-list li::before {
  counter-increment: danger;
  content: counter(danger);
  top: 1px;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 处理方案模块 */
.plan-block {
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(19, 31, 48, 0.06);
  padding: 30px;
}
.plan-block.plan-b {
  border-top: 4px solid var(--primary-color);
}
.plan-header {
  margin-bottom: 22px;
}
.plan-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.plan-header h3 {
  color: #111827;
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 10px;
}
.plan-scene {
  color: #6b7684;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.plan-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.plan-step {
  position: relative;
  padding: 22px 20px;
  background: #fbfbfc;
  border: 1px solid #eef1f5;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tro-response-page .plan-timeline .plan-step:not(:nth-child(4)):not(:nth-child(7))::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 22px;
  height: 8px;
  background: #ffb300;
  transform: translateY(-50%);
  z-index: 2;
}

.tro-response-page .plan-timeline .plan-step:not(:nth-child(4)):not(:nth-child(7))::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -34px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #ffb300;
  transform: translateY(-50%);
  z-index: 2;
}

.tro-response-page .plan-timeline .plan-step:nth-child(4)::before,
.tro-response-page .plan-timeline .plan-step:nth-child(4)::after,
.tro-response-page .plan-timeline .plan-step:nth-child(7)::before,
.tro-response-page .plan-timeline .plan-step:nth-child(7)::after {
  content: none;
}
.plan-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(19, 31, 48, 0.1);
}
.plan-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(254, 153, 6, 0.12);
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 14px;
}
.plan-step h4 {
  color: #111827;
  font-size: 17px;
  line-height: 1.45;
  margin: 0 0 10px;
}
.plan-step p {
  color: #5f6c7b;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.step-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  color: #5f6c7b;
  font-size: 14px;
  line-height: 1.7;
}
.step-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
}
.hero-tags {
  font-weight: 700;
}
.plan-highlight {
  margin-top: 22px;
  padding: 18px 22px;
  background: #fff8f2;
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
}
.plan-highlight strong {
  color: #d9480f;
}

/* 核心优势网格 */
.advantage-grid .decision-card {
  border-top: 3px solid rgba(254, 153, 6, 0.35);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 16px;
}
.faq-item {
  padding: 22px 26px;
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(19, 31, 48, 0.05);
}
.faq-q {
  color: #111827;
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 10px;
  padding-left: 18px;
  position: relative;
}
.faq-q::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--primary-color);
}
.faq-a {
  color: #5f6c7b;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

#solveFormOverlay .page-container {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: min(420px, calc(100vw - 32px));
  min-height: 100dvh;
  margin: 0 auto;
  padding: 28px 0;
  justify-content: center;
}

#solveFormOverlay .form-card {
  width: 100%;
  max-height: calc(100dvh - 56px);
  overscroll-behavior: contain;
}
@media (max-width: 1024px) {
  .response-grid,
  .decision-grid,
  .rule-brief,
  .response-timeline {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .tro-solve-modal-open .scroll-to-top,
  .tro-solve-modal-open .floating-nav,
  .tro-solve-modal-open [style*="position: fixed"][style*="bottom"],
  .tro-solve-modal-open [style*="position:fixed"][style*="bottom"] {
    display: none !important;
  }

  #solveFormOverlay.shensu-box {
    padding: 0 0 calc(76px + env(safe-area-inset-bottom));
  }

  #solveFormOverlay .page-container {
    width: calc(100vw - 30px);
    min-height: 100dvh;
    padding: 80px 0 calc(96px + env(safe-area-inset-bottom));
    justify-content: flex-start;
  }

  #solveFormOverlay .form-card {
    max-height: calc(100dvh - 96px - env(safe-area-inset-bottom));
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  #solveFormOverlay .submit-btn {
    position: relative;
    bottom: auto;
    z-index: 2;
    margin-bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .response-section {
    width: calc(100% - 30px);
    padding: 14px 0;
  }
  .response-grid,
  .decision-grid,
  .rule-brief,
  .response-timeline {
    grid-template-columns: 1fr;
  }
  .response-copy,
  .response-panel,
  .decision-card,
  .rule-brief-item,
  .timeline-step {
    padding: 20px;
  }
  .response-copy h2 {
    font-size: 22px;
  }
  .response-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .response-warning .notes-row {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
  }
  .response-warning .notes-row:last-child {
    margin-bottom: 0;
  }
  .response-warning .note-card {
    width: 100%;
    align-items: flex-start;
    padding: 18px 18px 18px 22px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(19, 31, 48, 0.08);
  }
  .response-warning .note-card .iconfont {
    font-size: 24px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
  }
  .response-warning .note-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    line-height: 1.4;
  }
  .response-warning .note-card p {
    font-size: 13px;
    line-height: 1.65;
  }

  .tro-response-page .tro-image {
    width: calc(100% - 30px);
    margin: 8px auto;
    border-radius: 6px;
  }
  .tro-response-page .tro-image img {
    height: 200px;
    object-fit: cover;
    object-position: center top;
  }

  .tro-response-page .response-hero .hero-desc {
    font-size: 14px;
  }
  .tro-response-page .response-materials {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tro-response-page .response-materials .material-card {
    padding: 20px 18px 18px;
  }
  .tro-response-page .response-materials .material-card .iconfont {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    font-size: 18px;
  }
  .tro-response-page .response-materials .material-card::after {
    right: 14px;
    top: 14px;
    font-size: 16px;
  }
  .tro-response-page .response-materials .material-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .tro-response-page .response-materials .material-card li {
    font-size: 13px;
    line-height: 1.68;
    margin-bottom: 8px;
  }
  .section-lead {
    font-size: 14px;
    line-height: 1.65;
    padding: 0 4px;
  }
  .plan-block {
    padding: 18px 16px 8px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(19, 31, 48, 0.045);
  }
  .plan-block.plan-b {
    border-top-width: 3px;
  }
  .plan-header {
    margin-bottom: 12px;
  }
  .plan-header h3 {
    font-size: 17px;
    line-height: 1.45;
    margin-bottom: 8px;
  }
  .plan-scene {
    font-size: 13px;
    line-height: 1.65;
  }
  .plan-timeline {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .plan-timeline::before {
    content: "";
    position: absolute;
    top: 17px;
    bottom: 20px;
    left: 15px;
    width: 1px;
    background: #ffd8a3;
  }
  .plan-step {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 10px;
    padding: 14px 0 16px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #eef1f5;
    border-radius: 0;
  }
  .plan-step:last-child {
    border-bottom: 0;
  }
  .plan-step:hover {
    transform: none;
    box-shadow: none;
  }
  .plan-step-num {
    position: relative;
    z-index: 1;
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 32px;
    height: 32px;
    margin: 0;
    border: 1px solid #ffd8a3;
    background: #fff7eb;
    font-size: 11px;
  }
  .plan-step h4 {
    grid-column: 2;
    margin: 2px 0 6px;
    font-size: 15px;
    line-height: 1.45;
  }
  .plan-step p {
    grid-column: 2;
    font-size: 13px;
    line-height: 1.68;
  }
  .faq-item {
    padding: 18px 20px;
  }
  .faq-q {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .response-section {
    width: calc(100% - 20px);
  }
  .plan-block {
    padding: 16px 12px 6px;
  }
  .plan-header h3 {
    font-size: 16px;
  }
  .plan-scene {
    font-size: 12.5px;
  }
  .plan-timeline::before {
    left: 14px;
  }
  .plan-step {
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 9px;
    padding: 13px 0 15px;
  }
  .plan-step-num {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  .plan-step h4 {
    margin-top: 1px;
    font-size: 14px;
  }
  .plan-step p {
    font-size: 12px;
    line-height: 1.65;
  }
}
