.result-page {
  margin: 0;
  color: #10202a;
  background: linear-gradient(180deg, #f7fbfa 0%, #edf7f5 52%, #fff7f3 100%);
  font-family: "Noto Sans KR", "Noto Sans JP", Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  line-height: 1.65;
}

.result-shell {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
}

.result-hero {
  min-height: 62vh;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(32px, 7vw, 70px) 0;
}

.result-kicker {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dff5ee;
  color: #0f766e;
  font-weight: 900;
  font-size: 13px;
}

.result-hero h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.result-hero p {
  max-width: 720px;
  margin: 0;
  color: #334155;
  font-size: clamp(17px, 2.4vw, 22px);
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.result-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 8px;
  background: #0f766e;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.result-button.secondary {
  background: #fff;
  color: #0f766e;
  border: 1px solid rgba(15, 118, 110, .26);
}

.result-section {
  margin: 18px 0;
  padding: clamp(20px, 4vw, 32px);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15,23,42,.1);
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.result-section h2 {
  margin: 0 0 12px;
  font-size: clamp(23px, 4vw, 34px);
  line-height: 1.16;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.result-card {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(15,23,42,.1);
  background: #fff;
}

.result-card strong {
  display: block;
  margin-bottom: 6px;
  color: #0f766e;
}

.result-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.result-chip {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff0ea;
  color: #be4b2c;
  font-size: 13px;
  font-weight: 800;
}

.result-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.result-next-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  padding: 15px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.11);
  color: #10202a;
  text-decoration: none;
}

.result-next-card span {
  color: #64748b;
  font-size: 14px;
}

.result-faq details {
  padding: 12px 0;
  border-top: 1px solid rgba(15,23,42,.1);
}

.result-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  margin-top: 26px;
  text-align: center;
  color: #475569;
  font-size: 13px;
}

.site-footer a {
  color: #0f766e;
}

@media (max-width: 720px) {
  .result-hero {
    min-height: auto;
    padding-top: 34px;
  }

  .result-grid,
  .result-next-grid {
    grid-template-columns: 1fr;
  }
}
