.td-overview {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  width: 100%;
  padding: clamp(40px, 6.7vw, 96px) clamp(16px, 6.7vw, 96px);
  background: #fff;
}

.td-overview__photo {
  flex: 1.3;
  min-width: 0;
  aspect-ratio: 560 / 400;
  object-fit: cover;
  border-radius: 12px;
}

.td-overview__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.td-overview__eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: #1a6df5;
}

.td-overview__title {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  line-height: 1.4;
  color: #171b1e;
}

.td-overview__desc {
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.8;
  color: #3d474f;
}

.td-overview__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.td-overview__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #171b1e;
}

.td-overview__point .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a6df5;
  flex-shrink: 0;
}

.td-process {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 3.3vw, 48px);
  width: 100%;
  padding: clamp(40px, 6.7vw, 96px) clamp(16px, 6.7vw, 96px);
  background: #f3f7fa;
}

.td-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.7vw, 24px);
  width: 100%;
}

.td-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  border: 1px solid #e3e7ea;
  border-radius: 12px;
  background: #fff;
}

.td-step__num {
  font-size: 26px;
  font-weight: 800;
  color: #1a6df5;
}

.td-step__title {
  font-size: 18px;
  font-weight: 700;
  color: #171b1e;
}

.td-step__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #6b7680;
}

.td-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: clamp(40px, 6.7vw, 96px) clamp(16px, 6.7vw, 96px);
  background: #fff;
}

.td-faq__rows {
  width: 100%;
  max-width: 880px;
}

.faq-row {
  padding: 4px 0;
}

.faq-row__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.faq-row__q p {
  font-size: 17px;
  font-weight: 600;
  color: #171b1e;
}

.faq-row__q span {
  font-size: 18px;
  color: #6b7680;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-row.is-open .faq-row__q span {
  transform: rotate(45deg);
  color: #1a6df5;
}

.faq-row__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.25s ease, opacity 0.2s ease;
}

.faq-row.is-open .faq-row__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-row__panel > .faq-row__a {
  overflow: hidden;
  min-height: 0;
}

.faq-row__a {
  font-size: 15px;
  line-height: 1.7;
  color: #3d474f;
  padding-bottom: 4px;
}

.faq-row__divider {
  height: 1px;
  background: #e3e7ea;
}

@media (max-width: 900px) {
  .td-overview {
    flex-direction: column;
    padding: 48px 20px;
  }

  .td-process {
    padding: 48px 20px;
  }

  .td-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .td-faq {
    padding: 48px 20px;
  }
}
