.report-grid{
  display:block !important;
}

.report-v3{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:26px;
}

.report-v3-main,
.report-v3-side,
.report-next,
.report-other{
  background:white;
  border:1px solid var(--border);
  border-radius:34px;
  box-shadow:var(--shadow);
}

.report-v3-main{
  padding:42px;
  background:
    radial-gradient(circle at 20% 0%, rgba(212,165,44,.18), transparent 35%),
    linear-gradient(135deg,#061B3A,#0B2D5C);
  color:white;
}

.report-v3-label{
  display:inline-flex;
  background:rgba(212,165,44,.18);
  color:#F3C85A;
  padding:9px 15px;
  border-radius:999px;
  font-weight:900;
  margin-bottom:22px;
}

.report-v3-main h2{
  font-size:44px;
  line-height:1.1;
  margin-bottom:16px;
}

.report-v3-main p{
  color:#DCE7F5;
  line-height:1.75;
  font-size:17px;
}

.report-v3-score{
  margin:30px 0;
}

.report-v3-score div:first-child{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
}

.report-v3-score span{
  color:#DCE7F5;
  font-weight:800;
}

.report-v3-score strong{
  color:#F3C85A;
  font-size:42px;
}

.score-line{
  height:14px;
  background:rgba(255,255,255,.14);
  border-radius:999px;
  overflow:hidden;
}

.score-line div{
  height:100%;
  background:linear-gradient(90deg,var(--gold),var(--gold2));
  border-radius:999px;
}

.best-match-box{
  background:white;
  color:var(--navy);
  border-radius:28px;
  padding:28px;
}

.best-match-box span{
  color:var(--gold);
  font-weight:900;
}

.best-match-box h3{
  font-size:48px;
  margin:8px 0;
}

.best-match-box p{
  color:var(--muted);
  margin-bottom:22px;
}

.best-meta{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.best-meta div{
  background:#F6F8FC;
  border:1px solid #E6ECF5;
  border-radius:18px;
  padding:14px;
}

.best-meta small{
  display:block;
  color:#94A3B8;
  margin-bottom:5px;
  font-weight:800;
}

.report-v3-side{
  padding:26px;
  display:grid;
  gap:18px;
}

.report-panel{
  background:#F8FAFC;
  border:1px solid #E6ECF5;
  border-radius:24px;
  padding:22px;
}

.report-panel h3,
.report-next h3,
.report-other h3{
  color:var(--navy);
  font-size:24px;
  margin-bottom:16px;
}

.report-panel ul{
  list-style:none;
  display:grid;
  gap:12px;
}

.report-panel li{
  color:#475569;
  line-height:1.6;
}

.report-panel li::before{
  content:"✓";
  color:var(--gold);
  font-weight:900;
  margin-right:8px;
}

.report-next{
  grid-column:1/-1;
  padding:30px;
}

.next-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-bottom:24px;
}

.next-grid div{
  background:#F8FAFC;
  border:1px solid #E6ECF5;
  border-radius:20px;
  padding:20px;
}

.next-grid b{
  color:var(--gold);
  display:block;
  margin-bottom:8px;
}

.next-grid span{
  color:var(--navy);
  font-weight:800;
}

.report-main-btn{
  display:flex;
  justify-content:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);
  padding:16px;
  border-radius:18px;
  font-weight:900;
}

.report-other{
  grid-column:1/-1;
  padding:30px;
}

.report-other a{
  display:flex;
  justify-content:space-between;
  padding:18px;
  background:#F8FAFC;
  border:1px solid #E6ECF5;
  border-radius:18px;
  margin-bottom:10px;
  color:var(--navy);
  font-weight:900;
}

.report-other span{
  color:var(--muted);
}

@media(max-width:950px){
  .report-v3{
    grid-template-columns:1fr;
  }

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

  .report-v3-main h2{
    font-size:32px;
  }
}