/* ==========================================================================
   Waikong Health 维港健康 — Design System
   Brand lineage: 原 waikong.com.hk 主色 #3EA470 (医疗绿) + #595757 (中性灰)
   Upgraded to: deep emerald + champagne gold, light-first, RTL-ready.
   ========================================================================== */

/* ---------------------------------------------------------------- 1. TOKENS */
:root {
  /* Brand — emerald, extended from the original #3EA470 */
  --brand-950: #041C17;
  --brand-900: #072A22;
  --brand-800: #0E4234;
  --brand-700: #14573F;
  --brand-600: #1C6E52;
  --brand-500: #2E9E6B;
  --brand-400: #3EA470;   /* original brand colour */
  --brand-300: #6FC49A;
  --brand-200: #A8DEC4;
  --brand-100: #DCF2E8;
  --brand-50:  #F2F9F5;

  /* Accent — champagne gold */
  --gold-700: #8A6D2F;
  --gold-600: #A8873F;
  --gold-500: #C9A961;
  --gold-400: #D9BE85;
  --gold-100: #F6EFDF;

  /* Neutrals — cool green-tinted greys */
  --ink-900: #0C1A16;
  --ink-800: #16261F;
  --ink-700: #2B3E37;
  --ink-600: #3E524A;
  --ink-500: #55675F;
  --ink-400: #7A8A83;
  --ink-300: #A2AFA9;

  --line:      #E2EBE7;
  --line-soft: #EFF5F2;
  --bg:        #FFFFFF;
  --bg-soft:   #F6FAF8;

  /* Typography */
  --font-sans: "Inter", "Segoe UI Variable Display", "Segoe UI", system-ui,
               -apple-system, "PingFang SC", "Hiragino Sans GB",
               "Microsoft YaHei", "Noto Sans SC", "Noto Sans Arabic",
               "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", "Segoe UI Variable Display", "Segoe UI", system-ui,
               -apple-system, "PingFang SC", "Microsoft YaHei",
               "Noto Sans SC", "Noto Sans Arabic", sans-serif;

  /* Fluid type scale */
  --fs-display: clamp(2.25rem, 1.35rem + 3.6vw, 4.1rem);
  --fs-h1:      clamp(1.95rem, 1.3rem + 2.4vw, 3.1rem);
  --fs-h2:      clamp(1.6rem, 1.15rem + 1.7vw, 2.35rem);
  --fs-h3:      clamp(1.18rem, 1.02rem + 0.6vw, 1.45rem);
  --fs-lead:    clamp(1.03rem, 0.97rem + 0.32vw, 1.2rem);
  --fs-body:    1rem;
  --fs-sm:      0.9375rem;
  --fs-xs:      0.8125rem;

  /* Space */
  --sp-1: 0.25rem;  --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 2.75rem;  --sp-8: 3.5rem;
  --sp-9: 4.5rem;

  /* Radii */
  --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 26px; --r-full: 999px;

  /* Shadows */
  --sh-md: 0 4px 10px -2px rgba(12, 26, 22, .07), 0 2px 6px -2px rgba(12, 26, 22, .05);
  --sh-lg: 0 18px 40px -12px rgba(12, 26, 22, .14), 0 6px 16px -8px rgba(12, 26, 22, .08);
  --sh-xl: 0 34px 70px -20px rgba(12, 26, 22, .22), 0 12px 28px -14px rgba(12, 26, 22, .12);

  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------------------------------------------------------------- 2. RESET */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.68;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--brand-300);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--brand-200); color: var(--ink-900); }

/* ---------------------------------------------------------------- 3. TYPE */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink-900);
  margin: 0;
  line-height: 1.16;
  letter-spacing: -0.022em;
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.014em; line-height: 1.3; }
h4 { font-size: 1.0625rem; letter-spacing: -0.01em; line-height: 1.35; }

p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

strong, b { font-weight: 650; color: var(--ink-800); }

/* ---------------------------------------------------------------- 4. LAYOUT */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container--narrow { max-width: 880px; }

.section { padding-block: clamp(3.5rem, 2rem + 6vw, 7rem); }
.section--tight { padding-block: clamp(2.75rem, 1.6rem + 4vw, 4.5rem); }
.section--soft { background: var(--bg-soft); }

.stack > * + * { margin-top: var(--sp-5); }
.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ---------------------------------------------------------- 5. HEADINGS */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
  flex: none;
}

.section-head { max-width: 780px; margin-bottom: var(--sp-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.7;
  color: var(--ink-500);
  max-width: 68ch;
}

.text-muted { color: var(--ink-400); }

/* ---------------------------------------------------------------- 6. BTNS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 0.9rem 1.6rem;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 620;
  letter-spacing: -0.005em;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background-color .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(28, 110, 82, .55);
}
.btn--primary:hover { background: var(--brand-700); box-shadow: 0 14px 28px -10px rgba(28, 110, 82, .6); }

.btn--gold {
  background: var(--gold-500);
  color: var(--brand-950);
  box-shadow: 0 8px 20px -8px rgba(201, 169, 97, .6);
}
.btn--gold:hover { background: var(--gold-400); }

.btn--ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--ink-800);
}
.btn--ghost:hover { border-color: var(--brand-300); color: var(--brand-700); }

.btn--onDark {
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}
.btn--onDark:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .5); }

.btn--wa { background: #25D366; color: #06301A; box-shadow: 0 8px 20px -8px rgba(37, 211, 102, .6); }
.btn--wa:hover { background: #1FBF5C; }

.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.6rem 1.1rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }

/* ---------------------------------------------------------------- 7. HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background-color .3s;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px -8px rgba(12, 26, 22, .1);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  min-height: 76px;
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 0.7rem; flex: none; }
.logo__img { height: 46px; width: auto; flex: none; }
.footer .logo__img { height: 42px; }

/* Nav */
.nav { margin-inline-start: auto; }
.nav__list { display: flex; align-items: center; gap: var(--sp-1); }
.nav__link {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 550;
  color: var(--ink-600);
  transition: color .2s, background-color .2s;
  position: relative;
}
.nav__link:hover { color: var(--brand-700); background: var(--brand-50); }
.nav__link.is-active { color: var(--brand-700); font-weight: 650; }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  inset-inline: 0.85rem;
  bottom: 0.18rem;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.header__actions { display: flex; align-items: center; gap: var(--sp-3); flex: none; }

/* Language switcher */
.lang { position: relative; }
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 620;
  color: var(--ink-600);
  background: #fff;
  transition: border-color .2s, color .2s;
}
.lang__btn:hover { border-color: var(--brand-300); color: var(--brand-700); }
.lang__btn svg { width: 14px; height: 14px; }
.lang__menu {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 0.5rem);
  min-width: 168px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 0.35rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 20;
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  color: var(--ink-600);
  transition: background-color .18s, color .18s;
  width: 100%;
  text-align: start;
}
.lang__item:hover { background: var(--brand-50); color: var(--brand-700); }
.lang__item.is-current { background: var(--brand-50); color: var(--brand-700); font-weight: 650; }
.lang__item span.flag { font-size: 1rem; line-height: 1; }

/* Burger */
.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  background: #fff;
}
.burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink-700);
  border-radius: 2px;
  position: relative;
  transition: background-color .25s;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; inset-inline: 0;
  height: 2px; background: var(--ink-700); border-radius: 2px;
  transition: transform .28s var(--ease), top .28s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.nav-open .burger span { background: transparent; }
.nav-open .burger span::before { top: 0; transform: rotate(45deg); }
.nav-open .burger span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #fff;
  padding: 96px var(--sp-5) var(--sp-8);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav__list { display: flex; flex-direction: column; gap: 0.15rem; margin-bottom: var(--sp-6); }
.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.25rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-800);
}
.mobile-nav__link.is-active { color: var(--brand-700); }
.mobile-nav__link svg { width: 18px; height: 18px; color: var(--ink-300); }

/* ---------------------------------------------------------------- 8. HERO */
.hero {
  position: relative;
  background: var(--brand-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(62, 164, 112, .34) 0%, transparent 55%),
    radial-gradient(90% 70% at 5% 95%, rgba(201, 169, 97, .2) 0%, transparent 58%),
    linear-gradient(168deg, #072A22 0%, #0A352B 42%, #041C17 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(115% 85% at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(115% 85% at 50% 0%, #000 20%, transparent 78%);
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
  padding-block: clamp(4rem, 2rem + 8vw, 7.5rem);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem 0.4rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-200);
  margin-bottom: var(--sp-5);
}
.hero__eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, .22);
  flex: none;
}
.hero__title {
  font-size: var(--fs-display);
  font-weight: 780;
  line-height: 1.06;
  letter-spacing: -0.032em;
  color: #fff;
  margin-bottom: var(--sp-5);
}
.hero__title em {
  font-style: normal;
  display: block;
  background: linear-gradient(96deg, var(--brand-300) 0%, var(--gold-400) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--brand-300);
}
.hero__lead {
  font-size: var(--fs-lead);
  line-height: 1.72;
  color: rgba(226, 245, 237, .82);
  max-width: 60ch;
  margin-bottom: var(--sp-6);
}
.hero__note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--brand-200);
}
.hero__note svg { width: 16px; height: 16px; color: var(--gold-500); flex: none; }

/* Hero visual card */
.hero__visual { position: relative; }
.hero__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1px solid rgba(255, 255, 255, .12);
  aspect-ratio: 4 / 5;
  background: var(--brand-800);
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; }

.hero__badge {
  position: absolute;
  inset-inline-start: -1.25rem;
  bottom: 2.25rem;
  background: rgba(255, 255, 255, .97);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--sh-xl);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 17rem;
  backdrop-filter: blur(8px);
}
.hero__badge-icon {
  width: 42px; height: 42px; flex: none;
  border-radius: var(--r-sm);
  background: var(--brand-50);
  display: grid; place-items: center;
  color: var(--brand-600);
}
.hero__badge-icon svg { width: 22px; height: 22px; }
.hero__badge strong { display: block; font-size: 0.9375rem; color: var(--ink-900); line-height: 1.25; }
.hero__badge span { font-size: var(--fs-xs); color: var(--ink-400); }

/* Hero stats strip */
.hero__stats {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: var(--sp-6);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-5);
}
.hero__stat-v {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.1rem);
  font-weight: 750;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero__stat-v span { color: var(--gold-500); }
.hero__stat-l { font-size: var(--fs-xs); color: rgba(226, 245, 237, .62); line-height: 1.45; }

/* ---------------------------------------------------------------- 9. CARDS */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--brand-200);
}

.card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--brand-50);
  color: var(--brand-600);
  display: grid; place-items: center;
  margin-bottom: var(--sp-4);
  flex: none;
}
.card__icon svg { width: 24px; height: 24px; }
.card--gold .card__icon { background: var(--gold-100); color: var(--gold-700); }

.card__stat {
  display: inline-block;
  margin-top: var(--sp-4);
  padding: 0.28rem 0.7rem;
  border-radius: var(--r-full);
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: var(--fs-xs);
  font-weight: 650;
  letter-spacing: .02em;
}
.card h3 { margin-bottom: var(--sp-3); }
.card p { color: var(--ink-500); font-size: var(--fs-sm); margin-bottom: 0; }

/* Feature list */
.tick-list { display: grid; gap: 0.6rem; }
.tick-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--ink-600);
  line-height: 1.6;
}
.tick-list svg {
  width: 17px; height: 17px;
  color: var(--brand-500);
  flex: none;
  margin-top: 0.28rem;
}
.tick-list--gold svg { color: var(--gold-600); }

/* ---------------------------------------------------------------- 10. TRUST */
.trust { background: var(--bg-soft); border-block: 1px solid var(--line); }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.trust__item {
  background: #fff;
  padding: var(--sp-5);
}
.trust__item h4 { margin-bottom: 0.35rem; }
.trust__item p { font-size: var(--fs-xs); color: var(--ink-400); margin: 0; line-height: 1.55; }
.trust__item svg { width: 22px; height: 22px; color: var(--brand-500); margin-bottom: 0.7rem; }

/* ---------------------------------------------------------------- 11. HOSPITALS */
.hosp { display: grid; gap: var(--sp-6); }
.hosp-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.hosp-card:hover { box-shadow: var(--sh-lg); border-color: var(--brand-200); }
.hosp-card:nth-child(even) .hosp-card__media { order: 2; }

.hosp-card__media { position: relative; min-height: 320px; background: var(--brand-800); }
.hosp-card__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hosp-card__city {
  position: absolute;
  top: var(--sp-4); inset-inline-start: var(--sp-4);
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-full);
  background: rgba(4, 28, 23, .72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 620;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hosp-card__city svg { width: 13px; height: 13px; color: var(--gold-400); }

.hosp-card__body { padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.hosp-card__name { margin-bottom: 0.35rem; }
.hosp-card__local {
  font-size: var(--fs-xs);
  color: var(--ink-400);
  letter-spacing: .02em;
  margin-bottom: var(--sp-4);
  display: block;
}
.hosp-card__tagline {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--brand-600);
  margin-bottom: var(--sp-4);
}
.hosp-card__body p { font-size: var(--fs-sm); color: var(--ink-500); }
.hosp-card__best {
  margin-top: var(--sp-5);
  padding: var(--sp-4);
  background: var(--brand-50);
  border-radius: var(--r-md);
  border-inline-start: 3px solid var(--brand-400);
  font-size: var(--fs-sm);
  color: var(--ink-600);
}
.hosp-card__best strong { display: block; margin-bottom: 0.25rem; color: var(--brand-700); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .09em; }
:root[dir="rtl"] .hosp-card__best strong { text-transform: none; letter-spacing: 0; }

/* ---------------------------------------------------------------- 12. TABLE */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
table.data {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: var(--fs-sm);
}
table.data thead th {
  background: var(--brand-900);
  color: #fff;
  font-weight: 640;
  text-align: start;
  padding: 1rem 1.15rem;
  font-size: var(--fs-xs);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
:root[dir="rtl"] table.data thead th { text-transform: none; letter-spacing: 0; }
table.data tbody td {
  padding: 1rem 1.15rem;
  border-top: 1px solid var(--line-soft);
  vertical-align: top;
  color: var(--ink-600);
  line-height: 1.6;
}
table.data tbody tr:hover { background: var(--brand-50); }
table.data tbody td:first-child { font-weight: 620; color: var(--ink-900); }
table.data .num { font-variant-numeric: tabular-nums; white-space: nowrap; }
table.data .ratio {
  display: inline-block;
  padding: 0.24rem 0.6rem;
  border-radius: var(--r-full);
  background: var(--brand-50);
  color: var(--brand-700);
  font-weight: 680;
  font-size: var(--fs-xs);
  white-space: nowrap;
}

/* ---------------------------------------------------------------- 13. STEPS */
.steps { position: relative; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: var(--sp-5);
  padding-bottom: var(--sp-7);
  position: relative;
}
.step:last-child { padding-bottom: 0; }
.step__marker { position: relative; display: flex; flex-direction: column; align-items: center; }
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 720;
  font-size: 1.05rem;
  color: var(--ink-300);
  flex: none;
  transition: all .35s var(--ease);
  z-index: 1;
}
.step:hover .step__num { border-color: var(--brand-400); color: var(--brand-600); background: var(--brand-50); }
.step__line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--line), var(--line-soft));
  margin-top: 0.5rem;
}
.step:last-child .step__line { display: none; }
.step__body { padding-top: 0.6rem; }
.step__time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  font-weight: 620;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 0.24rem 0.7rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}
.step__time svg { width: 13px; height: 13px; }
.step__title { margin-bottom: 0.35rem; }
.step__sub { font-size: var(--fs-sm); font-weight: 600; color: var(--ink-400); margin-bottom: var(--sp-4); }
.step__body p { font-size: var(--fs-sm); }
.step__points {
  margin-top: var(--sp-5);
  padding: var(--sp-5);
  background: var(--bg-soft);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
}

/* Compact step grid (homepage) */
.step-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--sp-4); }
.step-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.step-mini::before {
  content: "";
  position: absolute;
  inset-inline-start: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--brand-400);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s var(--ease);
}
.step-mini:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--brand-200); }
.step-mini:hover::before { transform: scaleY(1); }
.step-mini__n {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 720;
  letter-spacing: .1em;
  color: var(--gold-600);
  margin-bottom: 0.7rem;
}
.step-mini h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.step-mini p { font-size: var(--fs-xs); color: var(--ink-400); margin: 0; line-height: 1.6; }

/* ---------------------------------------------------------------- 14. SPECIALTIES */
.spec-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--sp-4); }
.spec {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.spec:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--brand-200); }
.spec__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: linear-gradient(140deg, var(--brand-50), var(--brand-100));
  color: var(--brand-600);
  display: grid; place-items: center;
  margin-bottom: var(--sp-4);
}
.spec__icon svg { width: 22px; height: 22px; }
.spec h4 { margin-bottom: 0.4rem; }
.spec p { font-size: var(--fs-xs); color: var(--ink-400); margin: 0; line-height: 1.6; }

/* Specialty detail block */
.spec-block {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  background: #fff;
  transition: border-color .3s, box-shadow .3s;
}
.spec-block:hover { border-color: var(--brand-200); box-shadow: var(--sh-md); }
.spec-block__head { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-4); }
.spec-block__head .spec__icon { margin-bottom: 0; }
.spec-block h3 { margin: 0; }
.spec-block__lead { font-size: var(--fs-sm); font-weight: 600; color: var(--brand-600); margin-bottom: var(--sp-4); }
.spec-block p { font-size: var(--fs-sm); color: var(--ink-500); }

.caveat {
  margin-top: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background: var(--gold-100);
  border-inline-start: 3px solid var(--gold-500);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--gold-700);
  display: flex;
  gap: 0.7rem;
}
.caveat svg { width: 18px; height: 18px; flex: none; margin-top: 0.2rem; }

/* ---------------------------------------------------------------- 15. FAQ */
.faq { display: grid; gap: var(--sp-3); }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq__item.is-open { border-color: var(--brand-200); box-shadow: var(--sh-md); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 1.15rem 1.35rem;
  text-align: start;
  font-weight: 620;
  font-size: var(--fs-sm);
  color: var(--ink-800);
  line-height: 1.5;
}
.faq__q:hover { color: var(--brand-700); }
.faq__icon {
  width: 26px; height: 26px; flex: none;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  transition: background-color .3s, transform .3s var(--ease);
}
.faq__icon svg { width: 14px; height: 14px; color: var(--ink-500); transition: color .3s; }
.faq__item.is-open .faq__icon { background: var(--brand-500); transform: rotate(180deg); }
.faq__item.is-open .faq__icon svg { color: #fff; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq__a-inner {
  padding: 0 1.35rem 1.3rem;
  font-size: var(--fs-sm);
  color: var(--ink-500);
  line-height: 1.72;
}

/* ---------------------------------------------------------------- 16. FORM */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 1rem + 2.5vw, 2.75rem);
  box-shadow: var(--sh-lg);
}
.field { margin-bottom: var(--sp-4); }
.field__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 650;
  color: var(--ink-700);
  margin-bottom: 0.45rem;
  letter-spacing: .01em;
}
.field__label .req { color: var(--brand-500); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-soft);
  font-size: var(--fs-sm);
  color: var(--ink-800);
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.field textarea { min-height: 132px; resize: vertical; line-height: 1.65; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-300); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-400);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(62, 164, 112, .12);
}
.field.has-error input, .field.has-error textarea, .field.has-error select {
  border-color: #D9534F;
  background: #FEF7F6;
}
.field__error {
  display: none;
  font-size: var(--fs-xs);
  color: #C0392B;
  margin-top: 0.35rem;
  font-weight: 550;
}
.field.has-error .field__error { display: block; }

.field--row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-4); }

.check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: var(--fs-xs);
  color: var(--ink-500);
  line-height: 1.6;
}
.check input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: var(--bg-soft);
  flex: none;
  margin-top: 0.1rem;
  position: relative;
  transition: background-color .2s, border-color .2s;
  cursor: pointer;
}
.check input:checked { background: var(--brand-500); border-color: var(--brand-500); }
.check input:checked::after {
  content: "";
  position: absolute;
  inset-inline-start: 6px; top: 2px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check.has-error input { border-color: #D9534F; }

.form-note {
  font-size: var(--fs-xs);
  color: var(--ink-400);
  margin-top: var(--sp-4);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  line-height: 1.6;
}
.form-note svg { width: 15px; height: 15px; flex: none; margin-top: 0.15rem; color: var(--brand-500); }

.form-alert {
  display: none;
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-4);
}
.form-alert.is-visible { display: block; }
.form-alert--ok { background: var(--brand-50); color: var(--brand-700); border: 1px solid var(--brand-100); }
.form-alert--err { background: #FEF7F6; color: #C0392B; border: 1px solid #F5D4D1; }

/* Contact methods */
.contact-methods { display: grid; gap: var(--sp-4); }
.contact-method {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.contact-method:hover { border-color: var(--brand-200); box-shadow: var(--sh-md); transform: translateY(-2px); }
.contact-method__icon {
  width: 46px; height: 46px; flex: none;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  background: var(--brand-50);
  color: var(--brand-600);
}
.contact-method__icon svg { width: 22px; height: 22px; }
.contact-method__icon--wa { background: #E7F9EE; color: #128C4A; }
.contact-method__label { font-size: var(--fs-xs); color: var(--ink-400); margin-bottom: 0.1rem; }
.contact-method__value { font-weight: 650; color: var(--ink-900); font-size: var(--fs-sm); direction: ltr; }

/* ---------------------------------------------------------------- 17. CTA */
.cta-band {
  position: relative;
  background: var(--brand-900);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(2rem, 1.3rem + 3.5vw, 4rem);
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 130% at 92% 6%, rgba(62, 164, 112, .34) 0%, transparent 56%),
    radial-gradient(70% 100% at 3% 96%, rgba(201, 169, 97, .2) 0%, transparent 58%);
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1; opacity: .4;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(100% 100% at 70% 20%, #000, transparent 76%);
  -webkit-mask-image: radial-gradient(100% 100% at 70% 20%, #000, transparent 76%);
}
.cta-band__inner { max-width: 720px; }
.cta-band h2 { color: #fff; margin-bottom: var(--sp-4); }
.cta-band .lead { color: rgba(226, 245, 237, .8); margin-bottom: var(--sp-6); }
.cta-band__note { font-size: var(--fs-xs); color: var(--brand-200); margin-top: var(--sp-4); }

/* ---------------------------------------------------------------- 18. ABOUT */
.about-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(2rem, 1rem + 3vw, 4rem); align-items: start; }
.about-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-4); }
.about-fact {
  padding: var(--sp-5);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.about-fact__v {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 750;
  color: var(--brand-600);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.about-fact__k { font-size: var(--fs-xs); color: var(--ink-400); line-height: 1.5; }

/* ---------------------------------------------------------------- 19. STORIES */
.story-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-5); }
.story {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.story:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.story__quote {
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: var(--ink-700);
  flex: 1;
  margin-bottom: var(--sp-5);
}
.story__quote::before {
  content: "“";
  display: block;
  font-family: Georgia, serif;
  font-size: 2.75rem;
  line-height: 0.7;
  color: var(--brand-200);
  margin-bottom: 0.5rem;
}
.story__meta { display: flex; align-items: center; gap: 0.75rem; padding-top: var(--sp-4); border-top: 1px solid var(--line-soft); }
.story__avatar {
  width: 38px; height: 38px; flex: none;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand-500), var(--brand-700));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.8125rem;
}
.story__who { line-height: 1.35; }
.story__who strong { display: block; font-size: var(--fs-xs); color: var(--ink-800); }
.story__who span { font-size: var(--fs-xs); color: var(--ink-400); }
.story__tag {
  position: absolute;
  top: var(--sp-5); inset-inline-end: var(--sp-5);
  font-size: 0.6875rem;
  font-weight: 650;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 0.22rem 0.6rem;
  border-radius: var(--r-full);
}

/* ---------------------------------------------------------------- 20. FOOTER */
.footer { background: var(--brand-950); color: rgba(226, 245, 237, .62); padding-block: var(--sp-9) var(--sp-6); }
.footer__top { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: var(--sp-7); padding-bottom: var(--sp-7); border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer__blurb { font-size: var(--fs-sm); line-height: 1.7; margin-top: var(--sp-4); max-width: 40ch; }
.footer__title {
  font-size: var(--fs-xs);
  font-weight: 680;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--sp-4);
}
:root[dir="rtl"] .footer__title { letter-spacing: 0; text-transform: none; }
.footer__links { display: grid; gap: 0.6rem; }
.footer__links a { font-size: var(--fs-sm); color: rgba(226, 245, 237, .62); transition: color .2s; }
.footer__links a:hover { color: var(--brand-300); }
.footer__contact-item { font-size: var(--fs-sm); margin-bottom: 0.7rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.footer__contact-item svg { width: 16px; height: 16px; color: var(--brand-400); flex: none; margin-top: 0.25rem; }
.footer__contact-item a { direction: ltr; }
.footer__contact-item a:hover { color: var(--brand-300); }

.footer__legal {
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: rgba(255, 255, 255, .035);
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, .07);
}
.footer__legal-title {
  font-size: var(--fs-xs);
  font-weight: 680;
  color: var(--gold-500);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.footer__legal-title svg { width: 14px; height: 14px; }
.footer__legal p { font-size: 0.75rem; line-height: 1.7; color: rgba(226, 245, 237, .45); margin: 0; }

.footer__bottom {
  margin-top: var(--sp-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(226, 245, 237, .42);
}
.footer__bottom-links { display: flex; gap: var(--sp-5); }
.footer__bottom-links a:hover { color: var(--brand-300); }

/* ---------------------------------------------------------------- 21. FLOAT WA */
.wa-float {
  position: fixed;
  inset-inline-end: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem 0.85rem 1rem;
  background: #25D366;
  color: #06301A;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 680;
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, .55), 0 4px 12px rgba(0, 0, 0, .12);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 40px -10px rgba(37, 211, 102, .6); }
.wa-float svg { width: 24px; height: 24px; flex: none; }

/* ---------------------------------------------------------------- 22. PAGE HERO */
.page-hero {
  background: var(--brand-900);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(3rem, 2rem + 5vw, 5.5rem) clamp(3rem, 2rem + 5vw, 5rem);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(100% 100% at 88% 0%, rgba(62, 164, 112, .3) 0%, transparent 55%),
    radial-gradient(80% 90% at 6% 100%, rgba(201, 169, 97, .17) 0%, transparent 56%),
    linear-gradient(170deg, #072A22, #041C17);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1; opacity: .45;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(110% 90% at 40% 0%, #000 15%, transparent 76%);
  -webkit-mask-image: radial-gradient(110% 90% at 40% 0%, #000 15%, transparent 76%);
}
.page-hero h1 { color: #fff; max-width: 20ch; margin-bottom: var(--sp-5); }
.page-hero .lead { color: rgba(226, 245, 237, .8); }
.page-hero .eyebrow { color: var(--brand-300); }

.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: var(--fs-xs); color: rgba(226, 245, 237, .5); margin-bottom: var(--sp-5); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--brand-300); }
.breadcrumb svg { width: 12px; height: 12px; opacity: .6; }
:root[dir="rtl"] .breadcrumb svg { transform: scaleX(-1); }

/* ---------------------------------------------------------------- 23. NOTE BOX */
.notice {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: var(--fs-sm);
  color: var(--ink-500);
  line-height: 1.7;
}
.notice svg { width: 20px; height: 20px; flex: none; color: var(--brand-500); margin-top: 0.15rem; }
.notice strong { color: var(--ink-800); }
.notice--gold { background: var(--gold-100); border-color: #EADFC2; }
.notice--gold svg { color: var(--gold-600); }
.notice--gold, .notice--gold strong { color: var(--gold-700); }

/* ---------------------------------------------------------------- 24. SPLIT */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 1rem + 3vw, 4rem); align-items: start; }
.split--media { align-items: center; }
.split--reverse .media-frame { order: 2; }
.media-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 5 / 4;
  background: var(--brand-800);
}
.split--media .media-frame { aspect-ratio: 4 / 5; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.split--media > div:last-child { min-width: 0; }

/* ----------------------------------------------------------- 24b. SELECT */
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355675F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9.5 12 15.5 18 9.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
  padding-inline-end: 2.6rem;
  cursor: pointer;
}
:root[dir="rtl"] .field select { background-position: left 1rem center; }
.field.has-error input[type="checkbox"] { border-color: #D9534F; background: #FEF7F6; }

/* ---------------------------------------------------------------- 25. REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------------------------------------------------------------- 26. RESPONSIVE */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .header__actions .btn--primary { display: none; }
  .trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero__badge { inset-inline-start: 0.75rem; }
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: var(--sp-5); }
  .hosp-card { grid-template-columns: 1fr; }
  .hosp-card:nth-child(even) .hosp-card__media { order: 0; }
  .hosp-card__media { min-height: 220px; position: relative; }
  .about-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  :root { --container: 100%; }
  .container { padding-inline: 1.15rem; }
  .trust__grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-6); }
  .step { grid-template-columns: 56px minmax(0, 1fr); gap: var(--sp-4); }
  .step__num { width: 44px; height: 44px; font-size: .9rem; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
  .wa-float { inset-inline-end: 1rem; bottom: 1rem; padding: 0.85rem; }
  .wa-float span { display: none; }
  .hero__badge { display: none; }
  .lang__btn span.lang-label { display: none; }
}

/* ---------------------------------------------------------------- 27. RTL */
:root[dir="rtl"] body { letter-spacing: 0; }
:root[dir="rtl"] h1, :root[dir="rtl"] h2,
:root[dir="rtl"] h3, :root[dir="rtl"] h4 { letter-spacing: 0; }
:root[dir="rtl"] .hero__title { letter-spacing: 0; line-height: 1.22; }
:root[dir="rtl"] .story__quote::before { content: "”"; }
:root[dir="rtl"] .step__num { font-family: var(--font-sans); }
:root[dir="rtl"] .eyebrow { letter-spacing: 0; text-transform: none; }
:root[dir="rtl"] .hero__eyebrow { letter-spacing: 0; text-transform: none; }
:root[dir="rtl"] .step-mini__n { letter-spacing: 0; }
:root[dir="rtl"] .spec-block__head { flex-direction: row-reverse; justify-content: flex-end; }
:root[dir="rtl"] .contact-method { flex-direction: row-reverse; }
:root[dir="rtl"] .footer__contact-item { flex-direction: row-reverse; }
:root[dir="rtl"] .notice, :root[dir="rtl"] .caveat { flex-direction: row-reverse; }
:root[dir="rtl"] .tick-list li { flex-direction: row-reverse; }
:root[dir="rtl"] .form-note { flex-direction: row-reverse; }
:root[dir="rtl"] .check { flex-direction: row-reverse; }

/* ---------------------------------------------------------------- 28. PRINT */
@media print {
  .header, .wa-float, .mobile-nav, .cta-band { display: none !important; }
  body { color: #000; }
  .page-hero, .hero { background: #fff !important; color: #000 !important; }
  .page-hero h1, .hero__title { color: #000 !important; -webkit-text-fill-color: #000 !important; }
  .section { padding-block: 1.5rem; }
}

@media (max-width: 760px) { .logo__img { height: 38px; } .footer .logo__img { height: 36px; } }


/* ---------------------------------------------------------------- 8. NEWS 新闻资讯 */
.news { display: grid; gap: var(--sp-5); }
.news__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.news__item:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: var(--brand-200); }
.news__meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3); font-size: var(--fs-xs); color: var(--ink-400); }
.news__tag {
  display: inline-flex; align-items: center; padding: .18rem .6rem;
  border-radius: var(--r-full); background: var(--brand-50);
  color: var(--brand-700); font-weight: 650; letter-spacing: .04em;
}
.news__title { font-size: var(--fs-h3); margin: var(--sp-4) 0 var(--sp-3); line-height: 1.35; }
.news__title a { color: inherit; text-decoration: none; }
.news__title a:hover { color: var(--brand-600); }
.news__summary { color: var(--ink-600); margin: 0 0 var(--sp-4); }
.news__more, .news__back {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 650; color: var(--brand-600); text-decoration: none;
}
.news__more:hover, .news__back:hover { color: var(--brand-500); }
.news__back { margin-top: var(--sp-5); }
.news__cover { display: block; width: 100%; height: auto; border-radius: var(--r-md); margin: 0 0 var(--sp-5); }
.news__article { max-width: 46rem; }
.news__article-title { font-size: var(--fs-h2); margin: var(--sp-4) 0 var(--sp-5); line-height: 1.28; }
.news__article-body p { color: var(--ink-600); margin: 0 0 var(--sp-4); }
.news__empty {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-3);
  text-align: center; color: var(--ink-500);
  background: var(--bg-soft); border: 1px dashed var(--line);
  border-radius: var(--r-lg); padding: var(--sp-7) var(--sp-6); margin: 0;
}
[dir="rtl"] .news__more svg, [dir="rtl"] .news__back svg { transform: scaleX(-1); }
