.ssi-wrapper {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 20px 56px;
  display: grid;
  gap: 12px;
}

.ssi-card {
  border: 1px solid #dbe4ee;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
}

.ssi-card + .ssi-card {
  margin-top: 0;
}

.ssi-info {
  padding: 16px 18px;
}

.ssi-accordion summary {
  cursor: pointer;
  font-weight: 700;
  color: #10233c;
}

.ssi-accordion-body {
  margin-top: 12px;
  color: #1b2f46;
}

.ssi-accordion-body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #10233c;
}

.ssi-accordion-body p {
  margin: 0 0 10px;
}

.ssi-accordion-body ul {
  margin: 0 0 10px;
  padding-left: 18px;
}

.ssi-header h2 {
  margin: 0 0 12px;
  color: #10233c;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.ssi-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #23405f;
  margin-bottom: 6px;
}

.ssi-field label span {
  font-weight: 500;
  color: #51627b;
}

.ssi-field input,
.ssi-field select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d7e0ea;
  border-radius: 8px;
  padding: 9px 11px;
  font-size: 0.95rem;
  background: #fff;
  color: #0a274f;
}

.ssi-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #1b2f46;
  padding: 9px 12px;
  border: 1px solid #dbe4ee;
  border-radius: 10px;
  background: #f8fbfe;
}

.ssi-note {
  margin-top: 10px;
  color: #4c6077;
  font-weight: 500;
}

.ssi-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.ssi-actions-right {
  justify-content: center;
}

.ssi-results {
  margin-top: 14px;
  border: 2px solid #2456a8;
  background: #fff;
}

.ssi-message {
  background: #fff8e9;
  border: 1px solid #e9d4a2;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #4a3706;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
}

.result-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border: 1px solid #c6d6eb;
  border-radius: 10px;
  background: #fff;
  font-weight: 500;
  color: #35516e;
}

.result-line-blue {
  border-color: #c6d6eb;
}

.result-line-gold {
  border-color: #c6931f;
}

.result-line span {
  color: #10233c;
  font-weight: 700;
}

.result-title {
  color: #17314d;
  font-size: 0.92rem;
  font-weight: 700;
  flex: 1 1 auto;
}

.result-title-strong {
  font-weight: 700;
}

.ssi-disclosure {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #4a5f79;
  text-align: center;
}

.btn-blue-dark {
  background: #0b3a6e;
  color: #fff;
  border: 2px solid #0a2f58;
}

.btn-blue-bright {
  background: #2a63bf;
  color: #fff;
  border: 2px solid #2456a8;
}

.ssi-actions .btn-gold {
  background: #f6cc6d;
  color: #071425;
  border: 2px solid #c6931f;
}

.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

@media (max-width: 720px) {
  .ssi-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-line {
    align-items: flex-start;
  }
}
