.eyebrow {
  margin: 0 0 10px;
  color: #1558bd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.review-facts {
  margin: 14px 0 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.review-facts div {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: 13px 16px;
}

.review-facts div + div { border-top: 1px solid var(--line); }
.review-facts dt { font-weight: 700; color: #38445a; }
.review-facts dd { margin: 0; color: #172033; overflow-wrap: anywhere; }

.sms-example {
  margin-top: 18px;
  scroll-margin-top: 12px;
  border: 2px solid #b9d0f2;
  border-radius: 22px;
  background: linear-gradient(145deg, #f8fbff, #eef5ff);
  padding: clamp(20px, 4vw, 30px);
  box-shadow: 0 18px 40px rgba(26, 115, 232, .12);
}

.sms-example-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.sms-kicker {
  margin: 0 0 5px;
  color: #1558bd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.sms-example h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.5px;
}

.status-off {
  display: inline-flex;
  border: 1px solid #c8d0dc;
  border-radius: 999px;
  background: #fff;
  padding: 6px 10px;
  color: #596579;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.sms-intro { margin: 16px 0 20px; }

.field-group label {
  display: block;
  margin-bottom: 7px;
  color: #172033;
  font-size: 14px;
  font-weight: 800;
}

.field-group input {
  display: block;
  width: 100%;
  min-height: 48px;
  border: 1px solid #8799b5;
  border-radius: 12px;
  background: #fff;
  padding: 11px 13px;
  color: #172033;
  font: inherit;
}

.field-group input:focus {
  outline: 3px solid #f59e0b;
  outline-offset: 2px;
}

.field-help {
  margin: 7px 0 0;
  color: #5f6b80;
  font-size: 13px;
}

.consent-choice {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  margin-top: 20px;
  border: 1px solid #7ca8e8;
  border-radius: 14px;
  background: #fff;
  padding: 16px;
}

.consent-choice input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: #1a73e8;
}

.consent-choice label {
  color: #243149;
  font-size: 14px;
  line-height: 1.55;
}

.consent-choice label strong,
.consent-choice label span {
  display: block;
}

.consent-choice label span {
  margin-top: 2px;
  color: #5f6b80;
}

.review-disclosure {
  margin: 11px 0 0;
  border-left: 3px solid #7fb2ff;
  background: rgba(255, 255, 255, .72);
  padding: 14px;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.review-disclosure a { font-weight: 700; }

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.review-actions button {
  min-height: 46px;
  border-radius: 999px;
  padding: 11px 18px;
  font: inherit;
  font-weight: 800;
  cursor: default;
}

.review-primary {
  border: 1px solid #1a73e8;
  background: #1a73e8;
  color: #fff;
}

.review-secondary {
  border: 1px solid #aebbd0;
  background: #fff;
  color: #263956;
}

.example-foot {
  margin: 12px 0 0;
  color: #5f6b80;
  font-size: 12px;
}

@media (max-width: 600px) {
  .review-facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .sms-example-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .review-actions button { width: 100%; }
}
