:root {
  --green-950: #124c39;
  --green-900: #0d684a;
  --green-800: #147f59;
  --green-700: #20966b;
  --green-600: #39ad7b;
  --green-200: #ccebd9;
  --green-100: #e7f6ed;
  --green-50: #f5fbf6;
  --ink: #16342a;
  --text: #38564b;
  --muted: #687c75;
  --line: #d8e8df;
  --white: #fff;
  --warm: #fffaf2;
  --orange: #b76120;
  --blue: #236d9a;
  --shadow: 0 18px 55px rgba(9, 71, 49, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3.8vw, 3.25rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 0;
}

.title-line,
.copy-line {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  transition: box-shadow 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-color: rgba(7, 88, 61, 0.1);
  box-shadow: 0 8px 30px rgba(7, 67, 47, 0.07);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.brand img,
.footer-brand img {
  border-radius: 14px;
}

.brand span,
.footer-brand div {
  display: grid;
}

.brand strong,
.footer-brand strong {
  color: var(--green-950);
  font-size: 1.18rem;
  line-height: 1.35;
}

.brand small,
.footer-brand span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 12px 0;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--green-700);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border: 1px solid var(--green-800);
  border-radius: 999px;
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 10px 24px rgba(8, 123, 82, 0.2);
  font-weight: 700;
  gap: 9px;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--green-900);
  box-shadow: 0 12px 28px rgba(8, 123, 82, 0.28);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--green-900);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
}

.button-admin {
  border-color: var(--line);
  color: var(--green-900);
  background: var(--white);
  box-shadow: none;
}

.button-admin:hover,
.button-admin:focus-visible {
  border-color: var(--green-800);
  color: var(--white);
}

.button-small {
  min-height: 44px;
  padding: 9px 20px;
  font-size: 0.92rem;
}

.hero {
  overflow: hidden;
  padding: 28px 0 78px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 224, 158, 0.42), transparent 24%),
    radial-gradient(circle at 5% 42%, rgba(190, 235, 209, 0.72), transparent 28%),
    linear-gradient(180deg, var(--green-50) 0%, #fff 82%);
}

.hero-banner {
  overflow: hidden;
  border: 1px solid rgba(7, 88, 61, 0.1);
  border-radius: var(--radius-lg);
  background: #eaf5ef;
  box-shadow: var(--shadow);
}

.hero-banner img {
  width: 100%;
  height: auto;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 56px;
  padding: 58px 36px 34px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green-800);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-description {
  max-width: 810px;
  color: var(--text);
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
  line-height: 1.8;
}

.hero-actions {
  display: grid;
  min-width: 168px;
  gap: 12px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.hero-points li {
  display: grid;
  min-height: 110px;
  grid-template-columns: 44px 1fr;
  align-content: center;
  align-items: center;
  column-gap: 14px;
  gap: 3px;
  padding: 20px 34px;
}

.hero-points .point-icon {
  width: 38px;
  height: 38px;
  grid-row: 1 / 3;
  padding: 8px;
  border-radius: 12px;
  color: var(--green-800);
  background: var(--green-100);
}

.hero-points strong,
.hero-points span {
  grid-column: 2;
}

.hero-points li + li {
  border-left: 1px solid var(--line);
}

.hero-points strong {
  color: var(--green-900);
  font-size: 1.08rem;
}

.hero-points span {
  color: var(--muted);
  font-size: 0.93rem;
}

.section {
  padding: 108px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading-split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 50px;
}

.section-heading-split h2 {
  margin-bottom: 0;
}

.platform-section {
  background: var(--white);
}

.platform-layout {
  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  align-items: center;
  gap: 22px;
}

.platform-feature {
  display: grid;
  overflow: hidden;
  min-height: 250px;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, #fff 20%, var(--green-50));
  box-shadow: 0 14px 36px rgba(9, 71, 49, 0.07);
}

.platform-feature-media {
  overflow: hidden;
  width: 112px;
  margin: 0;
  aspect-ratio: 1;
  border-radius: 18px;
  background: var(--green-100);
}

.platform-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.platform-feature:hover .platform-feature-media img {
  transform: scale(1.025);
}

.platform-feature-copy {
  min-width: 0;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--green-700);
  font-weight: 800;
}

.platform-feature p {
  color: var(--muted);
}

.platform-bridge {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--green-800);
  font-size: 0.86rem;
  font-weight: 800;
}

.platform-bridge i {
  position: relative;
  height: 2px;
  background: var(--green-600);
}

.platform-bridge i::before,
.platform-bridge i::after {
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--green-600);
  content: "";
}

.platform-bridge i::before {
  left: 0;
  border-left: 2px solid var(--green-600);
  transform: rotate(-45deg);
}

.platform-bridge i::after {
  right: 0;
  border-right: 2px solid var(--green-600);
  transform: rotate(45deg);
}

.audience-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 64px;
}

.audience-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 224, 154, 0.16), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(151, 231, 185, 0.28), transparent 30%),
    linear-gradient(145deg, #147a58, #16805d);
  box-shadow: 0 24px 60px rgba(16, 112, 79, 0.13);
}

.audience-stage::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 26px 26px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
  pointer-events: none;
}

.audience-routes {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.audience-route {
  fill: none;
  stroke: rgba(190, 241, 213, 0.46);
  stroke-dasharray: 7 11;
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  opacity: 0.36;
  transition: opacity 220ms ease, stroke 220ms ease, stroke-width 220ms ease;
}

.audience-route[data-is-active="true"] {
  stroke: #c7f2d9;
  stroke-width: 3;
  opacity: 1;
}

.audience-stage.is-visible .audience-route[data-is-active="true"] {
  animation: audience-route-flow 1.4s linear infinite;
}

.audience-signal {
  fill: #c7f2d9;
  filter: drop-shadow(0 0 7px rgba(199, 242, 217, 0.95));
  opacity: 0;
  transition: opacity 220ms ease;
}

.audience-signal[data-is-active="true"] {
  opacity: 1;
}

.audience-platform,
.audience-role {
  z-index: 2;
  display: grid;
  color: var(--white);
}

.audience-platform {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 176px;
  height: 176px;
  place-content: center;
  justify-items: center;
  gap: 3px;
  padding: 22px;
  border: 1px solid rgba(215, 250, 230, 0.55);
  border-radius: 50%;
  background: rgba(20, 128, 88, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2), inset 0 0 30px rgba(199, 242, 217, 0.08);
  text-align: center;
  transform: translate(-50%, -50%);
}

.platform-orbit {
  position: absolute;
  inset: -13px;
  border: 1px solid rgba(199, 242, 217, 0.3);
  border-radius: 50%;
}

.platform-orbit::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c7f2d9;
  box-shadow: 0 0 12px rgba(199, 242, 217, 0.9);
  content: "";
  transform: translateY(-50%);
}

.audience-stage.is-visible .platform-orbit {
  animation: audience-orbit 7s linear infinite;
}

.audience-platform strong {
  font-size: 1.05rem;
}

.audience-platform small,
.audience-role small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.audience-roles {
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-role {
  position: absolute;
  width: 188px;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(8px);
  opacity: 0.5;
  scale: 0.96;
  transition: opacity 220ms ease, scale 220ms ease, border-color 220ms ease, background 220ms ease,
    box-shadow 220ms ease;
}

.audience-role-elder {
  top: 8%;
  left: 5%;
}

.audience-role-family {
  top: 8%;
  right: 5%;
}

.audience-role-provider {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.audience-role[data-is-active="true"] {
  border-color: rgba(199, 242, 217, 0.86);
  background: rgba(199, 242, 217, 0.16);
  box-shadow: 0 0 0 5px rgba(199, 242, 217, 0.07), 0 18px 42px rgba(0, 0, 0, 0.18);
  opacity: 1;
  scale: 1.04;
}

.audience-role strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.45;
}

.audience-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  font-weight: 800;
}

.audience-role .audience-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 0;
}

.audience-icon.brand-mark {
  color: var(--green-950);
  background: #c7f2d9;
}

.audience-platform .audience-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 7px;
  border-color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
}

.audience-guide {
  padding: clamp(26px, 3.5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(9, 71, 49, 0.08);
}

.audience-guide h3 {
  margin-bottom: 24px;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
}

.audience-benefits {
  display: grid;
  gap: 12px;
}

.audience-benefit {
  display: grid;
  width: 100%;
  min-height: 88px;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: #fbfdfc;
  cursor: pointer;
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.audience-benefit > span {
  color: var(--green-700);
  font-size: 0.96rem;
  font-weight: 800;
}

.audience-benefit strong {
  font-size: 1.08rem;
  line-height: 1.55;
}

.audience-benefit:hover,
.audience-benefit:focus-visible,
.audience-benefit[aria-pressed="true"] {
  border-color: rgba(19, 151, 101, 0.55);
  background: var(--green-50);
  box-shadow: 0 10px 24px rgba(9, 91, 61, 0.1);
  transform: translateX(8px);
}

.audience-benefit[aria-pressed="true"] > span {
  color: var(--green-900);
}

.audience-platform-benefit {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 14px;
  color: var(--green-900);
  background: var(--green-50);
  font-weight: 600;
}

.audience-platform-benefit strong {
  margin-right: 8px;
  color: var(--ink);
}

@keyframes audience-route-flow {
  to {
    stroke-dashoffset: -18;
  }
}

@keyframes audience-orbit {
  to {
    transform: rotate(1turn);
  }
}

.services-section {
  background: var(--green-50);
}

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

.scene-card {
  --scene-accent: var(--green-800);
  --scene-soft: var(--green-100);
  overflow: hidden;
  border: 1px solid rgba(7, 88, 61, 0.12);
  border-top: 6px solid var(--scene-accent);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(9, 71, 49, 0.08);
}

.scene-card-errand {
  --scene-accent: #c36b27;
  --scene-soft: #fff0df;
}

.scene-card-inpatient {
  --scene-accent: #236d9a;
  --scene-soft: #e7f4fb;
}

.scene-media {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--scene-soft);
}

.scene-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.scene-card:hover .scene-media img {
  transform: scale(1.025);
}

.scene-media > span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 15px;
  color: var(--white);
  background: rgba(4, 45, 31, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.scene-content {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 32px;
}

.scene-category {
  width: fit-content;
  margin-bottom: 20px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--scene-accent);
  background: var(--scene-soft);
  font-size: 0.92rem;
  font-weight: 900;
}

.scene-content h3 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}

.scene-content > p:not(.scene-category) {
  color: var(--muted);
}

.scene-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 28px 0 0;
  list-style: none;
}

.scene-items li {
  padding: 6px 11px;
  border: 1px solid color-mix(in srgb, var(--scene-accent) 24%, white);
  border-radius: 8px;
  color: var(--scene-accent);
  background: var(--scene-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.service-moments {
  overflow: hidden;
  margin-top: 24px;
  padding-block: 6px 14px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.service-moments-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: service-moments-scroll 34s linear infinite;
  will-change: transform;
}

.service-moments-group {
  display: flex;
  flex-shrink: 0;
  gap: 16px;
}

.service-moments:hover .service-moments-track,
.service-moments:focus-visible .service-moments-track,
.service-moments:focus-within .service-moments-track {
  animation-play-state: paused;
}

.service-moment {
  position: relative;
  overflow: hidden;
  width: clamp(220px, 22vw, 292px);
  flex: 0 0 auto;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: var(--green-100);
  box-shadow: 0 10px 28px rgba(9, 71, 49, 0.1);
}

.service-moment::after {
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent, rgba(10, 58, 43, 0.78));
  content: "";
  pointer-events: none;
}

.service-moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.service-moment:hover img {
  transform: scale(1.025);
}

.service-moment figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, 0.88);
}

.service-moment figcaption strong {
  color: var(--white);
  font-size: 1.05rem;
}

.service-moment figcaption span {
  font-size: 0.82rem;
}

@keyframes service-moments-scroll {
  from {
    transform: translateX(calc(-50% - 8px));
  }

  to {
    transform: translateX(0);
  }
}

.process-section {
  background: linear-gradient(180deg, var(--white), var(--green-50));
}

.process-showcase {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.process-meter {
  position: relative;
  margin: 0 24px 34px;
}

.process-meter-track {
  position: absolute;
  top: 6px;
  right: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.process-meter-track span {
  display: block;
  width: var(--process-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-600), #82d3a7);
  box-shadow: 0 0 12px rgba(42, 170, 114, 0.45);
  transition: width 360ms ease;
}

.process-meter-dots {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.process-meter-dots i {
  width: 15px;
  height: 15px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #cbdcd3;
  box-shadow: 0 0 0 1px var(--line);
  transition: scale 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.process-meter-dots i[data-is-complete="true"] {
  background: var(--green-600);
}

.process-meter-dots i[data-is-active="true"] {
  background: #c7f2d9;
  box-shadow: 0 0 0 3px rgba(19, 151, 101, 0.22), 0 0 18px rgba(19, 151, 101, 0.5);
  scale: 1.35;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-width: 0;
}

.process-card {
  display: grid;
  width: 100%;
  min-height: 210px;
  align-content: space-between;
  gap: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: transform 260ms ease, color 260ms ease, border-color 260ms ease, background 260ms ease,
    box-shadow 260ms ease;
}

.process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-card-top > span {
  color: var(--green-700);
  font-size: 0.9rem;
  font-weight: 800;
}

.process-card-top i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--green-900);
  background: var(--green-50);
  font-style: normal;
  font-weight: 900;
}

.process-card-top i .ui-icon {
  width: 22px;
  height: 22px;
}

.process-card strong,
.process-card small {
  display: block;
}

.process-card strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.process-card small {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.process-card[data-is-complete="true"] {
  border-color: var(--green-200);
}

.process-card:hover,
.process-card:focus-visible {
  border-color: rgba(19, 151, 101, 0.45);
  box-shadow: 0 12px 28px rgba(9, 71, 49, 0.09);
  transform: translateY(-3px);
}

.process-card[aria-pressed="true"] {
  border-color: var(--green-900);
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(145deg, #176f53, #147a58);
  box-shadow: 0 18px 36px rgba(6, 61, 44, 0.22);
  transform: translateY(-6px);
}

.process-card[aria-pressed="true"] .process-card-top > span,
.process-card[aria-pressed="true"] strong {
  color: var(--white);
}

.process-card[aria-pressed="true"] small {
  color: rgba(255, 255, 255, 0.86);
}

.process-card[aria-pressed="true"] .process-card-top i {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--green-950);
  background: #c7f2d9;
  box-shadow: 0 0 18px rgba(199, 242, 217, 0.28);
}

.advantages-section {
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 224, 154, 0.2), transparent 27%),
    linear-gradient(90deg, rgba(23, 111, 83, 0.97), rgba(20, 122, 88, 0.78)),
    url("./images/service-escort-2h.jpg") center 42% / cover;
}

.advantages-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(60px, 9vw, 120px);
}

.advantages-section h2,
.advantages-section h3 {
  color: var(--white);
}

.advantages-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.86);
}

.advantages-list {
  display: grid;
}

.advantages-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.advantages-list article:first-child {
  padding-top: 0;
}

.advantages-list article > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  color: var(--green-950);
  background: #c7f2d9;
  font-size: 1.25rem;
  font-weight: 900;
}

.safety-section {
  background:
    linear-gradient(rgba(7, 88, 61, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 88, 61, 0.035) 1px, transparent 1px),
    #f3f7f5;
  background-size: 32px 32px;
}

.safety-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
  align-items: stretch;
  gap: 24px;
}

.safety-heading {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 530px;
  flex-direction: column;
  padding: clamp(38px, 5vw, 62px);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 225, 163, 0.2), transparent 38%),
    linear-gradient(150deg, rgba(23, 111, 83, 0.94), rgba(20, 122, 88, 0.82)),
    url("./images/service-escort-8h.jpg") center / cover;
  box-shadow: 0 24px 60px rgba(17, 107, 77, 0.13);
}

.safety-heading::after {
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(199, 242, 217, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(199, 242, 217, 0.04), 0 0 0 68px rgba(199, 242, 217, 0.025);
  content: "";
}

.safety-heading h2 {
  max-width: 460px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
}

.safety-lead {
  max-width: 420px;
  font-size: 1.05rem;
}

.safety-standard-mark {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.safety-standard-mark span {
  color: #bceccb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.safety-standard-mark strong {
  color: var(--white);
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}

.safety-content {
  padding: clamp(34px, 4.5vw, 56px);
  border: 1px solid rgba(7, 88, 61, 0.14);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(9, 71, 49, 0.08);
}

.safety-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--green-950);
  color: var(--green-950);
}

.safety-content-header strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.12rem;
}

.safety-content-header span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.safety-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.safety-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.safety-list li > span {
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.safety-list strong,
.safety-list p {
  display: block;
}

.safety-list strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.08rem;
}

.safety-list p {
  color: var(--muted);
  line-height: 1.7;
}

.service-boundary {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  margin-top: 30px;
  padding: 24px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.76);
  background: #2b725e;
}

.service-boundary > span {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: #c7f2d9;
  font-weight: 900;
}

.service-boundary > span .ui-icon {
  margin-top: 0.25em;
}

.service-boundary p {
  line-height: 1.72;
}

.mini-program-section {
  background: var(--white);
}

.mini-program-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr 340px;
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  padding: clamp(42px, 7vw, 84px);
  border-radius: 36px;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 226, 166, 0.25), transparent 30%),
    linear-gradient(135deg, #167654, #147a58);
}

.mini-program-panel::after {
  position: absolute;
  right: -110px;
  bottom: -190px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.mini-program-copy,
.qr-card {
  position: relative;
  z-index: 1;
}

.mini-program-panel h2 {
  max-width: 620px;
  color: var(--white);
}

.mini-program-description {
  max-width: 620px;
  font-size: 1.08rem;
}

.app-download {
  display: grid;
  width: min(100%, 520px);
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.app-download:hover,
.app-download:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.app-download-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--green-950);
  background: #c7f2d9;
}

.app-download-icon .ui-icon {
  width: 24px;
  height: 24px;
}

.app-download-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.app-download-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.app-download-copy strong {
  color: var(--white);
  font-size: 1rem;
}

.app-download-arrow {
  width: 22px;
  height: 22px;
}

.eyebrow-light {
  color: #bff1d3;
}

.mini-program-steps {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.scan-steps-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
}

.scan-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.scan-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.scan-steps span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: #c7f2d9;
  font-size: 0.82rem;
  font-weight: 800;
}

.qr-card {
  display: grid;
  width: 100%;
  max-width: 340px;
  justify-self: center;
  margin: 0;
  padding: 18px;
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.qr-card img {
  width: min(100%, 304px);
  height: auto !important;
  aspect-ratio: 524 / 520;
  justify-self: center;
  object-fit: contain;
  border-radius: 14px;
}

.site-footer {
  padding: 56px 0 24px;
  color: var(--muted);
  background: #f7faf8;
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-main {
  padding-bottom: 36px;
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.footer-actions a,
.footer-bottom a {
  color: var(--green-900);
  font-weight: 700;
}

.footer-actions a:hover,
.footer-actions a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  text-decoration: underline;
}

.footer-actions p {
  max-width: 500px;
  font-size: 0.9rem;
  text-align: right;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #e29b52;
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav > a:not(.button) {
    display: none;
  }

  .hero-copy,
  .section-heading-split,
  .advantages-layout,
  .safety-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    gap: 30px;
    padding-inline: 12px;
  }

  .hero-actions {
    display: flex;
  }

  .platform-layout {
    grid-template-columns: 1fr 100px 1fr;
  }

  .audience-showcase {
    max-width: 640px;
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

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

  .scene-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) 1fr;
  }

  .scene-media {
    height: 100%;
    aspect-ratio: auto;
  }

  .scene-content {
    min-height: 360px;
  }

  .advantages-layout,
  .safety-layout {
    gap: 20px;
  }

  .mini-program-panel {
    grid-template-columns: 1fr 290px;
  }
}

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

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

  .header-inner {
    min-height: 72px;
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav-toggle {
    display: block;
  }

  body.nav-open .site-header {
    border-color: var(--line);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(9, 71, 49, 0.08);
    backdrop-filter: none;
  }

  .site-nav {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: grid;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    align-content: start;
    gap: 2px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 40px rgba(9, 71, 49, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    display: block;
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button-admin {
    margin-top: 18px;
  }

  .site-nav .button:not(.button-admin) {
    margin-top: 8px;
  }

  .hero {
    padding: 14px 0 62px;
  }

  .hero-banner {
    border-radius: 18px;
  }

  .hero-copy {
    padding-top: 38px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-points li {
    min-height: auto;
    padding: 20px 12px;
  }

  .hero-points li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 76px 0;
  }

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

  .section-heading-split {
    gap: 18px;
  }

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

  .platform-feature {
    min-height: auto;
    grid-template-columns: 96px 1fr;
    gap: 18px;
    padding: 22px;
  }

  .platform-feature-media {
    width: 96px;
    border-radius: 15px;
  }

  .feature-number {
    margin-bottom: 14px;
  }

  .platform-bridge {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .platform-bridge i {
    width: 2px;
    height: 36px;
  }

  .platform-bridge i::before,
  .platform-bridge i::after {
    display: none;
  }

  .audience-platform {
    width: 150px;
    height: 150px;
  }

  .audience-role {
    width: 160px;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 12px 14px;
  }

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

  .scene-card {
    display: block;
  }

  .scene-media {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .scene-content {
    min-height: auto;
  }

  .service-moments {
    width: calc(100% + 28px);
    margin-left: -14px;
  }

  .process-list li {
    padding: 0;
  }

  .process-card {
    min-height: 168px;
    gap: 18px;
    padding: 22px;
  }

  .process-card[aria-pressed="true"] {
    transform: translateY(-3px);
  }

  .safety-list li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .safety-heading {
    min-height: 420px;
  }

  .safety-content {
    padding: 28px 24px;
  }

  .service-boundary {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .mini-program-panel {
    grid-template-columns: 1fr;
    padding: 38px 24px;
    border-radius: 26px;
  }

  .qr-card {
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-main > p {
    text-align: left;
  }

  .footer-actions {
    justify-items: start;
  }

  .footer-actions p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.25rem);
  }

  .safety-heading {
    min-height: 380px;
    padding: 30px 24px;
  }

  .safety-standard-mark strong {
    font-size: 1rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .title-line,
  .copy-line {
    display: inline;
  }

  .audience-showcase {
    gap: 24px;
    margin-top: 40px;
  }

  .audience-stage {
    border-radius: 18px;
  }

  .audience-stage::before {
    background-size: 18px 18px;
  }

  .audience-platform {
    width: 122px;
    height: 122px;
    padding: 14px;
  }

  .audience-platform .audience-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 3px;
    font-size: 0.9rem;
  }

  .audience-platform strong {
    font-size: 0.88rem;
  }

  .audience-platform small {
    font-size: 0.7rem;
  }

  .audience-role {
    width: 120px;
    grid-template-columns: 34px 1fr;
    gap: 7px;
    padding: 9px 10px;
    border-radius: 12px;
  }

  .audience-role-elder {
    top: 5%;
    left: 3%;
  }

  .audience-role-family {
    top: 5%;
    right: 3%;
  }

  .audience-role-provider {
    bottom: 3%;
  }

  .audience-role .audience-icon {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }

  .audience-role strong {
    font-size: 0.84rem;
  }

  .audience-role small {
    font-size: 0.68rem;
  }

  .audience-guide {
    padding: 26px 22px;
  }

  .process-showcase {
    padding: 20px;
  }

  .process-meter {
    margin-inline: 6px;
  }

  .audience-benefit {
    min-height: 72px;
    grid-template-columns: 54px 1fr;
    gap: 10px;
    padding: 14px 15px;
  }

  .audience-benefit:hover,
  .audience-benefit:focus-visible,
  .audience-benefit[aria-pressed="true"] {
    transform: translateX(4px);
  }

  .scene-content {
    padding: 28px 24px 30px;
  }

  .service-moments {
    padding-bottom: 10px;
  }

  .service-moment {
    width: 210px;
    border-radius: 16px;
  }

  .service-moment figcaption {
    right: 14px;
    bottom: 12px;
    left: 14px;
  }

  .service-moment figcaption strong {
    font-size: 1rem;
  }

  .service-moment figcaption span {
    font-size: 0.78rem;
  }

  .scan-steps {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .audience-stage.is-visible .audience-route,
  .audience-stage.is-visible .platform-orbit,
  .audience-stage.is-visible .audience-role {
    animation: none;
  }

  .audience-signal {
    display: none;
  }

  .service-moments {
    overflow-x: auto;
    mask-image: none;
  }

  .service-moments-track {
    animation: none;
    transform: none;
  }

  .service-moments-group[aria-hidden="true"] {
    display: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .mini-program-section {
    display: none;
  }

  .section,
  .hero {
    padding: 30px 0;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
