:root {
  --ink: #102033;
  --ink-soft: #41546b;
  --muted: #68798c;
  --line: #dce5ed;
  --surface: #ffffff;
  --surface-alt: #f5f8f7;
  --teal: #0f766e;
  --teal-dark: #0c4f4c;
  --gold: #b99443;
  --navy: #10213b;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(16, 32, 51, 0.12);
  --shadow-soft: 0 10px 26px rgba(16, 32, 51, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 72px;
  padding: 10px 46px 10px 42px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(8, 20, 36, 0.28), rgba(24, 49, 79, 0.08));
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition: background 0.25s ease, min-height 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(16, 33, 59, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(8, 20, 36, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 108px;
  height: 36px;
  overflow: visible;
}

.brand img {
  width: 108px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(42px, 4.2vw, 68px);
  margin-left: 12px;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 520;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  transition: color 0.24s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
  background: transparent;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 298px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(8, 20, 36, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s 0.22s;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 39px;
  padding: 0 12px;
  border-radius: 8px;
  color: rgba(16, 32, 51, 0.78);
  font-size: 0.78rem;
  font-weight: 520;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-transform: none;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--teal-dark);
  background: rgba(15, 118, 110, 0.08);
  transform: translateX(3px);
}

.nav-dropdown-menu a::after {
  display: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: clamp(30px, 3vw, 52px);
  justify-self: end;
  margin-right: 0;
}

.language-menu {
  position: relative;
  z-index: 20;
}

.language-current {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 550;
  letter-spacing: 0;
  cursor: pointer;
}

.language-current svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 194px;
  padding: 12px 0;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(16, 32, 51, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s 0.22s;
}

.language-menu.is-open .language-dropdown,
.language-menu:hover .language-dropdown,
.language-menu:focus-within .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s;
}

.language-dropdown button {
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  color: #3f4650;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 450;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
}

html[dir="rtl"] .language-dropdown {
  right: auto;
  left: 0;
}

.language-dropdown button:hover,
.language-dropdown button.is-active {
  color: var(--teal);
  font-weight: 800;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(8, 20, 36, 0.14);
  font-weight: 650;
  white-space: nowrap;
  backdrop-filter: blur(14px);
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.header-cta:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 20, 37, 0.22) 0%, rgba(8, 20, 37, 0.08) 44%, rgba(8, 20, 37, 0) 100%),
    linear-gradient(0deg, rgba(8, 20, 37, 0.16) 0%, rgba(8, 20, 37, 0) 50%);
}

.hero-content {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 86vh;
  padding: 128px 0 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6.2vw, 5.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-title-block {
  width: min(680px, 52vw);
  margin-left: 0;
  transform: translate(-40px, -8px);
  text-shadow: 0 12px 34px rgba(6, 18, 32, 0.28);
}

.hero-title {
  display: grid;
  max-width: none;
  margin: 0;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.3rem, 3.55vw, 4.05rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  row-gap: 10px;
}

.hero-title span {
  display: block;
  white-space: nowrap;
  opacity: 1;
  clip-path: inset(0);
  transform: translate3d(0, 0, 0);
  transition:
    opacity 1.18s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.18s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 1.18s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hero-title.is-preparing span {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, 22px, 0);
}

.hero-title.is-visible span {
  opacity: 1;
  clip-path: inset(0);
  transform: translate3d(0, 0, 0);
}

.hero-title.is-complete span {
  opacity: 1;
  clip-path: inset(0);
  transform: translate3d(0, 0, 0);
  transition: none;
  will-change: auto;
}

.hero-title span:nth-child(1) {
  padding-left: 0;
}

.hero-title.is-visible span:nth-child(1) {
  transition-delay: 0.08s;
}

.hero-title span:nth-child(2) {
  font-size: 1em;
}

.hero-title.is-visible span:nth-child(2) {
  transition-delay: 0.2s;
}

.hero-title span:nth-child(3) {
  padding-left: clamp(82px, 8vw, 118px);
  color: var(--gold);
}

.hero-title.is-visible span:nth-child(3) {
  transition-delay: 0.32s;
}

h2 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 3.65vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

html[lang="zh-CN"] h2 {
  font-size: clamp(2.15rem, 3.35vw, 3.25rem);
  line-height: 1.12;
}

html[lang="zh-CN"] .hero-title {
  letter-spacing: 0.08em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions {
  gap: 50px;
  margin-top: 96px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
}

.button span + span {
  margin-left: 8px;
}

.button-primary {
  color: var(--navy);
  background: var(--gold);
}

.button-primary:hover {
  background: #d0ad5a;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 110px 0;
  scroll-margin-top: 92px;
}

.section-muted {
  background: var(--surface-alt);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 48px;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  color: var(--ink-soft);
  max-width: 880px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.impact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
}

.impact-section .container {
  position: relative;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.impact-heading {
  max-width: 840px;
  margin-bottom: 44px;
}

.impact-heading h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.15rem, 3.7vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.impact-heading p:not(.section-kicker) {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 42px);
  align-items: start;
  width: min(1320px, calc(100vw - 48px));
  margin-inline: 50%;
  padding: 8px 0 0;
  transform: translateX(-50%);
}

.impact-stat {
  position: relative;
  min-width: 0;
  padding: 0;
  text-align: center;
}

.impact-label {
  display: block;
  max-width: 100%;
  min-height: 0;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: clamp(0.94rem, 1.08vw, 1.08rem);
  font-weight: 780;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
  text-wrap: balance;
  white-space: normal;
  text-transform: uppercase;
}

.impact-number {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  color: var(--gold);
  background: linear-gradient(135deg, #e0bd62 0%, #b99443 42%, #8f6625 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.55rem, 4.35vw, 4.45rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}

.impact-stat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.64;
}

.impact-source {
  max-width: 1120px;
  margin: 30px auto 72px;
  color: rgba(65, 84, 107, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 450;
  letter-spacing: 0.01em;
  line-height: 1.72;
  text-align: center;
}

.impact-source-line {
  display: block;
}

.impact-source a {
  color: #8f6625;
  font-weight: 620;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.why-reasons-panel {
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin-top: 76px;
  margin-left: 50%;
  padding: clamp(54px, 6vw, 82px) clamp(24px, 4vw, 54px);
  overflow: hidden;
  border-top: 1px solid rgba(16, 32, 51, 0.1);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  background: #eef5f3;
  transform: translateX(-50%);
}

.why-reasons-panel::before,
.why-reasons-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-reasons-panel::before {
  z-index: 0;
  inset: -8%;
  background: url("../assets/images/why-medical-tech-city-bg-v2.png") center 48% / cover no-repeat;
  opacity: 0.9;
  transform: scale(1.04);
  transform-origin: center top;
}

.why-reasons-panel::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(247, 250, 250, 0.46) 0%, rgba(247, 250, 250, 0.28) 56%, rgba(238, 246, 245, 0.2) 100%),
    linear-gradient(135deg, rgba(185, 148, 67, 0.05) 0%, rgba(15, 118, 110, 0.03) 100%);
}

.why-support-heading,
.reason-grid {
  position: relative;
  z-index: 1;
}

.why-support-heading {
  max-width: 820px;
  margin: 0 auto clamp(64px, 6vw, 82px);
  text-align: center;
  text-shadow: 0 12px 34px rgba(255, 255, 255, 0.5);
}

.why-support-heading h2 {
  max-width: min(100%, 920px);
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

.why-support-heading p {
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

.feature-grid,
.treatment-grid,
.story-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px) clamp(34px, 5vw, 72px);
  max-width: 1120px;
  margin-inline: auto;
  border: 0;
  background: transparent;
}

.feature-card.reason-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 0 0 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.46s ease;
}

.feature-card.reason-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  bottom: 0.18em;
  width: 2px;
  background: linear-gradient(180deg, rgba(224, 189, 98, 0.95), rgba(143, 102, 37, 0.35));
  transform-origin: top;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.feature-card.reason-card:hover {
  transform: translateX(6px);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.feature-card.reason-card:hover::before {
  transform: scaleY(1.18);
}

.reason-label {
  position: relative;
  display: inline-block;
  max-width: none;
  color: var(--ink);
  background: linear-gradient(90deg, var(--ink) 0%, #8f6625 42%, #d2ac54 52%, var(--ink) 66%);
  background-size: 260% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.16rem, 1.55vw, 1.55rem);
  font-weight: 680;
  letter-spacing: 0.01em;
  line-height: 1.18;
  text-shadow: 0 10px 28px rgba(255, 255, 255, 0.52);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), color 0.36s ease;
}

.reason-label::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 148, 67, 0.95), rgba(185, 148, 67, 0));
  transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card.reason-card:hover .reason-label {
  animation: reasonTextShine 1.18s ease both;
  transform: translateY(-2px);
}

.feature-card.reason-card:hover .reason-label::after {
  width: min(100%, 220px);
}

@keyframes reasonTextShine {
  0% {
    background-position: 100% 0;
    -webkit-text-fill-color: var(--ink);
  }

  18% {
    -webkit-text-fill-color: transparent;
  }

  100% {
    background-position: 0 0;
    -webkit-text-fill-color: transparent;
  }
}

.feature-card,
.service-card,
.treatment-card,
.story-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.5s ease;
}

.feature-card:hover,
.service-card:hover,
.treatment-card:hover,
.story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.25);
  box-shadow: 0 20px 48px rgba(16, 32, 51, 0.12);
}

.feature-card {
  overflow: hidden;
}

.feature-card img,
.treatment-card img,
.story-card img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1.09);
  filter: brightness(1.12) contrast(0.94) saturate(1.02);
}

.feature-card img {
  aspect-ratio: 4 / 3;
}

.feature-card div,
.story-card div,
.treatment-card div {
  padding: 22px;
}

.feature-card p,
.service-card p,
.treatment-card p,
.story-card p,
.form-note {
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 96px;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-card {
  padding: 28px;
}

.service-card span,
.treatment-card span,
.story-card span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-section {
  padding: 110px 0;
  scroll-margin-top: 92px;
  background: var(--surface);
}

.services-section .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  text-align: center;
}

.services-section .section-title {
  max-width: min(100%, 980px);
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3.3rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.gold-line {
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 24px;
  background: linear-gradient(90deg, rgba(185, 148, 67, 0), rgba(185, 148, 67, 0.95), rgba(185, 148, 67, 0));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 64px;
}

.services-section .service-card {
  min-height: 300px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: var(--radius);
  background: var(--surface-alt);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.08);
}

.services-section .service-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 22px 54px rgba(16, 32, 51, 0.14);
}

.service-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-section .service-card:hover .service-img img {
  transform: scale(1.06);
}

.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.92) 0%, rgba(11, 31, 58, 0.36) 47%, rgba(11, 31, 58, 0.08) 72%, transparent 100%);
  pointer-events: none;
}

.service-img-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 22px;
}

.service-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-num {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--navy);
  background: linear-gradient(135deg, #d8b866, var(--gold));
  box-shadow: 0 8px 22px rgba(185, 148, 67, 0.36);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.service-name {
  color: var(--white);
  min-width: 0;
  max-width: calc(100% - 56px);
  overflow: hidden;
  font-size: clamp(0.98rem, 1.08vw, 1.05rem);
  font-weight: 760;
  line-height: 1.25;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.32);
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, #d8b866, var(--gold));
  box-shadow: 0 7px 18px rgba(185, 148, 67, 0.24);
  cursor: pointer;
  font-family: "Aptos", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 300;
  letter-spacing: 0.09em;
  text-transform: none;
  transition: gap 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s ease, box-shadow 0.28s ease;
}

.service-arrow span {
  font-family: "Aptos", "Inter", "Segoe UI", Arial, sans-serif !important;
  font-size: inherit;
  font-weight: 300 !important;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: none !important;
  -webkit-font-smoothing: antialiased;
}

.service-arrow span:first-child {
  color: rgba(16, 32, 51, 0.74);
}

.service-arrow:hover {
  gap: 6px;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(185, 148, 67, 0.42);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 18px 28px;
  padding: 22px 32px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, #10213b, #132f52);
  box-shadow: 0 18px 48px rgba(16, 32, 51, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.trust-item-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.trust-item-text div:first-child {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.25;
}

.trust-item-text div:last-child {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.35;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(4, 14, 28, 0.74);
  backdrop-filter: blur(10px);
  transition: opacity 0.28s ease, visibility 0s 0.28s;
}

.service-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s ease, visibility 0s;
}

.service-modal-content {
  width: min(820px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 34px 80px rgba(4, 14, 28, 0.34);
}

.service-modal-header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.service-modal-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 820;
}

.service-modal-title .service-num {
  width: 38px;
  height: 38px;
  font-size: 0.9rem;
}

.service-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  background: var(--surface);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.service-modal-close:hover {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.service-modal-body {
  padding: 26px;
}

.service-modal-img {
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--surface-alt);
}

.service-modal-img img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.service-modal-detail {
  margin-bottom: 24px;
  padding: 20px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: var(--surface-alt);
  font-size: 0.94rem;
  line-height: 1.85;
}

.service-modal-section {
  margin-bottom: 24px;
}

.service-modal-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
}

.service-modal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.service-modal-list-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-modal-list-item span {
  color: var(--gold);
  font-weight: 900;
}

.service-modal-desc {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.75;
}

.service-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-modal-tag {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(15, 118, 110, 0.08);
  font-size: 0.78rem;
  font-weight: 760;
}

.service-modal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.service-modal-btn {
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.service-modal-btn.primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(185, 148, 67, 0.24);
}

.service-modal-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(185, 148, 67, 0.36);
}

.service-modal-btn.ghost {
  color: var(--ink-soft);
  background: transparent;
  border-color: var(--line);
}

.service-modal-btn.ghost:hover {
  color: var(--ink);
  background: var(--surface-alt);
}

#treatments {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 248, 247, 0.8), rgba(255, 255, 255, 0.98) 42%, rgba(239, 245, 244, 0.74)),
    radial-gradient(circle at 18% 12%, rgba(185, 148, 67, 0.14), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(15, 118, 110, 0.1), transparent 32%);
}

#treatments .section-heading {
  width: min(1120px, calc(100% - 32px));
  max-width: none;
  margin-bottom: 42px;
  margin-inline: auto;
  text-align: center;
}

#treatments .section-heading h2 {
  max-width: min(1120px, 100%);
  margin-inline: auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3.3rem);
  font-weight: 850;
  line-height: 1.04;
  text-align: center;
  text-wrap: balance;
  white-space: normal;
}

#treatments .section-heading p {
  max-width: min(920px, 100%);
  margin-inline: auto;
  color: rgba(16, 32, 51, 0.58);
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.94rem, 1.05vw, 1.03rem);
  font-weight: 360;
  line-height: 1.78;
  text-align: center;
  text-wrap: balance;
  white-space: normal;
}

.treatment-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.treatment-marquee.is-dragging {
  cursor: grabbing;
}

.treatment-track {
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.treatment-marquee.is-dragging .experience-card:hover {
  transform: none;
}

.treatment-set {
  display: flex;
  flex: 0 0 auto;
  gap: 24px;
  padding: 8px 12px 24px;
}

.experience-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(252px, 22vw, 328px);
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(16, 32, 51, 0.1);
  transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 148, 67, 0.28);
  box-shadow: 0 24px 58px rgba(16, 32, 51, 0.15);
}

.experience-image {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  aspect-ratio: 1.5 / 1;
  background: #dce8e7;
}

.experience-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(11, 31, 58, 0.22));
  pointer-events: none;
}

.experience-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) contrast(0.96) saturate(1.02);
  transition: transform 0.52s ease;
}

.experience-card:hover .experience-image img {
  transform: scale(1.05);
}

.experience-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 224px;
  padding: 18px 18px 20px;
}

.experience-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 12px;
}

.experience-category {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  border: 1px solid rgba(185, 148, 67, 0.28);
  border-radius: 999px;
  color: #8f6625;
  background: rgba(216, 184, 102, 0.14);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.experience-card h3 {
  min-height: 2.55em;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1rem, 1.16vw, 1.16rem);
  font-weight: 780;
  line-height: 1.22;
  letter-spacing: 0;
}

.experience-heat {
  margin: auto 0 0;
  padding-top: 15px;
}

.experience-heat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: rgba(16, 32, 51, 0.54);
  font-size: 0.64rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-heat-top strong {
  color: #9d6a1f;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.experience-heat-bar {
  position: relative;
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 32, 51, 0.08) 0%, rgba(16, 32, 51, 0.08) 100%);
  box-shadow: inset 0 1px 2px rgba(16, 32, 51, 0.08);
}

.experience-heat-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 45%, transparent 72%);
  opacity: 0;
  transform: translateX(-120%);
}

.experience-card.is-heat-complete .experience-heat-bar::after {
  animation: heatBarShine 1.25s ease 0.28s both;
}

.experience-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

@keyframes heatBarShine {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  32% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes treatmentMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.treatment-card img {
  aspect-ratio: 1 / 0.78;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbfa 0%, #eef5f1 54%, #ffffff 100%);
  isolation: isolate;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(118deg, transparent 0 58%, rgba(216, 184, 102, 0.14) 58.2%, transparent 59%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 42%);
  pointer-events: none;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-section .testimonial-heading {
  display: grid;
  width: 100%;
  max-width: none;
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

.testimonials-section .testimonial-heading h2 {
  width: 100%;
  max-width: min(1120px, 100%);
  margin-inline: auto;
  font-size: clamp(1.9rem, 3.8vw, 3.3rem);
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
  white-space: normal;
}

.testimonials-section .testimonial-heading p {
  max-width: min(920px, 100%);
  margin-inline: auto;
  color: rgba(16, 32, 51, 0.58);
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.94rem, 1.05vw, 1.03rem);
  font-weight: 360;
  line-height: 1.78;
  text-align: center;
  text-wrap: balance;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
  margin-top: clamp(28px, 3.5vw, 44px);
}

.testimonial-feature,
.testimonial-card {
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 56px rgba(16, 32, 51, 0.1);
  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.5s ease;
}

.testimonial-feature:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 148, 67, 0.3);
  box-shadow: 0 30px 72px rgba(16, 32, 51, 0.15);
}

.testimonial-feature {
  display: grid;
  grid-template-rows: minmax(340px, 0.94fr) auto;
  min-height: 648px;
}

.testimonial-feature-image {
  position: relative;
  overflow: hidden;
  background: #dce8e7;
}

.testimonial-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(16, 32, 51, 0.18));
  pointer-events: none;
}

.testimonial-feature img,
.testimonial-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) contrast(0.97) saturate(1.02);
  transition: transform 0.55s ease;
}

.testimonial-feature:hover img,
.testimonial-card:hover img {
  transform: scale(1.04);
}

.testimonial-feature-copy {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
}

.testimonial-tag {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 4px 11px;
  border: 1px solid rgba(185, 148, 67, 0.32);
  border-radius: 999px;
  color: #8f6625;
  background: rgba(216, 184, 102, 0.14);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-quote {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.32rem, 1.9vw, 1.86rem);
  line-height: 1.34;
}

.testimonial-person {
  display: grid;
  gap: 4px;
}

.testimonial-person strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 850;
}

.testimonial-person small {
  color: var(--muted);
  font-size: 0.86rem;
}

.testimonial-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(16, 32, 51, 0.08);
}

.testimonial-proof span {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 0 10px;
  color: var(--teal-dark);
  background: rgba(248, 251, 250, 0.9);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.testimonial-list {
  display: grid;
  gap: 18px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr);
  min-height: 194px;
}

.testimonial-card img {
  aspect-ratio: 1 / 1.24;
}

.testimonial-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px 22px;
}

.testimonial-card .testimonial-tag {
  margin-bottom: 12px;
}

.testimonial-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.58;
}

.testimonial-card .testimonial-person {
  margin-top: auto;
}

.review-hub {
  overflow: hidden;
  margin: clamp(30px, 3.6vw, 44px) auto 0;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.07);
  backdrop-filter: blur(14px);
}

.review-platform-tabs {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  padding: 0 22px;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.review-platform-tabs::-webkit-scrollbar {
  display: none;
}

.review-platform-tabs button {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.98rem;
  font-weight: 520;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.review-platform-tabs button strong {
  font-size: 0.98em;
  font-weight: 620;
}

.review-platform-tabs button:not(.is-active) {
  color: rgba(16, 32, 51, 0.56);
}

.review-platform-tabs button:hover,
.review-platform-tabs button:focus-visible {
  color: var(--ink);
}

.review-platform-tabs button:focus-visible {
  outline: 2px solid rgba(185, 148, 67, 0.42);
  outline-offset: 5px;
}

.review-platform-tabs button.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--ink);
}

.review-source-icon {
  display: inline-block;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  overflow: visible;
}

.review-score-line {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  color: var(--ink);
  font-size: 0.94rem;
}

.review-score-line strong {
  font-weight: 790;
}

.review-score-stars {
  color: #f5ad16;
  font-size: 1.18rem;
  letter-spacing: 0.06em;
}

.review-rating-mark,
.testimonial-stars {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 7px;
  white-space: nowrap;
  vertical-align: middle;
}

.review-rating-mark {
  width: fit-content;
}

.review-inline-rating {
  display: inline-flex !important;
  width: max-content !important;
  max-width: none !important;
  align-items: center !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  gap: 7px !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.star-glyphs {
  display: inline-block !important;
  color: #f5ad16;
  font-family: "Arial Black", "Inter", "Segoe UI Symbol", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1;
  text-shadow: 0.45px 0 0 currentColor, -0.25px 0 0 currentColor;
  transform: scaleX(1.08);
  transform-origin: left center;
}

.verified-badge {
  position: relative;
  display: inline-grid !important;
  width: 17px;
  height: 17px;
  flex: 0 0 17px !important;
  place-items: center;
  border-radius: 999px;
  cursor: help;
  line-height: 1;
}

.verified-badge svg {
  display: block;
  width: 17px;
  height: 17px;
}

.verified-badge svg path:first-child {
  fill: #4285f4;
}

.verified-badge svg path:last-child {
  fill: #ffffff;
}

.verified-badge::after {
  content: "Verified";
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  z-index: 4;
  padding: 5px 8px;
  border-radius: 6px;
  color: #fff;
  background: rgba(16, 32, 51, 0.92);
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.18);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.verified-badge:hover::after,
.verified-badge:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  padding-inline: 36px;
}

.testimonials-section .testimonial-layout {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 2px 10px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.testimonials-section .testimonial-layout::-webkit-scrollbar {
  display: none;
}

.testimonial-carousel.is-dragging .testimonial-layout {
  cursor: grabbing;
  scroll-behavior: auto;
}

.testimonials-section .testimonial-card {
  display: flex;
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 304px;
  min-height: 304px;
  flex-direction: column;
  padding: 24px 22px 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 999px;
  color: rgba(16, 32, 51, 0.78);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(16, 32, 51, 0.12);
  font-size: 1.55rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  color: var(--ink);
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.testimonial-nav-prev {
  left: 0;
}

.testimonial-nav-next {
  right: 0;
}

.testimonials-section .testimonial-card > .testimonial-person {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 0;
}

.testimonials-section .testimonial-card img.testimonial-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  object-fit: cover;
  filter: none;
  transition: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.92), 0 8px 18px rgba(16, 32, 51, 0.12);
}

.testimonials-section .testimonial-card:hover img.testimonial-avatar {
  transform: none;
}

.testimonial-source-icon {
  display: block;
  width: 23px;
  height: 23px;
  overflow: visible;
}

.testimonial-stars {
  display: block;
  width: max-content;
  margin-top: 18px;
  color: #f5ad16;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.testimonials-section .testimonial-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  margin: 12px 0 14px;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  line-height: 1.48;
}

.testimonial-read {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.partner-section {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(56px, 5vw, 68px);
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 18%, rgba(15, 118, 110, 0.08), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(185, 148, 67, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfcfb 0%, #f5f7f5 100%);
}

.partner-heading {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.partner-heading .section-kicker {
  color: rgba(15, 118, 110, 0.82);
}

.partner-heading h2 {
  max-width: min(100%, 980px);
  margin-inline: auto;
  color: var(--ink);
  text-wrap: balance;
}

.partner-subtitle {
  margin: 14px auto 0;
  color: rgba(16, 32, 51, 0.74);
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 520;
  letter-spacing: 0.01em;
  line-height: 1.55;
  text-wrap: balance;
}

.partner-copy {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(16, 32, 51, 0.58);
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.94rem, 1.05vw, 1.03rem);
  font-weight: 360;
  line-height: 1.78;
  text-wrap: balance;
}

body.is-rtl-text [data-i18n],
body.is-rtl-text [data-i18n-placeholder],
body.is-rtl-text .service-modal-detail,
body.is-rtl-text .service-modal-desc,
body.is-rtl-text .legal-modal-body,
body.is-rtl-text .partner-modal p,
body.is-rtl-text .testimonial-card p,
body.is-rtl-text .testimonial-person small,
body.is-rtl-text .treatment-copy,
body.is-rtl-text .contact-copy,
body.is-rtl-text .footer-grid > *,
body.is-rtl-text .partner-inquiry-heading,
body.is-rtl-text .partner-inquiry-form,
body.is-rtl-text .legal-modal-card {
  direction: rtl;
  unicode-bidi: plaintext;
}

body.is-rtl-text .site-header,
body.is-rtl-text .treatment-track,
body.is-rtl-text .treatment-set,
body.is-rtl-text .site-nav,
body.is-rtl-text .header-actions,
body.is-rtl-text .hero-actions,
body.is-rtl-text .impact-grid,
body.is-rtl-text .reason-grid,
body.is-rtl-text .services-grid,
body.is-rtl-text .review-platform-tabs,
body.is-rtl-text .review-score-line,
body.is-rtl-text .testimonial-layout,
body.is-rtl-text .partner-logo-grid,
body.is-rtl-text .partner-inquiry-panel,
body.is-rtl-text .contact-layout,
body.is-rtl-text .form-grid,
body.is-rtl-text .form-grid.compact,
body.is-rtl-text .footer-grid {
  direction: ltr;
}

body.is-rtl-text .why-support-heading,
body.is-rtl-text #treatments .section-heading,
body.is-rtl-text .testimonials-section .testimonial-heading,
body.is-rtl-text .partner-heading {
  text-align: center;
}

body.is-rtl-text .footer-legal-link {
  text-align: right;
}

body.is-rtl-text .contact-copy,
body.is-rtl-text .footer-grid > * {
  text-align: right;
}

body.is-rtl-text .contact-planning-panel,
body.is-rtl-text .contact-planning-panel div,
body.is-rtl-text .contact-method-card,
body.is-rtl-text .contact-form,
body.is-rtl-text .consent,
body.is-rtl-text .form-submit,
body.is-rtl-text .partner-form-submit,
body.is-rtl-text .partner-cta-button,
body.is-rtl-text .button {
  direction: ltr;
}

body.is-rtl-text .contact-planning-panel span,
body.is-rtl-text .contact-method-card small,
body.is-rtl-text label > span,
body.is-rtl-text .consent > span {
  direction: rtl;
  text-align: right;
  unicode-bidi: plaintext;
}

body.is-rtl-text .contact-method-card strong {
  direction: ltr;
  text-align: right;
  unicode-bidi: isolate;
}

body.is-rtl-text .contact-form label,
body.is-rtl-text .partner-inquiry-form label {
  text-align: right;
}

body.is-rtl-text .contact-form input,
body.is-rtl-text .contact-form select,
body.is-rtl-text .contact-form textarea,
body.is-rtl-text .partner-inquiry-form input,
body.is-rtl-text .partner-inquiry-form select,
body.is-rtl-text .partner-inquiry-form textarea {
  direction: ltr;
  text-align: right;
  unicode-bidi: plaintext;
}

body.is-rtl-text .button span[aria-hidden],
body.is-rtl-text .form-submit span[aria-hidden],
body.is-rtl-text .partner-form-submit span[aria-hidden],
body.is-rtl-text .partner-cta-button span[aria-hidden] {
  direction: ltr;
  unicode-bidi: isolate;
}

body.is-rtl-text .contact-method-card strong,
body.is-rtl-text .footer-grid p,
body.is-rtl-text input,
body.is-rtl-text select,
body.is-rtl-text textarea {
  unicode-bidi: plaintext;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
  margin-top: clamp(36px, 4.6vw, 58px);
}

.partner-card {
  display: block;
  min-height: 164px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.07);
  border-radius: 8px;
  padding: 0;
  color: rgba(16, 32, 51, 0.72);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.07);
  text-align: center;
  opacity: 1;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.partner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 32, 51, 0.01) 0%,
    rgba(16, 32, 51, 0.05) 48%,
    rgba(16, 32, 51, 0.58) 100%
  );
  pointer-events: none;
}

.partner-card:hover,
.partner-card:focus-visible {
  border-color: rgba(15, 118, 110, 0.2);
  background: #fff;
  box-shadow: 0 20px 48px rgba(16, 32, 51, 0.1);
  transform: translateY(-3px);
}

.partner-card:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  outline-offset: 3px;
}

.partner-logo-art {
  position: absolute;
  inset: 0;
  display: grid;
  height: auto;
  place-items: center;
  background-image: var(--partner-logo);
  background-repeat: no-repeat;
  background-position: var(--partner-position, center);
  background-size: var(--partner-size, cover);
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  transition: transform 0.24s ease;
}

.partner-logo-art.logo-contain {
  top: 18px;
  right: 18px;
  bottom: 62px;
  left: 18px;
  height: auto;
  background-size: var(--partner-contain-size, contain);
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
}

.partner-logo-art.wide-logo {
  right: 14px;
  left: 14px;
}

.partner-logo-art.emblem-logo {
  top: 16px;
  right: 28px;
  bottom: 68px;
  left: 28px;
  background-size: contain;
}

.partner-logo-art.svg-logo {
  background-size: auto 50px;
}

.partner-card:hover .partner-logo-art,
.partner-card:focus-visible .partner-logo-art {
  transform: translateY(-2px) scale(1.02);
}

.partner-logo-mark {
  display: flex;
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  align-items: center;
  justify-content: center;
  width: auto;
  overflow: hidden;
  color: #fff;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.78rem, 0.84vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.22;
  text-shadow: 0 2px 14px rgba(5, 18, 31, 0.72), 0 1px 2px rgba(5, 18, 31, 0.86);
  white-space: nowrap;
}

.partner-card.has-logo .partner-logo-mark {
  color: rgba(14, 26, 40, 0.94);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.95), 0 0 18px rgba(255, 255, 255, 0.84);
}

.partner-card.has-logo::after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.12) 46%,
    rgba(255, 255, 255, 0.78) 100%
  );
}

.partner-logo-mark.is-overflowing {
  justify-content: flex-start;
}

.partner-logo-text {
  display: inline-block;
  min-width: max-content;
  transform: translateX(0);
  will-change: transform;
}

.partner-card:hover .partner-logo-mark.is-overflowing .partner-logo-text,
.partner-card:focus-visible .partner-logo-mark.is-overflowing .partner-logo-text {
  animation: partnerNameMarquee var(--partner-name-duration, 3.2s) linear 0s infinite;
}

@keyframes partnerNameMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--partner-name-overflow, 24px)));
  }
}

.partner-cta {
  display: grid;
  justify-items: center;
  max-width: 780px;
  margin: clamp(38px, 4.8vw, 62px) auto 0;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  padding-top: clamp(28px, 3.4vw, 42px);
  text-align: center;
}

.partner-cta h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
  font-weight: 560;
  letter-spacing: 0;
}

.partner-cta p {
  max-width: 650px;
  margin: 14px auto 22px;
  color: rgba(16, 32, 51, 0.6);
  font-size: clamp(0.94rem, 1.05vw, 1rem);
  font-weight: 360;
  line-height: 1.72;
}

.partner-cta-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(185, 148, 67, 0.42);
  border-radius: 999px;
  padding: 0 28px;
  color: #102033;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 238, 216, 0.96)),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.9), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 36px rgba(16, 32, 51, 0.1),
    0 6px 16px rgba(185, 148, 67, 0.13);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  font-weight: 760;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.partner-cta-button span:last-child {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #102033;
  box-shadow: 0 8px 18px rgba(16, 32, 51, 0.16);
}

.partner-cta-button:hover,
.partner-cta-button:focus-visible {
  border-color: rgba(185, 148, 67, 0.68);
  background:
    linear-gradient(135deg, #fff, #f4ddb0),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.9), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 24px 52px rgba(16, 32, 51, 0.14),
    0 10px 22px rgba(185, 148, 67, 0.18);
  transform: translateY(-2px);
}

.partner-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 32, 51, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.partner-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.partner-modal-card {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 88px rgba(16, 32, 51, 0.24);
}

.partner-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 999px;
  color: rgba(16, 32, 51, 0.66);
  background: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.partner-modal-category {
  display: none;
}

.partner-modal h3 {
  margin: 14px 0 12px;
  color: var(--ink);
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.2;
}

.partner-modal p {
  margin: 0;
  color: rgba(16, 32, 51, 0.64);
  font-size: 1rem;
  font-weight: 360;
  line-height: 1.72;
}

.partner-inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: grid;
  place-items: center;
  padding: clamp(10px, 1.7vw, 22px);
  background: rgba(10, 23, 38, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.partner-inquiry-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.partner-inquiry-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  width: min(100%, 1040px);
  height: min(92vh, 820px);
  max-height: calc(100vh - 20px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 40px 110px rgba(6, 18, 31, 0.36);
}

.partner-inquiry-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 999px;
  color: rgba(16, 32, 51, 0.7);
  background: rgba(255, 255, 255, 0.94);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.partner-inquiry-heading {
  display: grid;
  align-content: end;
  min-height: 0;
  padding: clamp(24px, 3.2vw, 40px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(16, 32, 51, 0.97), rgba(14, 76, 72, 0.92)),
    radial-gradient(circle at 22% 16%, rgba(231, 199, 116, 0.18), transparent 34%);
}

.partner-inquiry-heading span {
  color: rgba(231, 199, 116, 0.94);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.partner-inquiry-heading h3 {
  margin: 14px 0 12px;
  color: #fff;
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.02;
}

.partner-inquiry-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  font-weight: 340;
  line-height: 1.76;
}

.partner-inquiry-form {
  min-height: 0;
  overflow-y: auto;
  padding: clamp(22px, 2.6vw, 34px);
  background:
    radial-gradient(circle at 100% 0%, rgba(185, 148, 67, 0.08), transparent 30%),
    #ffffff;
}

.partner-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.partner-inquiry-form label {
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.partner-inquiry-form input,
.partner-inquiry-form select,
.partner-inquiry-form textarea {
  border-color: rgba(16, 32, 51, 0.12);
  border-radius: 10px;
  background: rgba(247, 250, 248, 0.86);
}

.partner-consent {
  margin-top: 6px;
}

.partner-form-submit {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #102033, #0f766e);
  box-shadow: 0 18px 38px rgba(16, 32, 51, 0.16);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 760;
  cursor: pointer;
}

.contact-section {
  padding-top: clamp(62px, 6vw, 76px);
  background: linear-gradient(180deg, #f7faf8 0%, #eef6f4 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 96px;
}

.contact-copy h2 {
  margin: 10px 0 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.contact-copy p {
  max-width: 560px;
  color: rgba(16, 32, 51, 0.68);
  font-size: clamp(1rem, 1.16vw, 1.1rem);
  font-weight: 360;
  line-height: 1.75;
}

.contact-planning-panel {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-planning-panel div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: calc(var(--radius) - 2px);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.68);
}

.contact-planning-panel strong {
  color: #b99443;
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.contact-planning-panel span {
  color: rgba(16, 32, 51, 0.74);
  font-size: 0.94rem;
  font-weight: 540;
}

.contact-methods {
  display: grid;
  gap: 12px;
  max-width: 440px;
  margin-top: 28px;
}

.contact-method-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 64px;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: 10px;
  padding: 10px 15px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 249, 0.82)),
    radial-gradient(circle at 0% 0%, rgba(15, 118, 110, 0.1), transparent 44%);
  box-shadow: 0 16px 36px rgba(16, 32, 51, 0.07);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.contact-method-card:hover,
.contact-method-card:focus-visible {
  border-color: rgba(15, 118, 110, 0.3);
  box-shadow: 0 22px 44px rgba(16, 32, 51, 0.1);
  transform: translateY(-2px);
}

.contact-method-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: #0f766e;
  background: rgba(15, 118, 110, 0.1);
}

.contact-method-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-card small,
.contact-method-card strong {
  display: block;
  min-width: 0;
}

.contact-method-card small {
  margin-bottom: 2px;
  color: rgba(16, 32, 51, 0.5);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-method-card strong {
  overflow-wrap: anywhere;
  color: var(--teal-dark);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  font-weight: 760;
  letter-spacing: 0;
}

.contact-form {
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 72px rgba(16, 32, 51, 0.12);
  backdrop-filter: blur(14px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid.compact {
  margin-bottom: 4px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 680;
  letter-spacing: 0.03em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 410;
  letter-spacing: 0;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(16, 32, 51, 0.55) 50%),
    linear-gradient(135deg, rgba(16, 32, 51, 0.55) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
  min-height: 112px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.22);
  border-color: var(--teal);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 550;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.consent input[type="checkbox"] {
  appearance: none;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 4px 0 0;
  border: 1px solid rgba(16, 32, 51, 0.24);
  border-radius: 4px;
  padding: 0;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(16, 32, 51, 0.06);
  cursor: pointer;
}

.consent input[type="checkbox"]:checked {
  border-color: #0f766e;
  background:
    #0f766e
    url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7.1 5.8 10 11 4' fill='none' stroke='white' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 13px 13px no-repeat;
}

.consent input[type="checkbox"]:focus,
.consent input[type="checkbox"]:focus-visible {
  outline: 0;
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.16);
}

.consent a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-status {
  display: none;
  margin: 12px 0 0;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 460;
  line-height: 1.55;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-loading {
  color: rgba(16, 32, 51, 0.72);
  background: rgba(16, 32, 51, 0.05);
}

.form-status.is-success {
  color: #0c4f4c;
  border-color: rgba(15, 118, 110, 0.16);
  background: rgba(15, 118, 110, 0.08);
}

.form-status.is-error {
  color: #8a3a25;
  border-color: rgba(185, 86, 45, 0.18);
  background: rgba(185, 86, 45, 0.08);
}

.form-submit:disabled,
.partner-form-submit:disabled {
  cursor: progress;
  opacity: 0.68;
}

.form-note {
  margin: 12px 0 0;
  font-size: 0.88rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.6fr;
  gap: 32px;
  padding: 42px 0;
}

.footer-grid img {
  width: 138px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

body.reveal-ready .feature-card,
body.reveal-ready .service-card,
body.reveal-ready .treatment-card,
body.reveal-ready .story-card,
body.reveal-ready .review-hub,
body.reveal-ready .testimonial-feature,
body.reveal-ready .testimonial-card,
body.reveal-ready .partner-card,
body.reveal-ready .section-heading,
body.reveal-ready .impact-heading,
body.reveal-ready .impact-stat {
  opacity: 0;
  transform: translateY(18px);
}

body.reveal-ready .feature-card.reason-card {
  transform: translateY(24px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

body.reveal-ready .feature-card.reason-card:nth-child(1) { transition-delay: 0.04s; }
body.reveal-ready .feature-card.reason-card:nth-child(2) { transition-delay: 0.12s; }
body.reveal-ready .feature-card.reason-card:nth-child(3) { transition-delay: 0.2s; }
body.reveal-ready .feature-card.reason-card:nth-child(4) { transition-delay: 0.28s; }
body.reveal-ready .feature-card.reason-card:nth-child(5) { transition-delay: 0.36s; }
body.reveal-ready .feature-card.reason-card:nth-child(6) { transition-delay: 0.44s; }

body.reveal-ready .feature-card.is-visible,
body.reveal-ready .service-card.is-visible,
body.reveal-ready .treatment-card.is-visible,
body.reveal-ready .story-card.is-visible,
body.reveal-ready .review-hub.is-visible,
body.reveal-ready .testimonial-feature.is-visible,
body.reveal-ready .testimonial-card.is-visible,
body.reveal-ready .partner-card.is-visible,
body.reveal-ready .section-heading.is-visible,
body.reveal-ready .impact-heading.is-visible,
body.reveal-ready .impact-stat.is-visible {
  opacity: 1;
  transform: none;
}

.footer-grid h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: none;
}

.site-footer .footer-grid h2,
html[lang="zh-CN"] .site-footer .footer-grid h2 {
  max-width: none;
  margin: 0 0 10px;
  color: var(--white);
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-wrap: normal;
}

.footer-info-block {
  margin-top: 18px;
}

.footer-info-block h2 {
  margin-bottom: 8px;
}

.footer-info-block p {
  margin: 0;
  line-height: 1.65;
}

.footer-hours-line {
  white-space: nowrap;
}

.footer-grid a {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.footer-legal-link {
  display: block;
  border: 0;
  margin: 0 0 7px;
  padding: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  opacity: 0.86;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  opacity: 1;
  transform: translateX(2px);
}

.footer-bottom {
  padding: 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 32, 51, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.legal-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-card {
  position: relative;
  width: min(100%, 660px);
  max-height: min(82vh, 720px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 38px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 248, 0.96)),
    radial-gradient(circle at 12% 0%, rgba(185, 148, 67, 0.12), transparent 42%);
  box-shadow: 0 30px 80px rgba(16, 32, 51, 0.22);
}

.legal-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.legal-modal-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: #0f766e;
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-modal h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.08;
}

.legal-modal-body {
  display: grid;
  gap: 12px;
  color: rgba(16, 32, 51, 0.72);
  font-size: 0.98rem;
  font-weight: 370;
  line-height: 1.76;
}

.legal-modal-body p {
  margin: 0;
}

.legal-modal-body ul {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding-left: 20px;
}

.legal-page {
  padding: 128px 0 72px;
  background: var(--surface-alt);
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-card ul {
  padding-left: 1.2rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .site-nav,
  .header-actions .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(16, 33, 59, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open .nav-dropdown {
    display: grid;
  }

  .site-nav.is-open .nav-dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 2px 0 8px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav.is-open .nav-dropdown-menu::before {
    display: none;
  }

  .site-nav.is-open .nav-dropdown-menu a {
    min-height: 34px;
    padding: 0 10px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    letter-spacing: 0.035em;
    white-space: normal;
  }

  .site-nav.is-open .nav-dropdown-menu a:hover,
  .site-nav.is-open .nav-dropdown-menu a:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: none;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .header-actions .language-menu {
    display: inline-flex;
  }

  .hero-title-block {
    width: min(680px, 58vw);
    margin-left: 0;
    transform: translate(-28px, -8px);
  }

  .feature-grid,
  .impact-grid,
  .services-grid,
  .treatment-grid,
  .story-grid,
  .split-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-heading,
  .contact-copy {
    position: static;
  }

  .impact-grid {
    gap: 36px 48px;
  }

  .trust-bar {
    justify-content: flex-start;
  }

  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .testimonials-section .testimonial-card {
    flex-basis: min(72vw, 360px);
  }

  .partner-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-logo-mark {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: 0.8rem;
  }

  .partner-inquiry-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    height: min(92vh, 820px);
    max-height: calc(100vh - 18px);
  }

  .partner-inquiry-heading {
    min-height: auto;
    padding: 28px 28px 24px;
  }

  .partner-inquiry-form {
    padding: 28px;
  }

  .testimonial-heading h2 {
    white-space: normal;
  }

  .testimonial-feature {
    grid-template-rows: minmax(280px, 0.7fr) auto;
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .brand,
  .brand img {
    width: 100px;
    height: auto;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 112px 0 56px;
  }

  .hero-title-block {
    width: min(100%, 460px);
    margin-left: 0;
    transform: none;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7.5vw, 3rem);
    letter-spacing: 0.07em;
  }

  .hero-title span:nth-child(1),
  .hero-title span:nth-child(3) {
    padding-left: 0;
  }

  .feature-grid,
  .impact-grid,
  .services-grid,
  .treatment-grid,
  .story-grid,
  .split-layout,
  .contact-layout,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reason-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.reason-card {
    min-height: 0;
    padding: 0;
  }

  .section {
    padding: 72px 0;
  }

  .services-section {
    padding: 72px 0;
  }

  .services-grid {
    gap: 24px;
    margin-bottom: 40px;
  }

  .review-platform-tabs {
    gap: 16px;
    padding-inline: 16px;
  }

  .review-score-line {
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 14px 16px;
  }

  .testimonial-carousel {
    padding-inline: 24px;
  }

  .testimonial-nav {
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
  }

  .testimonials-section .testimonial-card {
    flex-basis: min(84vw, 326px);
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-card {
    min-height: 154px;
  }

  .partner-logo-art {
    height: auto;
  }

  .partner-logo-art.logo-contain {
    top: 16px;
    right: 14px;
    bottom: 58px;
    left: 14px;
  }

  .partner-logo-mark {
    right: 10px;
    bottom: 10px;
    left: 10px;
    font-size: 0.72rem;
    font-weight: 700;
  }

  .partner-form-grid {
    grid-template-columns: 1fr;
  }

  .partner-inquiry-panel {
    grid-template-rows: auto minmax(0, 1fr);
    height: min(92vh, 760px);
    max-height: calc(100vh - 14px);
  }

  .partner-inquiry-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }

  .partner-inquiry-heading {
    padding: 24px 20px 18px;
  }

  .partner-inquiry-heading h3 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .partner-inquiry-heading p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .partner-inquiry-form {
    padding: 20px;
  }

  .partner-cta-button {
    width: 100%;
    max-width: 360px;
  }

  .partner-cta {
    margin-top: 34px;
    padding-top: 26px;
  }

  .legal-modal {
    padding: 14px;
  }

  .legal-modal-card {
    max-height: calc(100vh - 28px);
    padding: 24px 18px 20px;
  }

  .footer-hours-line {
    font-size: 0.86rem;
  }

  .form-grid,
  .form-grid.compact {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-top: 66px;
  }

  .contact-layout {
    gap: 32px;
  }

  .contact-copy h2 {
    max-width: 10ch;
    margin-bottom: 14px;
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .contact-copy p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .contact-planning-panel {
    gap: 8px;
    margin-top: 22px;
  }

  .contact-planning-panel div {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 54px;
    padding: 10px 12px;
  }

  .contact-planning-panel span {
    font-size: 0.9rem;
  }

  .contact-methods {
    max-width: none;
    gap: 10px;
    margin-top: 22px;
  }

  .contact-method-card {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 60px;
    gap: 11px;
    padding: 10px 12px;
  }

  .contact-method-icon {
    width: 38px;
    height: 38px;
  }

  .contact-method-card small {
    font-size: 0.62rem;
  }

  .contact-method-card strong {
    font-size: 0.95rem;
  }

  .contact-form {
    border-radius: 12px;
    padding: 18px;
  }

  label {
    gap: 7px;
    margin-bottom: 12px;
    font-size: 0.78rem;
  }

  input,
  select,
  textarea {
    min-height: 44px;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 16px;
  }

  textarea {
    min-height: 106px;
  }

  .consent {
    grid-template-columns: 18px minmax(0, 1fr);
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .testimonial-card img {
    aspect-ratio: 1.55 / 1;
  }

  .testimonial-feature-copy,
  .testimonial-card > div {
    padding: 20px;
  }

  .testimonial-proof {
    grid-template-columns: 1fr;
  }

  .testimonial-proof span {
    min-height: 38px;
  }

  .service-img {
    height: 260px;
  }

  .service-name {
    max-width: none;
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
  }

  .trust-bar {
    padding: 22px;
  }

  .trust-item {
    min-width: 100%;
  }

  .service-modal {
    padding: 14px;
  }

  .service-modal-header,
  .service-modal-body {
    padding: 18px;
  }

  .service-modal-title {
    font-size: 0.98rem;
  }

  .service-modal-list {
    grid-template-columns: 1fr;
  }

  .impact-stat {
    min-height: 0;
    padding: 0;
  }

  .impact-label {
    min-height: 0;
    margin-bottom: 16px;
  }

  .impact-number {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .impact-source {
    margin-bottom: 52px;
  }

  #treatments .section-heading {
    margin-bottom: 30px;
  }

  #treatments .section-heading h2,
  #treatments .section-heading p {
    white-space: normal;
  }

  .treatment-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .treatment-track {
    animation-duration: 120s;
  }

  .treatment-set {
    gap: 16px;
    padding-inline: 18px;
  }

  .experience-card {
    flex-basis: min(78vw, 300px);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .contact-form,
  .legal-card {
    padding: 20px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 78px;
  }

  .container {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    min-height: 64px;
    padding: 8px 14px;
  }

  .brand,
  .brand img {
    width: 94px;
    height: auto;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    width: 40px;
    height: 40px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: 10px;
    margin: 0;
  }

  .language-current {
    max-width: 138px;
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .language-current span {
    max-width: 88px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-current svg {
    width: 16px;
    height: 16px;
  }

  .language-dropdown {
    right: 0;
    min-width: 176px;
    max-height: min(72vh, 430px);
    overflow-y: auto;
  }

  .language-dropdown button {
    min-height: 40px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .site-nav.is-open {
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-content {
    min-height: 100svh;
    align-items: end;
    padding: 108px 0 54px;
  }

  .hero-title-block {
    width: min(100%, 360px);
    transform: none;
  }

  .hero-title {
    font-size: clamp(2rem, 8.4vw, 2.85rem);
    line-height: 1.16;
    letter-spacing: 0.052em;
    row-gap: 6px;
  }

  .hero-title span {
    white-space: nowrap;
  }

  .hero-title span:nth-child(3) {
    padding-left: clamp(24px, 10vw, 58px);
  }

  body.is-rtl-text .hero-title {
    letter-spacing: 0;
  }

  body.is-rtl-text .hero-title span {
    white-space: normal;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 330px);
    margin-top: 36px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 46px;
  }

  .trust-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 12px;
    padding: 18px;
  }

  .trust-item {
    min-width: 0;
    gap: 9px;
  }

  .trust-item-icon {
    width: 30px;
    height: 30px;
    font-size: 0.72rem;
  }

  .trust-item-text div:first-child {
    font-size: 0.78rem;
  }

  .trust-item-text div:last-child {
    font-size: 0.68rem;
  }

  .section,
  .services-section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  h2,
  html[lang="zh-CN"] h2,
  #treatments .section-heading h2,
  .testimonials-section .testimonial-heading h2,
  .partner-heading h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.55rem);
    line-height: 1.1;
  }

  .section-heading p:not(.eyebrow),
  .contact-copy p,
  #treatments .section-heading p,
  .testimonials-section .testimonial-heading p,
  .partner-copy {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-inline: auto;
    gap: 28px 14px;
    transform: none;
  }

  .impact-number {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .impact-label {
    margin-top: 12px;
    font-size: clamp(0.72rem, 2.6vw, 0.84rem);
    letter-spacing: 0.025em;
  }

  .impact-source {
    margin: 24px auto 50px;
    font-size: 0.74rem;
  }

  .why-reasons-panel {
    margin-top: 48px;
    padding: 52px 18px;
  }

  .why-support-heading {
    margin-bottom: 46px;
  }

  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 520px;
    margin-inline: auto;
  }

  .feature-card.reason-card {
    justify-content: center;
    min-height: 86px;
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 8px;
    padding: 15px 10px 18px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 14px 34px rgba(16, 32, 51, 0.06);
    text-align: center;
    backdrop-filter: blur(10px);
  }

  .feature-card.reason-card::before {
    top: auto;
    bottom: 10px;
    left: 50%;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, rgba(224, 189, 98, 0), rgba(224, 189, 98, 0.9), rgba(224, 189, 98, 0));
    transform: translateX(-50%);
  }

  .feature-card.reason-card:hover {
    transform: none;
  }

  .feature-card.reason-card:hover::before {
    transform: translateX(-50%) scaleX(1.12);
  }

  .reason-label {
    font-size: clamp(0.88rem, 3.7vw, 1.05rem);
    line-height: 1.22;
    text-align: center;
    text-wrap: balance;
  }

  .reason-label::after {
    display: none;
  }

  .treatment-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    contain: layout paint;
  }

  .treatment-track {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
  }

  .treatment-set {
    gap: 14px;
    padding-inline: 14px;
  }

  .experience-card {
    flex-basis: min(74vw, 286px);
    contain: layout paint;
    box-shadow: 0 14px 34px rgba(16, 32, 51, 0.08);
  }

  .experience-card:hover {
    transform: none;
    box-shadow: 0 14px 34px rgba(16, 32, 51, 0.08);
  }

  .experience-image img,
  .experience-card:hover .experience-image img {
    transform: none;
    transition: none;
  }

  .review-hub {
    border-radius: 12px;
  }

  .review-platform-tabs {
    gap: 18px;
    min-height: 50px;
    padding-inline: 16px;
  }

  .review-platform-tabs button {
    min-height: 50px;
    font-size: 0.9rem;
  }

  .review-score-line {
    min-height: 58px;
    padding: 12px 16px;
  }

  .testimonial-carousel {
    padding-inline: 0;
  }

  .testimonial-nav {
    display: none;
  }

  .testimonials-section .testimonial-layout {
    gap: 14px;
    padding-bottom: 8px;
  }

  .testimonials-section .testimonial-card {
    flex-basis: calc(100vw - 48px);
    min-width: calc(100vw - 48px);
    min-height: 286px;
    padding: 22px 20px;
  }

  .testimonial-stars {
    margin-top: 16px;
  }

  .partner-section {
    padding-bottom: 52px;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
  }

  .partner-card {
    min-height: 138px;
  }

  .partner-logo-art.logo-contain {
    top: 14px;
    right: 12px;
    bottom: 54px;
    left: 12px;
  }

  .partner-logo-mark {
    right: 9px;
    bottom: 10px;
    left: 9px;
    font-size: 0.7rem;
  }

  .partner-cta {
    margin-top: 32px;
    padding-top: 26px;
  }

  .contact-section {
    padding-top: 62px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-copy {
    text-align: left;
  }

  .contact-copy h2 {
    max-width: 12ch;
    margin-bottom: 14px;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .contact-planning-panel {
    gap: 8px;
    margin-top: 22px;
  }

  .contact-planning-panel div {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 54px;
    padding: 10px 12px;
  }

  .contact-methods {
    max-width: none;
    gap: 10px;
    margin-top: 22px;
  }

  .contact-method-card {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 60px;
    gap: 11px;
    padding: 10px 12px;
  }

  .contact-method-icon {
    width: 38px;
    height: 38px;
  }

  .contact-form {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 18px 52px rgba(16, 32, 51, 0.1);
  }

  .form-grid,
  .form-grid.compact,
  .partner-form-grid {
    grid-template-columns: 1fr;
  }

  label {
    gap: 7px;
    margin-bottom: 12px;
    font-size: 0.78rem;
  }

  input,
  select,
  textarea {
    min-height: 44px;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 16px;
  }

  textarea {
    min-height: 106px;
  }

  .consent {
    grid-template-columns: 18px minmax(0, 1fr);
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .site-footer {
    overflow: hidden;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0;
  }

  .footer-grid img {
    width: 116px;
  }

  .footer-hours-line {
    white-space: normal;
  }

  body.is-rtl-text .contact-copy {
    text-align: right;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 24px);
  }

  .site-header {
    gap: 8px;
    padding: 8px 10px;
  }

  .brand,
  .brand img {
    width: 86px;
  }

  .language-current {
    max-width: 118px;
    padding: 0 9px;
  }

  .language-current span {
    max-width: 70px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-title {
    font-size: clamp(1.78rem, 8.6vw, 2.25rem);
    letter-spacing: 0.04em;
    row-gap: 5px;
  }

  .hero-title-block {
    width: min(100%, 326px);
  }

  .hero-title span:nth-child(3) {
    padding-left: clamp(18px, 8vw, 42px);
  }

  .trust-bar {
    gap: 10px;
    padding: 16px 12px;
  }

  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .feature-card.reason-card {
    min-height: 82px;
    padding: 13px 8px 17px;
  }

  .reason-label {
    font-size: clamp(0.78rem, 3.6vw, 0.95rem);
  }

  .trust-item {
    gap: 7px;
  }

  .trust-item-icon {
    width: 28px;
    height: 28px;
    font-size: 0.66rem;
  }

  .trust-item-text div:first-child {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .trust-item-text div:last-child {
    font-size: 0.62rem;
  }

  .button {
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .partner-card {
    min-height: 128px;
  }

  .partner-logo-mark {
    font-size: 0.66rem;
  }

  .testimonials-section .testimonial-card {
    flex-basis: calc(100vw - 36px);
    min-width: calc(100vw - 36px);
  }

  .contact-method-card strong {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card.reason-card:hover,
  .feature-card.reason-card:hover .reason-label {
    animation: none;
    transform: none;
  }

  .hero-title.is-preparing span,
  .hero-title.is-visible span {
    opacity: 1;
    clip-path: inset(0);
    transform: none;
    transition: none;
  }

  .treatment-track {
    animation: none;
  }

  .treatment-marquee {
    overflow-x: auto;
  }

  .experience-heat-bar::after {
    animation: none;
  }
}
