/* Example report comparison */
.report-showcase {
  padding: 110px clamp(20px, 7vw, 110px);
  background: linear-gradient(145deg, #eef8f5 0, #fbfaf6 58%, #fff 100%);
  scroll-margin-top: 96px;
}

.report-showcase .section-heading { margin-bottom: 48px; }
.report-showcase .section-heading h2 {
  font: clamp(2.8rem, 5vw, 4.7rem)/1.07 var(--serif);
  letter-spacing: -.045em;
  margin: 20px 0;
}
.report-showcase .section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.report-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 50px rgba(8,35,63,.08);
}

.report-card-complete {
  border-color: rgba(0,132,110,.45);
  background: linear-gradient(155deg, #fff 0, #edfaf6 100%);
  box-shadow: 0 24px 62px rgba(0,132,110,.14);
}

.report-card-top { display: flex; align-items: center; gap: 13px; }
.report-card-top > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font: 1rem var(--serif);
}
.report-card-top small {
  color: var(--teal);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
}
.report-card h3 {
  font: clamp(2rem, 3vw, 2.8rem)/1.12 var(--serif);
  letter-spacing: -.025em;
  margin: 26px 0 14px;
}
.report-card > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  margin: 0;
}
.report-card ul { margin: 24px 0 30px; padding: 0; list-style: none; }
.report-card li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: #40596e;
  font-size: .92rem;
}
.report-card li::before {
  content: "\2713";
  color: var(--teal);
  font-weight: 900;
  margin-right: 11px;
}
.report-button { width: 100%; margin-top: auto; text-align: center; gap: 12px; }
.report-disclaimer {
  max-width: 980px;
  margin: 30px auto 0;
  padding: 18px 22px;
  border-left: 3px solid var(--amber);
  background: rgba(255,255,255,.72);
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.65;
}
.report-disclaimer strong { color: var(--ink); }

@media (max-width: 1200px) and (min-width: 881px) {
  .site-header nav { gap: 14px; font-size: .78rem; }
  .nav-cta { padding: 9px 13px; }
}

@media (max-width: 880px) {
  .report-grid { grid-template-columns: 1fr; }
  .report-card { min-height: 0; }
  .report-button { margin-top: 10px; }
  .report-showcase { padding: 85px 20px; }
}

@media (max-width: 620px) {
  .report-showcase { padding: 75px 20px; }
  .report-showcase .section-heading h2 { font-size: 2.7rem; }
  .report-card { padding: 26px 22px; border-radius: 18px; }
  .report-card h3 { font-size: 2rem; }
  .report-card-top small { font-size: .62rem; }
  .report-button { min-height: 0; padding: 14px 16px; font-size: .9rem; }
}
