body {
  margin: 0;
  background: #09142a;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.personal-check-section {
  width: 100%;
  max-width: 1200px;
  margin: 72px auto;
  padding: 0 20px 80px;
  box-sizing: border-box;
}

.personal-check-shell {
  position: relative;
}

.personal-check-hero {
  text-align: center;
  margin-bottom: 30px;
}

.personal-check-label {
  margin: 0 0 8px;
  color: #8ff0c8;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.personal-check-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
}

.personal-check-sub {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.8;
}

.personal-check-card,
.personal-check-result-card {
  position: relative;
  padding: 34px;
  border-radius: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.28),
    inset 0 0 24px rgba(255,255,255,0.03);
  overflow: hidden;
}

.personal-check-card {
  margin-bottom: 30px;
}

.personal-check-bg-svg {
  position: absolute;
  top: -14px;
  right: -28px;
  width: 180px;
  height: auto;
  opacity: 0.7;
  pointer-events: none;
}

.personal-check-form {
  position: relative;
  z-index: 1;
}

.check-group {
  margin-bottom: 18px;
}

.check-group label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
}

.check-group select {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(9,20,45,0.84);
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.check-group select:focus {
  border-color: rgba(255,153,51,0.95);
  box-shadow: 0 0 0 3px rgba(255,153,51,0.14);
  background: rgba(12,25,55,0.95);
}

.check-actions {
  margin-top: 26px;
}

.check-submit-btn {
  width: 100%;
  padding: 16px 18px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(90deg, #ff8b1f 0%, #ff6a00 100%);
  color: #fff;
  font-size: 1.06rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(255,122,0,0.28);
}

.hidden {
  display: none;
}

.result-label {
  margin: 0 0 8px;
  color: #8ff0c8;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.result-type-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,153,51,0.12);
  border: 1px solid rgba(255,153,51,0.34);
  color: #ffb067;
  font-weight: 800;
}

.result-comment {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.86);
  line-height: 1.8;
}

.result-metric {
  display: grid;
  grid-template-columns: 110px 1fr 52px;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.result-metric span {
  color: rgba(255,255,255,0.86);
  font-weight: 700;
  font-size: 0.95rem;
}

.result-metric strong {
  color: #f4c46a;
  font-size: 1rem;
  text-align: right;
}

.result-bar {
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}

.result-fill {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,120,120,0.70), rgba(255,0,0,0.95));
  transition: width 1.1s ease;
}

.result-priority {
  margin-top: 24px;
}

.result-priority h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.15rem;
}

.result-priority ol {
  margin: 0;
  padding-left: 1.2em;
  color: rgba(255,255,255,0.9);
  line-height: 1.9;
}

.result-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.result-cta p {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}

.result-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(90deg, #ff8b1f 0%, #ff6a00 100%);
  color: #fff;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
}

@media (max-width: 768px) {
  .personal-check-section {
    margin: 56px auto;
    padding: 0 16px 64px;
  }

  .personal-check-title {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .personal-check-sub {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .personal-check-card,
  .personal-check-result-card {
    padding: 22px 16px;
    border-radius: 24px;
  }

  .personal-check-bg-svg {
    width: 120px;
    top: -8px;
    right: -22px;
    opacity: 0.56;
  }

  .check-group label {
    font-size: 0.92rem;
  }

  .check-group select {
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 0.96rem;
  }

  .result-metric {
    grid-template-columns: 84px 1fr 42px;
    gap: 10px;
  }

  .result-metric span,
  .result-metric strong {
    font-size: 0.88rem;
  }

  .result-bar {
    height: 16px;
  }
}
