.c2-reviews-section {
  --navy: #06284A;
  --navy-soft: #16364F;
  --blue: #29A9B7;
  --blue-light: #76C9CF;
  --orange: #F47721;
  --gold: #F47721;
  --white: #ffffff;
  --off-white: #FAF8F3;
  --border: #D9E8E9;
  --text: #24384B;
  --muted: #647789;
  background: #FAF8F3;
  padding: 70px 24px 48px;
  color: var(--text);
}
.c2-reviews-section * { box-sizing: border-box; }
.c2-review-container {
  width: min(1400px, 100%);
  margin: 0 auto;
}
.c2-review-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 42px;
}
.c2-review-kicker {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}
.c2-review-heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 500;
  color: var(--navy);
}
.c2-review-heading h2 span { color: var(--blue); }
.c2-wave {
  width: 90px;
  height: 18px;
  margin: 18px auto 0;
  position: relative;
}
.c2-wave::before,
.c2-wave::after {
  content: "";
  position: absolute;
  left: 0;
  width: 90px;
  height: 8px;
  border-top: 2px solid var(--blue);
  border-radius: 50%;
}
.c2-wave::before { top: 1px; }
.c2-wave::after { top: 7px; opacity: .65; }
.c2-review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.c2-review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(11, 23, 40, 0.06);
}
.c2-stars {
  color: var(--gold);
  font-size: 25px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.c2-review-text {
  font-size: 18px;
  line-height: 1.55;
  color: var(--navy);
  margin: 0;
  flex: 1;
}
.c2-review-divider {
  height: 1px;
  background: #e7edf3;
  margin: 24px 0 16px;
}
.c2-verified {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #1672c7;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.c2-check {
  width: 21px;
  height: 21px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}
.c2-review-role,
.c2-review-date {
  color: var(--muted);
  font-size: 13px;
  padding-left: 30px;
}
.c2-review-role { margin-bottom: 4px; }
.c2-review-empty { min-height: 180px; align-items: center; justify-content: center; }
.c2-reviews-cta {
  text-align: center;
  margin: 34px 0 30px;
}
.c2-reviews-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  padding: 18px 36px;
  background: white;
  color: #176db8;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .8px;
  transition: .2s ease;
}
.c2-reviews-button:hover {
  background: #eef8ff;
  transform: translateY(-1px);
}
.c2-trust-strip {
  background: transparent;
  border: 0;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 auto;
  overflow: visible;
}
.c2-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  border: 1px solid rgba(244, 119, 33, 0.45);
  border-radius: 14px;
  background: linear-gradient(145deg, #F47721 0%, #E86A12 100%);
  box-shadow: 0 10px 24px rgba(244, 119, 33, 0.22);
}
.c2-trust-item:last-child { border-right: 1px solid rgba(244, 119, 33, 0.45); }
.c2-trust-icon {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 23px;
  flex: 0 0 auto;
}
.c2-trust-item h4 {
  margin: 0 0 6px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}
.c2-trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.45;
}
@media (max-width: 1100px) {
  .c2-review-grid { grid-template-columns: repeat(2, 1fr); }
  .c2-trust-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .c2-reviews-section { padding: 50px 16px 36px; }
  .c2-review-grid { grid-template-columns: 1fr; }
  .c2-review-card { min-height: auto; }
  .c2-trust-strip { grid-template-columns: 1fr; }
}
