.gp34-trust-review {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 34px clamp(24px, 3.2vw, 72px) 72px;
  background: #f6f8fb;
  color: #102033;
}

.gp34-trust-review-shell {
  background: #fff;
  border: 1px solid rgba(16,32,51,.12);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(16,32,51,.07);
  padding: 26px;
}

.gp34-trust-review-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 22px;
}

.gp34-trust-review-kicker {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: #edf4ff;
  color: #315b9f;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 12px;
}

.gp34-trust-review-head h2 {
  margin: 0;
  font-size: clamp(26px, 2.5vw, 42px);
  letter-spacing: -.04em;
}

.gp34-trust-review-head p {
  max-width: 980px;
  margin: 10px 0 0;
  color: #627086;
  line-height: 1.6;
}

.gp34-trust-review-chip-row,
.gp34-trust-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gp34-trust-review-chip,
.gp34-trust-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.gp34-trust-review-chip {
  background: #fff;
  color: #40506a;
  border: 1px solid rgba(16,32,51,.12);
  font-size: 13px;
}

.gp34-trust-review-btn {
  background: #102033;
  color: #fff;
  border: 0;
  cursor: pointer;
}

.gp34-trust-review-btn.secondary {
  background: #fff;
  color: #173f81;
  border: 1px solid rgba(16,32,51,.12);
}

.gp34-trust-review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: 18px;
  align-items: start;
}

.gp34-trust-review-card {
  background: #f8fbff;
  border: 1px solid rgba(16,32,51,.1);
  border-radius: 22px;
  padding: 20px;
}

.gp34-trust-review-card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.03em;
}

.gp34-trust-review-card p {
  color: #627086;
  line-height: 1.55;
}

.gp34-trust-review-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin: 16px 0;
}

.gp34-trust-review-metric {
  background: #fff;
  border: 1px solid rgba(16,32,51,.1);
  border-radius: 18px;
  padding: 15px;
}

.gp34-trust-review-metric strong {
  display: block;
  font-size: 24px;
  letter-spacing: -.04em;
}

.gp34-trust-review-metric span {
  display: block;
  margin-top: 5px;
  color: #627086;
  font-weight: 750;
}

.gp34-trust-review-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 16px;
}

.gp34-trust-review-form label {
  display: grid;
  gap: 7px;
}

.gp34-trust-review-form span {
  font-size: 13px;
  font-weight: 850;
  color: #40506a;
}

.gp34-trust-review-form input,
.gp34-trust-review-form select {
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(16,32,51,.14);
  background: #fff;
  padding: 0 12px;
  color: #102033;
  font: inherit;
}

.gp34-trust-review-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(16,32,51,.1);
  border-radius: 18px;
  margin-top: 16px;
}

.gp34-trust-review-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: #fff;
}

.gp34-trust-review-table th,
.gp34-trust-review-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(16,32,51,.08);
  text-align: left;
  vertical-align: middle;
}

.gp34-trust-review-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #627086;
  background: #f8fbff;
}

.gp34-trust-review-row-actions {
  display: flex;
  gap: 8px;
  white-space: nowrap;
}

.gp34-trust-review-row-actions button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 12px;
  background: #102033;
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}

.gp34-trust-review-row-actions button.secondary {
  background: #edf4ff;
  color: #1f4c91;
  border: 1px solid rgba(49,91,159,.18);
}

.gp34-trust-review-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #102033;
  color: #fff;
}

.gp34-trust-review-note p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

@media(max-width:1100px) {
  .gp34-trust-review-layout { grid-template-columns: 1fr; }
  .gp34-trust-review-metrics { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media(max-width:700px) {
  .gp34-trust-review { padding-left: 16px; padding-right: 16px; }
  .gp34-trust-review-form,
  .gp34-trust-review-metrics { grid-template-columns: 1fr; }
}

/* GP34_TRUST_REVIEW_BRIDGE_B9 */
