/* Shared Treatment / Price Page primitives retained global by Phase 3R. */
.treatment-v1-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 12%,
    #d3b15f 27%,
    #faf0a0 40%,
    #ffffc2 49%,
    #d3b15f 58%,
    #be8c3c 70%,
    #b17b32 80%,
    #d4a245 90%,
    #a4692a 100%
  );
}
.treatment-v1-gold-title {
  margin: 0;
  color: #d6b15f;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: linear-gradient(
    105deg,
    #ffdfbc 0%,
    #be8c3c 16%,
    #d3b15f 32%,
    #faf0a0 50%,
    #d3b15f 68%,
    #bb8332 86%,
    #e1b453 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.treatment-v1-gold-title--on-white {
  background-image: linear-gradient(
    105deg,
    #9b6224 0%,
    #be8c3c 22%,
    #d3b15f 42%,
    #a4692a 72%,
    #bb8332 100%
  );
}
.treatment-v1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.treatment-v1-section-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 3vw, 40px);
}
.treatment-v1-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border: 1px solid #bb8332;
  background: transparent;
  color: #8f6028;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.treatment-v1-more-link:hover,
.treatment-v1-more-link:focus-visible {
  border-color: #a4692a;
  background: #a4692a;
  color: #fff;
}
.treatment-v1-more-link--dark {
  border-color: rgba(241, 207, 136, 0.78);
  color: #f1cf88;
}
.treatment-v1-more-link--dark:hover,
.treatment-v1-more-link--dark:focus-visible {
  border-color: #d3b15f;
  background: #bb8332;
  color: #fff;
}
.treatment-v1-band {
  padding: clamp(64px, 7vw, 96px) 0;
}
.treatment-v1-heading {
  max-width: 860px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}
.treatment-v1-heading p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #555;
  line-height: 1.75;
}
.treatment-v1-heading--light p {
  color: rgba(255, 255, 255, 0.78);
}
.treatment-v1-before-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.treatment-v1-before-card {
  min-width: 0;
}
.treatment-v1-before-card {
  overflow: hidden;
  border: 1px solid #e7e0d6;
  background: #fff;
  box-shadow: 0 8px 22px rgba(37, 31, 25, 0.07);
}
.treatment-v1-before-card__image {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  background: #f3f1ed;
  cursor: zoom-in;
  text-decoration: none;
}
.treatment-v1-before-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}
.treatment-v1-before-card__image:hover img {
  transform: scale(1.02);
  opacity: 0.94;
}
.treatment-v1-before-card__label {
  display: block;
  padding: 15px 16px 17px;
  color: #9d692a;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.treatment-v1-before-card .treatment-v1-card-fallback {
  width: 100%;
  aspect-ratio: 4 / 3;
}
.treatment-v1-faq {
  border-top: 1px solid #e4ddd3;
}
.treatment-v1-faq details {
  border-bottom: 1px solid #e4ddd3;
}
.treatment-v1-faq summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: #333;
  cursor: pointer;
  font-weight: 650;
  line-height: 1.55;
  list-style: none;
}
.treatment-v1-faq summary::-webkit-details-marker {
  display: none;
}
.treatment-v1-faq summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  color: #bb8332;
  font-size: 1.6rem;
  font-weight: 400;
}
.treatment-v1-faq details[open] summary::after {
  content: "−";
}
.treatment-v1-faq__answer {
  padding: 0 0 24px;
  color: #555;
  line-height: 1.75;
}
.treatment-v1-faq__answer > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 1050px) {
.treatment-v1-before-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
.treatment-v1-before-grid {
    grid-template-columns: 1fr;
  }
.treatment-v1-band {
    padding: 58px 0;
  }
.treatment-v1-actions .button {
    width: 100%;
    text-align: center;
  }
}
.treatment-v1-band--reviews {
  background:
    radial-gradient(
      circle at 20% 12%,
      rgba(190, 140, 60, 0.06),
      transparent 30%
    ),
    #fffaf1;
}
.treatment-v1-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}
.treatment-v1-review-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #eadbc4;
  background: #fff4df;
  box-shadow: 0 8px 22px rgba(37, 31, 25, 0.06);
}
.treatment-v1-review-card__head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
}
.treatment-v1-review-avatar,
.treatment-v1-review-avatar-image {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
}
.treatment-v1-review-avatar {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #c69a55;
  color: #fff;
  font-weight: 600;
}
.treatment-v1-review-avatar-image {
  display: block;
  object-fit: cover;
}
.treatment-v1-review-card__head strong {
  min-width: 0;
  color: #8f612c;
  font-weight: 600;
}
.treatment-v1-review-google-logo {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-left: auto;
  object-fit: contain;
}
.treatment-v1-review-stars {
  margin-bottom: 14px;
  color: #bb8332;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}
.treatment-v1-review-card blockquote {
  margin: 0;
  color: #3e3a35;
  font-size: 1.04rem;
  line-height: 1.75;
}
@media (max-width: 760px) {
.treatment-v1-review-grid {
    grid-template-columns: 1fr;
  }
}
