:root {
  --ink: #102033;
  --ink-soft: #41546b;
  --muted: #68798c;
  --line: #dce5ed;
  --surface: #ffffff;
  --surface-alt: #f5f8f7;
  --teal: #2F855A;
  --teal-dark: #22543D;
  --gold: #D69E2E;
  --navy: #1A365D;
  --navy-rgb: 26 54 93;
  --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: 88px;
}

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: clamp(22px, 2.6vw, 40px);
  min-height: 72px;
  padding: 10px clamp(20px, 3.2vw, 46px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(var(--navy-rgb) / 0.55) 0%, rgba(var(--navy-rgb) / 0.08) 100%);
  border-bottom: 1px solid transparent;
  text-shadow: 0 1px 14px rgba(8, 20, 36, 0.35);
  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(var(--navy-rgb) / 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(8, 20, 36, 0.18);
  text-shadow: none;
}

.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(30px, 3vw, 52px);
  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.88);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  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: 4px;
  height: 2px;
  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-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-caret {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.7;
  transition: transform 0.24s ease;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: min(324px, 92vw);
  padding: 10px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  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.2s ease, transform 0.2s ease, visibility 0s 0.2s;
}

/* hover 桥：覆盖 trigger 与面板之间的 14px 间隙，避免悬停断链 */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
}

/* 指向触发器的顶部箭头 */
.nav-dropdown-menu::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(16, 32, 51, 0.1);
  border-top: 1px solid rgba(16, 32, 51, 0.1);
  transform: translateX(-50%) rotate(45deg);
  box-shadow: -2px -2px 6px rgba(16, 32, 51, 0.04);
  z-index: -1;
}

.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.2s ease, transform 0.2s ease, visibility 0s;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #21364f;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-transform: none;
  white-space: normal;
  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: linear-gradient(90deg, rgba(47, 133, 90, 0.12), rgba(47, 133, 90, 0.04));
  transform: translateX(3px);
}

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

.nav-off-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(214, 158, 46, 0.24), rgba(214, 158, 46, 0.12));
}

.nav-off-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-off-sub {
  margin-left: auto;
  color: rgba(16, 32, 51, 0.4);
  font-size: 0.72rem;
  font-weight: 600;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
  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: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  transition: border-color 0.24s ease, background 0.24s ease;
}

.language-current:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.14);
}

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

.language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 194px;
  padding: 8px 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: 500;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

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

.language-dropdown button:hover {
  color: var(--teal);
  background: rgba(47, 133, 90, 0.08);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, #e7c15e, var(--gold));
  box-shadow: 0 10px 24px rgba(214, 158, 46, 0.35);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(214, 158, 46, 0.45);
  filter: brightness(1.05);
}

/* 抽屉内 CTA（仅移动端显示） */
.nav-cta {
  display: none;
}

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

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 26px;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* 移动菜单遮罩 */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9;
  background: rgba(8, 20, 36, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0s 0.24s;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.24s ease;
}

.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;
}

.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: linear-gradient(168deg, #d9e9f2 0%, #eef5f3 55%, #e6efe8 100%);
  transform: translateX(-50%);
}

.why-reasons-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  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%);
}

/* 完整照片图框：img 按自身比例完整展示，任何宽度不裁切、无留白 */
.why-photo-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto clamp(40px, 4vw, 56px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 30px 60px rgba(16, 32, 51, 0.18), 0 6px 18px rgba(16, 32, 51, 0.08);
}

.why-photo-frame .why-photo {
  display: block;
  width: 100%;
  height: auto;
}

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

.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,
.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,
.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,
.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;
}

.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;
  background: var(--surface);
}

.services-section .services-head {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}

.services-section .section-title {
  max-width: min(100%, 980px);
  margin: 16px 0 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;
}

.services-intro {
  max-width: 660px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.15vw, 1.06rem);
  line-height: 1.6;
  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));
}

.service-index {
  list-style: none;
  margin: 0 0 56px;
  padding: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  border-bottom: 1px solid var(--line);
}

.service-row-link {
  display: grid;
  width: 100%;
  grid-template-columns: clamp(150px, 16vw, 220px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(18px, 2.4vw, 28px) clamp(6px, 1.5vw, 18px);
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.28s ease;
}

.service-row-link:hover {
  background: var(--surface-alt);
}

/* 偶数行图文互换，形成错落节奏 */
.service-row:nth-child(even) .service-row-link {
  grid-template-columns: minmax(0, 1fr) clamp(150px, 16vw, 220px) auto;
}

.service-row:nth-child(even) .service-row-main {
  order: 1;
}

.service-row:nth-child(even) .service-row-photo {
  order: 2;
}

.service-row:nth-child(even) .service-row-cta {
  order: 3;
}

.service-row-photo {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 30px rgba(16, 32, 51, 0.12);
}

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

.service-row-link:hover .service-row-photo img {
  transform: scale(1.05);
}

.service-row-no {
  color: rgba(185, 148, 67, 0.9);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
}

.service-row-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.service-row-name {
  color: var(--ink);
  font-size: clamp(1.18rem, 1.9vw, 1.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: color 0.28s ease;
}

.service-row-link:hover .service-row-name {
  color: var(--teal-dark);
}

.service-copy {
  max-width: 46em;
  color: var(--ink-soft);
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  line-height: 1.55;
}

.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-row-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 720;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.service-row-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row-link:hover .service-row-arrow {
  transform: translateX(4px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-alt);
  overflow: hidden;
}

.trust-strip-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 24px 28px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.3;
}

.trust-strip-item + .trust-strip-item {
  border-left: 1px solid var(--line);
}

.trust-strip-sub {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 480;
  line-height: 1.4;
}

.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 .service-index,
body.is-rtl-text .service-row-link,
body.is-rtl-text .trust-strip,
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 .treatment-card,
body.reveal-ready .story-card,
body.reveal-ready .service-row,
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 .service-row {
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

body.reveal-ready .service-row:nth-child(1) { transition-delay: 0.03s; }
body.reveal-ready .service-row:nth-child(2) { transition-delay: 0.07s; }
body.reveal-ready .service-row:nth-child(3) { transition-delay: 0.11s; }
body.reveal-ready .service-row:nth-child(4) { transition-delay: 0.15s; }
body.reveal-ready .service-row:nth-child(5) { transition-delay: 0.19s; }
body.reveal-ready .service-row:nth-child(6) { transition-delay: 0.23s; }

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 .treatment-card.is-visible,
body.reveal-ready .story-card.is-visible,
body.reveal-ready .service-row.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);
}

.footer-official-link {
  display: inline-block;
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-official-link:hover,
.footer-official-link:focus-visible {
  color: var(--white);
}

.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;
}

.legal-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.legal-breadcrumb a {
  color: var(--navy);
  text-decoration: none;
}

.legal-breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: var(--muted);
}

.brand-faq h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 1rem;
}

.brand-faq p {
  margin-top: 0;
}

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

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

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

  .menu-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    z-index: 12;
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(var(--navy-rgb) / 0.99), rgba(16, 33, 59, 0.99));
    box-shadow: 0 30px 70px rgba(8, 20, 36, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s 0.24s;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s;
  }

  .site-nav > a,
  .site-nav > .nav-dropdown > .nav-trigger {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .site-nav > a,
  .site-nav > .nav-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav > a:last-child,
  .site-nav > .nav-dropdown:last-child {
    border-bottom: 0;
  }

  .site-nav > a.is-active,
  .site-nav > .nav-dropdown > .nav-trigger.is-active {
    color: var(--gold);
  }

  .site-nav > a::after,
  .site-nav > .nav-dropdown > .nav-trigger::after,
  .site-nav .nav-caret {
    display: none;
  }

  .site-nav > a:hover,
  .site-nav > .nav-dropdown > .nav-trigger:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
  }

  .site-nav .nav-dropdown {
    display: grid;
    gap: 0;
  }

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

  .site-nav .nav-dropdown-menu::before,
  .site-nav .nav-dropdown-menu::after {
    display: none;
  }

  .site-nav .nav-dropdown-menu a {
    min-height: 40px;
    padding: 6px 10px;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    white-space: normal;
  }

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

  .site-nav .nav-off-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    color: var(--gold);
    background: rgba(214, 158, 46, 0.16);
  }

  .site-nav .nav-off-icon svg {
    width: 14px;
    height: 14px;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin: 10px 4px 4px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(214, 158, 46, 0.3);
  }

  .header-actions {
    justify-self: end;
    gap: 10px;
    margin: 0;
  }

  .language-current {
    max-width: 138px;
    min-height: 36px;
    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;
  }
}

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

  .feature-grid,
  .impact-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-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip-item:nth-child(3) {
    border-left: 0;
  }

  .trust-strip-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .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) {
  .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,
  .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;
  }

  .service-index {
    margin-bottom: 40px;
  }

  .service-row-link {
    grid-template-columns: 92px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 16px 2px;
  }

  .service-row:nth-child(even) .service-row-link {
    grid-template-columns: 92px minmax(0, 1fr) auto;
  }

  .service-row:nth-child(even) .service-row-main {
    order: 0;
  }

  .service-row:nth-child(even) .service-row-photo {
    order: 0;
  }

  .service-row:nth-child(even) .service-row-cta {
    order: 0;
  }

  .service-row-photo {
    border-radius: 10px;
  }

  .service-row-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .service-row-cta {
    gap: 0;
    font-size: 0;
  }

  .service-row-cta > span:first-child {
    display: none;
  }

  .service-row-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.92rem;
  }

  .trust-strip-item {
    padding: 16px 14px;
  }

  .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-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) {
  .container {
    width: min(100% - 28px, 720px);
  }

  .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-strip {
    padding: 10px;
  }

  .trust-strip-item {
    font-size: 0.82rem;
  }

  .trust-strip-sub {
    font-size: 0.72rem;
  }

  .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-photo-frame {
    width: 100%;
    max-width: 460px;
    border-radius: 14px;
    margin-bottom: 36px;
  }

  .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;
  }

  .footer-official-link {
    display: block;
    margin: 10px 0 0;
  }

  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-strip-item {
    padding: 14px 12px;
  }

  .trust-strip-sub {
    font-size: 0.7rem;
  }

  .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);
  }

  .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;
  }
}

/* ===== Curated packages strip (2026-09-12 doc module 01) ===== */
.packages-section {
  background: var(--surface-alt);
}

.packages-lead {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
  color: var(--ink-soft);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 22px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.package-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.package-card h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.35;
  color: var(--navy);
}

.package-card p {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--ink-soft);
}

.package-link {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-decoration: none;
  cursor: pointer;
}

.package-link:hover {
  text-decoration: underline;
}

/* 正文里的行内按钮链接（同意文案中的隐私声明等，页内打开法律弹窗） */
.inline-link {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--teal-dark);
  text-decoration: underline;
  cursor: pointer;
}

/* ===== Global floating CTA (doc ops ch.4) ===== */
.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 890;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #22c15e;
  color: #fff;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.22);
  transition: transform 0.2s ease;
}

.floating-cta-wa:hover {
  transform: translateY(-2px);
}

.floating-cta-wa svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.floating-cta-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.22);
  transition: transform 0.2s ease;
}

.floating-cta-book:hover {
  transform: translateY(-2px);
}

/* ===== Footer social row (doc ops ch.4) ===== */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 991px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .packages-lead {
    margin-bottom: 30px;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .floating-cta-wa {
    width: 42px;
    height: 42px;
  }

  .floating-cta-book {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}
