#results {
  display: none;
  animation: fadeIn 0.5s ease;
  padding-top: 32px;
}

.results-header {
  text-align: center;
  margin-bottom: 24px;
}

.results-header h2 {
  font-size: 2rem;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--text);
}

.results-subheading {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.results-date {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
}

.results-header .summary-line {
  color: var(--text-secondary);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
}

.color-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.color-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.color-legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

.color-legend .dot.high { background: var(--green); }
.color-legend .dot.mid  { background: var(--yellow); }
.color-legend .dot.low  { background: var(--orange); }

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.model-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.model-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.model-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.model-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
}

.model-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}

.overall-score { text-align: right; }

.overall-score .number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}

.overall-score .label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.category-row {
  display: grid;
  grid-template-columns: 100px 1fr 30px;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.category-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.bar-track {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  align-self: center;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.bar-fill.high { background: var(--green); }
.bar-fill.mid  { background: var(--yellow); }
.bar-fill.low  { background: var(--orange); }

.category-score {
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
  line-height: 1;
}

.model-summary {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 500;
}

.cta-wrapper {
  text-align: center;
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-block;
  padding: 16px 48px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgb(37 99 235 / 0.25);
}

.cta-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 14px rgb(37 99 235 / 0.35);
}

.cta-btn:active { transform: scale(0.97); }

.cta-subtext {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 10px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

.process-qa-section {
  margin: 24px 0;
}

.process-qa-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.process-qa-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

details.process-qa-item[open] {
  padding-bottom: 20px;
}

.process-qa-answer {
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.process-qa-answer:first-of-type {
  border-top: none;
  padding-top: 0;
}

.process-qa-provider {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.process-qa-provider .model-icon {
  width: 20px;
  height: 20px;
}

.process-qa-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 500;
}

.process-qa-item summary {
  cursor: pointer;
  list-style: none;
}

.process-qa-item summary::-webkit-details-marker { display: none; }

.process-qa-item summary::marker { display: none; content: ''; }

.process-qa-question {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.process-qa-question::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-secondary);
  transition: transform 0.2s;
  flex-shrink: 0;
}

details[open] > .process-qa-question::before {
  transform: rotate(180deg);
}

.pdf-download-area {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--surface);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.01em;
}

.pdf-download-btn:hover {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgb(37 99 235 / 0.3);
}

.promo-section {
  text-align: center;
  padding: 32px 24px;
  margin-top: 36px;
  background: var(--primary-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.promo-section p {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.7;
}

.promo-section a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.promo-section a:hover {
  text-decoration: underline;
}
