.second-hand-guide {
  --guide-navy: #160638;
  --guide-blue: #2489ee;
  --guide-orange: #f28a13;
  --guide-text: #4f5362;
  color: var(--guide-text);
  font-size: 1.02rem;
  line-height: 1.78;
}

.second-hand-guide h2,
.second-hand-guide h3 {
  color: var(--guide-navy);
}

.second-hand-guide h2 {
  margin: 54px 0 18px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.second-hand-guide h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.second-hand-guide p {
  margin-bottom: 18px;
}

.second-hand-guide__lead {
  padding: 26px 28px;
  border-left: 5px solid var(--guide-blue);
  border-radius: 0 16px 16px 0;
  background: #f2f7fd;
  color: #303746;
  font-size: 1.08rem;
}

.second-hand-guide__question {
  margin: 32px 0;
  padding: 24px 28px;
  border: 1px solid #e3e7ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(22, 6, 56, 0.07);
  color: var(--guide-navy);
  font-size: 1.18rem;
  font-weight: 700;
}

.second-hand-guide__question span {
  display: block;
  margin-top: 8px;
  color: var(--guide-blue);
}

.second-hand-guide__quote {
  margin: 54px 0;
  padding: 42px 38px;
  border: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, #160638 0%, #222f5a 100%);
  box-shadow: 0 22px 52px rgba(22, 6, 56, 0.18);
  color: #fff;
  font-size: clamp(1.65rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.035em;
  text-align: center;
}

.second-hand-guide__quote::before {
  display: block;
  margin-bottom: 12px;
  color: var(--guide-orange);
  content: """;
  font-size: 3rem;
  line-height: 0.65;
}

.second-hand-guide__risk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0 38px;
  padding: 0;
  list-style: none;
  counter-reset: risk-card;
}

.second-hand-guide__risk-grid li {
  position: relative;
  padding: 26px 24px 24px 68px;
  border: 1px solid #e1e5ed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 6, 56, 0.055);
  counter-increment: risk-card;
}

.second-hand-guide__risk-grid li::before {
  position: absolute;
  top: 24px;
  left: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(242, 138, 19, 0.13);
  color: #c66500;
  content: counter(risk-card);
  font-weight: 800;
}

.second-hand-guide__risk-grid p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.66;
}

.second-hand-guide__formula {
  margin: 28px 0;
  padding: 25px 28px;
  border-radius: 18px;
  background: #fff7ec;
  color: #5b3412;
  font-weight: 700;
  text-align: center;
}

.second-hand-guide__table-wrap {
  margin: 26px 0 42px;
  overflow-x: auto;
  border: 1px solid #dfe4ec;
  border-radius: 18px;
  background: #fff;
}

.second-hand-guide__table {
  width: 100%;
  min-width: 720px;
  margin: 0;
  border-collapse: collapse;
}

.second-hand-guide__table th,
.second-hand-guide__table td {
  padding: 17px 18px;
  border-bottom: 1px solid #e7eaf0;
  vertical-align: top;
  text-align: left;
}

.second-hand-guide__table thead th {
  background: var(--guide-navy);
  color: #fff;
  font-size: 0.92rem;
}

.second-hand-guide__table tbody th {
  width: 24%;
  color: var(--guide-navy);
}

.second-hand-guide__table tr:last-child th,
.second-hand-guide__table tr:last-child td {
  border-bottom: 0;
}

.second-hand-guide__faq {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.second-hand-guide__faq article {
  padding: 22px 24px;
  border: 1px solid #e1e5ed;
  border-radius: 16px;
  background: #fff;
}

.second-hand-guide__faq p {
  margin: 0;
}

.second-hand-guide__cta {
  margin-top: 54px;
  padding: 38px 34px;
  border-radius: 24px;
  background: linear-gradient(145deg, #f2f7fd 0%, #fff 100%);
  box-shadow: 0 18px 44px rgba(22, 6, 56, 0.09);
  text-align: center;
}

.second-hand-guide__cta h2 {
  margin-top: 0;
}

.second-hand-guide__cta p {
  max-width: 660px;
  margin: 0 auto 24px;
}

.second-hand-guide__cta a {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 10px;
  background: var(--guide-blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.second-hand-guide__cta a:hover {
  background: #0d75dd;
  color: #fff;
}

@media (max-width: 767.98px) {
  .second-hand-guide__risk-grid {
    grid-template-columns: 1fr;
  }

  .second-hand-guide__lead,
  .second-hand-guide__question,
  .second-hand-guide__quote,
  .second-hand-guide__cta {
    padding-right: 22px;
    padding-left: 22px;
  }
}
