/* Phase 12: Google Business / trust proof layer. Keeps existing visual language. */
.customer-proof-section {
  position: relative;
  padding: clamp(58px, 8vw, 96px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(231, 25, 42, 0.11), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
}
.customer-proof-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(10,10,12,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,12,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}
.customer-proof-shell {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(340px, 1.07fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
}
.customer-proof-copy .section-kicker,
.customer-proof-copy .proof-kicker {
  margin: 0 0 12px;
  color: #bd1428;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.customer-proof-copy h2 {
  margin: 0;
  max-width: 720px;
  color: #101116;
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}
.customer-proof-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #5f6472;
  font-size: 1rem;
  line-height: 1.75;
}
.customer-proof-points {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.customer-proof-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #171923;
  font-weight: 750;
}
.customer-proof-points span {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #e7192a, #981023);
  box-shadow: 0 12px 28px rgba(231,25,42,.22);
  font-size: 0.78rem;
}
.customer-proof-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.customer-proof-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
}
.customer-proof-actions .proof-primary {
  color: #fff;
  background: linear-gradient(135deg, #e7192a, #981023);
  box-shadow: 0 18px 34px rgba(231,25,42,.22);
}
.customer-proof-actions .proof-secondary {
  color: #101116;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,18,32,.12);
}
.customer-proof-media {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 16px;
  align-items: stretch;
}
.customer-proof-photo,
.customer-proof-card {
  overflow: hidden;
  border: 1px solid rgba(15,18,32,.10);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(14, 17, 28, 0.10);
}
.customer-proof-photo {
  min-height: 410px;
}
.customer-proof-photo img,
.customer-proof-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.customer-proof-side {
  display: grid;
  gap: 16px;
}
.customer-proof-thumb {
  min-height: 195px;
  overflow: hidden;
  border-radius: 26px;
  background: #111;
  box-shadow: 0 22px 50px rgba(14, 17, 28, 0.10);
}
.customer-proof-card {
  padding: 22px;
  color: #fff;
  border-color: rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, rgba(231,25,42,.92), rgba(117,7,19,.96)),
    #bd1428;
}
.customer-proof-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.25;
}
.customer-proof-card p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  line-height: 1.55;
}
.customer-proof-note {
  margin-top: 16px;
  color: #767b88;
  font-size: .86rem;
}
@media (max-width: 900px) {
  .customer-proof-shell { grid-template-columns: 1fr; }
  .customer-proof-media { grid-template-columns: 1fr; }
  .customer-proof-photo { min-height: 320px; }
  .customer-proof-side { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .customer-proof-section { padding: 48px 0; }
  .customer-proof-side { grid-template-columns: 1fr; }
  .customer-proof-photo, .customer-proof-thumb { min-height: 240px; }
}
