/* Phase 8: Trust + SEO + Shortcut Strip */
.phase8-shortcuts-wrap{
  margin:18px auto 0;
}
.phase8-shortcuts{
  display:grid;
  grid-template-columns:repeat(8,minmax(0,1fr));
  gap:12px;
}
.phase8-shortcut-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:92px;
  padding:14px 10px;
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff 0%,#f6f9ff 100%);
  border:1px solid rgba(63,81,181,.10);
  box-shadow:0 10px 24px rgba(31,46,85,.06);
  text-decoration:none;
  color:#1e2238;
  transition:transform .20s ease, box-shadow .20s ease, border-color .20s ease;
}
.phase8-shortcut-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(31,46,85,.10);
  border-color:rgba(0,207,232,.45);
}
.phase8-shortcut-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  margin-bottom:10px;
  font-size:20px;
  background:linear-gradient(135deg,rgba(0,207,232,.16),rgba(63,81,181,.12));
}
.phase8-shortcut-label{
  font-weight:700;
  font-size:13px;
  line-height:1.25;
}
.phase8-trust-reviews{
  margin-top:22px;
}
.phase8-review-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr 1fr 1fr;
  gap:16px;
}
.phase8-rating-card,
.phase8-review-card{
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff 0%,#f7faff 100%);
  border:1px solid rgba(63,81,181,.10);
  box-shadow:0 12px 28px rgba(31,46,85,.06);
  padding:22px 20px;
}
.phase8-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  color:#27418a;
  background:rgba(0,207,232,.11);
}
.phase8-rating-score{
  margin:14px 0 10px;
  font-size:38px;
  line-height:1;
  font-weight:800;
  color:#1e2238;
}
.phase8-stars{
  font-size:18px;
  letter-spacing:2px;
}
.phase8-rating-copy{
  margin:10px 0 0;
  font-size:14px;
  line-height:1.65;
  color:#52607a;
}
.phase8-review-card h3{
  margin:12px 0 8px;
  font-size:16px;
  line-height:1.3;
  color:#1e2238;
}
.phase8-review-card p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:#52607a;
}
.phase8-reviewer{
  margin-top:14px;
  font-size:13px;
  font-weight:700;
  color:#22315f;
}
.phase8-trust-cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.phase8-trust-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
}
.phase8-trust-cta .phase8-primary{
  color:#fff;
  background:linear-gradient(90deg,#00cfe8 0%,#3f51b5 100%);
  box-shadow:0 12px 24px rgba(63,81,181,.20);
}
.phase8-trust-cta .phase8-secondary{
  color:#1e2238;
  background:#fff;
  border:1px solid rgba(63,81,181,.15);
}
@media (max-width:1200px){
  .phase8-shortcuts{grid-template-columns:repeat(4,minmax(0,1fr));}
  .phase8-review-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:760px){
  .phase8-shortcuts{grid-template-columns:repeat(2,minmax(0,1fr));}
  .phase8-review-grid{grid-template-columns:1fr;}
  .phase8-rating-score{font-size:32px;}
}
