/* Shared reviews & process sections */

.sv-reviews .sv-reviews__wrap,
.sv-process .sv-process__wrap {
  display: block;
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
  box-sizing: border-box;
}

.sv-reviews {
  padding: var(--section-pad) 0;
  background: var(--ash-bg);
}

.sv-reviews__head {
  text-align: center;
  margin-bottom: 48px;
}

.sv-reviews__title {
  margin: 0 0 24px;
}

.sv-reviews__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
}

.sv-reviews__google-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.sv-reviews__rating-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.sv-reviews__rating {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
}

.sv-reviews__stars {
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: #f4b400;
}

.sv-reviews__google-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.sv-reviews__slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.sv-reviews__slider {
  display: flex;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 16px 4px;
  scrollbar-width: none;
}

.sv-reviews__slider::-webkit-scrollbar {
  display: none;
}

.sv-review-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

.sv-reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.22s var(--ease-out);
}

.sv-reviews__arrow:hover {
  background: var(--bright-yellow);
  color: var(--black);
  border-color: var(--bright-yellow);
  transform: translateY(-50%) scale(1.05);
}

.sv-reviews__arrow--left {
  left: -22px;
}

.sv-reviews__arrow--right {
  right: -22px;
}

/* Simulated Live Google review card styles */
.sv-review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sv-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f3f4;
  border: 1px solid var(--border-subtle);
  color: #5f6368;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.sv-review-meta {
  display: flex;
  flex-direction: column;
}

.sv-review-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.sv-review-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.sv-review-card__google-logo {
  margin-left: auto;
  align-self: center;
}

.sv-review-card__source {
  margin-bottom: 12px;
}

.sv-review-card__stars {
  color: #f4b400;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.sv-review-card__quote p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--body-text);
  margin: 0;
}

.sv-review-card__foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.sv-review-card__foot span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.sv-reviews__cta {
  margin-top: 36px;
  text-align: center;
}

.sv-reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sv-process {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-top: 4px solid var(--bright-yellow);
}

.sv-process__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.sv-process__head .sv-eyebrow {
  display: flex;
  justify-content: center;
  width: 100%;
}

.sv-reviews__head .sv-eyebrow {
  display: flex;
  justify-content: center;
  width: 100%;
}


.sv-process__lead {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.sv-process__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sv-process__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background: var(--ash-bg);
  border: 1px solid var(--border-subtle);
}

.sv-process__icon-well {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--dark-grey);
}

.sv-process__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.sv-process__step-title {
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--black);
}

.sv-process__step-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .sv-review-card {
    flex: 0 0 calc(50% - 12px);
  }

  .sv-process__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 680px) {
  .sv-review-card {
    flex: 0 0 100%;
  }
}
