/* Shared homepage story sections */

.home-stories-continue {
  padding-top: 24px;
}

/* ========== Words From Our Patients ========== */
.patient-voices {
  --pv-ink: #1a1712;
  --pv-muted: #5c564c;
  --pv-gold: #b8892f;
  --pv-gold-bright: #d4a84b;
  --pv-line: rgba(26, 23, 18, 0.1);
  --pv-white: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 70px 0 64px;
  background:
    radial-gradient(ellipse 65% 50% at 0% 0%, rgba(212, 168, 75, 0.12), transparent 55%),
    linear-gradient(180deg, #fff 0%, #f7f4ee 100%);
  color: var(--pv-ink);
}

.patient-voices .auto-container {
  position: relative;
  z-index: 1;
}

.patient-voices__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.patient-voices__eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pv-gold);
}

.patient-voices__title {
  margin: 0 0 10px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pv-ink);
}

.patient-voices__lead {
  margin: 0;
  max-width: 460px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--pv-muted);
}

.patient-voices__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--pv-white);
  border: 1px solid var(--pv-line);
  text-decoration: none !important;
  color: var(--pv-ink) !important;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.patient-voices__rating:hover,
.patient-voices__rating:focus {
  border-color: rgba(184, 137, 47, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 23, 18, 0.08);
  color: var(--pv-ink) !important;
}

.patient-voices__rating img {
  display: block;
  width: 28px;
  height: 28px;
}

.patient-voices__rating-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.patient-voices__rating-top strong {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--pv-ink);
}

.patient-voices__rating-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--pv-muted);
}

.patient-voices__stars {
  color: var(--pv-gold);
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

.patient-voices__reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.patient-voices__card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 26px 24px 24px;
  background: var(--pv-white);
  border: 1px solid var(--pv-line);
  border-top: 3px solid var(--pv-gold);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.patient-voices__card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 137, 47, 0.35);
  box-shadow: 0 16px 40px rgba(26, 23, 18, 0.1);
}

.patient-voices__card > .patient-voices__stars {
  margin-bottom: 14px;
}

.patient-voices__card p {
  flex: 1;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--pv-ink);
}

.patient-voices__card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--pv-line);
}

.patient-voices__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--pv-gold-bright), var(--pv-gold));
}

.patient-voices__card cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}

.patient-voices__card cite strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--pv-ink);
}

.patient-voices__card cite em {
  font-size: 12px;
  font-style: normal;
  color: var(--pv-muted);
}

.patient-voices__video {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  background: var(--pv-white);
  border: 1px solid var(--pv-line);
}

.patient-voices__video-frame {
  overflow: hidden;
  background: #111;
}

.patient-voices__video-frame .YoutubeLazy,
.patient-voices__video-frame .clients_video {
  margin: 0;
}

.patient-voices__video-frame .YoutubeLazy {
  width: 100% !important;
  max-width: none !important;
}

.patient-voices__video-copy h4 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--pv-ink);
}

.patient-voices__video-copy p:not(.patient-voices__eyebrow) {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--pv-muted);
}

.patient-voices__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pv-gold) !important;
  text-decoration: none !important;
  transition: gap 0.3s ease, color 0.3s ease;
}

.patient-voices__link:hover,
.patient-voices__link:focus {
  color: #8a6a20 !important;
  gap: 12px;
}

@media (max-width: 991px) {
  .patient-voices {
    padding: 52px 0 48px;
  }

  .patient-voices__reviews {
    grid-template-columns: 1fr;
  }

  .patient-voices__video {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .patient-voices__rating {
    width: 100%;
  }

  .patient-voices__video {
    padding: 16px;
  }

  .patient-voices__card {
    padding: 22px 18px 20px;
  }
}

/* ========== Patient Journey ========== */
.patient-journey {
  --pj-ink: #1a1712;
  --pj-muted: #5c564c;
  --pj-gold: #b8892f;
  --pj-gold-bright: #d4a84b;
  --pj-line: rgba(26, 23, 18, 0.1);
  position: relative;
  overflow: hidden;
  padding: 72px 0 68px;
  background:
    radial-gradient(ellipse 70% 55% at 90% 10%, rgba(212, 168, 75, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 45% at 5% 90%, rgba(184, 137, 47, 0.08), transparent 50%),
    linear-gradient(180deg, #f3efe6 0%, #ebe6db 100%);
  color: var(--pj-ink);
}

.patient-journey::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 137, 47, 0.45), transparent);
}

.patient-journey .auto-container {
  position: relative;
  z-index: 1;
}

.patient-journey__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
}

.patient-journey__eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pj-gold);
}

.patient-journey__title {
  margin: 0 0 10px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pj-ink);
}

.patient-journey__lead {
  margin: 0;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--pj-muted);
}

.patient-journey__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--pj-line);
  background: rgba(255, 255, 255, 0.55);
}

.patient-journey__steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pj-ink);
}

.patient-journey__steps li + li {
  border-left: 1px solid var(--pj-line);
}

.patient-journey__steps li span {
  color: var(--pj-gold);
  font-variant-numeric: tabular-nums;
}

.patient-journey__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.patient-journey__story {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pj-line);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.patient-journey__story:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 137, 47, 0.45);
  box-shadow: 0 22px 50px rgba(26, 23, 18, 0.12);
}

.patient-journey__media {
  position: relative;
  overflow: hidden;
  background: #111;
}

.patient-journey__media .YoutubeLazy,
.patient-journey__media .clients_video {
  margin: 0;
}

.patient-journey__media .YoutubeLazy {
  width: 100% !important;
  max-width: none !important;
}

.patient-journey__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pj-gold), var(--pj-gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
  pointer-events: none;
  z-index: 2;
}

.patient-journey__story:hover .patient-journey__media::after {
  transform: scaleX(1);
}

.patient-journey__meta {
  padding: 22px 24px 26px;
}

.patient-journey__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--pj-gold-bright), var(--pj-gold));
}

.patient-journey__story-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--pj-ink);
}

.patient-journey__story-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--pj-muted);
}

@media (max-width: 991px) {
  .patient-journey {
    padding: 52px 0 48px;
  }

  .patient-journey__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .patient-journey__steps {
    width: 100%;
  }

  .patient-journey__steps li {
    flex: 1 1 40%;
    border-left: none !important;
    border-top: 1px solid var(--pj-line);
  }

  .patient-journey__steps li:nth-child(-n + 2) {
    border-top: none;
  }
}

@media (max-width: 575px) {
  .patient-journey__steps li {
    flex: 1 1 100%;
  }

  .patient-journey__meta {
    padding: 18px 18px 22px;
  }
}

/* ========== Call action banner ========== */
.call_action {
  background: linear-gradient(135deg, #c49a3c 0%, #bd953f 45%, #a67d2e 100%);
  padding: 48px 0;
  margin-top: 40px;
}

.call_action__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.call_action__title {
  margin: 0;
  max-width: 920px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #1a1712;
}

.call_action__btn {
  display: inline-block;
  float: none !important;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1712 !important;
  background: #fff;
  border-radius: 28px;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(26, 23, 18, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.call_action__btn:hover,
.call_action__btn:focus {
  color: #1a1712 !important;
  background: #fff8e8;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 23, 18, 0.22);
}

@media (max-width: 767px) {
  .call_action {
    padding: 36px 16px;
  }

  .call_action__btn {
    font-size: 16px;
    padding: 11px 24px;
  }
}
