:root {
  --color-bg: #f8f3ec;
  --color-surface: #fffaf4;
  --color-card: #ffffff;
  --color-primary: #9f1f2b;
  --color-primary-dark: #7f1620;
  --color-primary-soft: #f4e6e7;
  --color-primary-light: #fff3f3;
  --color-accent: #b98b72;
  --color-taupe: #8a7468;
  --color-text: #252323;
  --color-muted: #706866;
  --color-line: #eaded8;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --shadow-soft: 0 18px 50px rgba(70, 35, 30, 0.08);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(244, 230, 231, 0.9), transparent 34rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.mobile-only {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 72px;
  padding: 0 clamp(20px, 4.6vw, 60px);
  border-bottom: 1px solid rgba(234, 222, 216, 0.86);
  background: rgba(248, 243, 236, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 148px;
  white-space: nowrap;
}

.brand-lockup {
  align-items: baseline;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  line-height: 1;
}

.brand-en {
  color: #a8172a;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-ko {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 22px 0;
}

.nav a:hover,
.nav a.is-active {
  color: var(--color-primary);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  padding: 0 20px;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(159, 31, 43, 0.18);
}

.button {
  padding: 0 24px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 14px 32px rgba(159, 31, 43, 0.18);
}

.button--ghost {
  border-color: var(--color-line);
  background: rgba(255, 250, 244, 0.72);
  color: var(--color-primary-dark);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 24px;
  color: var(--color-primary-dark);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.inline-link::after {
  content: ">";
  margin-left: 8px;
  color: var(--color-primary);
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--color-primary);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.menu-button:hover,
.menu-button:focus {
  background: transparent;
  outline: none;
}

.menu-button:focus-visible {
  outline: 2px solid var(--color-primary-soft);
  outline-offset: 2px;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--color-primary);
}

.section {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section--compact {
  padding: 58px 0;
}

.section--surface {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100vw - var(--max-width)) / 2));
  background: rgba(255, 250, 244, 0.72);
  border-block: 1px solid var(--color-line);
}

.index-landing-page {
  overflow: hidden;
}

.index-slice {
  width: 100%;
  padding: clamp(56px, 7vw, 108px) 20px;
}

.index-slice--hero {
  padding-top: clamp(112px, 12vw, 150px);
}

.index-slice--surface {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.82), rgba(248, 243, 236, 0.92));
}

.index-slice-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.index-slice-copy {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
  word-break: keep-all;
}

.section-eyebrow {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-slice-copy h1,
.index-slice-copy h2,
.index-faq-head h2 {
  margin: 0 0 16px;
  color: var(--color-text);
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.16;
  letter-spacing: 0;
}

.index-slice-copy h2,
.index-faq-head h2 {
  font-size: clamp(30px, 3.7vw, 50px);
}

.index-slice-copy p:not(.section-eyebrow) {
  margin: 0 auto;
  max-width: 760px;
  color: var(--color-muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.78;
}

.index-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.index-cta-row--subtle {
  margin-top: 18px;
}

.index-slice-picture {
  display: block;
  width: 100%;
}

.index-slice-picture img {
  display: block;
  width: 100%;
  max-width: 1040px;
  height: auto;
  margin: 0 auto;
  border: 1px solid rgba(234, 222, 216, 0.72);
  border-radius: 28px;
  background: var(--color-surface);
  box-shadow: 0 18px 46px rgba(70, 35, 30, 0.075);
}

.index-note {
  max-width: 920px;
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(234, 222, 216, 0.86);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.74);
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.index-faq {
  padding-top: clamp(62px, 7vw, 106px);
  padding-bottom: clamp(70px, 8vw, 118px);
}

.index-faq-head {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
  word-break: keep-all;
}

.index-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.index-faq-list article {
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  background: var(--color-card);
  box-shadow: 0 12px 28px rgba(70, 35, 30, 0.045);
}

.index-faq-list h3 {
  margin: 0 0 10px;
  color: var(--color-primary-dark);
  font-size: 18px;
  line-height: 1.42;
  letter-spacing: 0;
}

.index-faq-list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.74;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: 64px;
  align-items: center;
  min-height: 540px;
  padding-top: 72px;
}

.page-hero--center {
  display: block;
  max-width: 900px;
  min-height: 0;
  text-align: left;
}

.home-hero {
  min-height: calc(100vh - 72px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

h1 span,
.accent-text {
  color: var(--color-primary);
}

.hero-lead,
.section-head p,
.lead-text {
  color: var(--color-muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.home-hero .hero-visual > img {
  object-position: center center;
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: min(248px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(234, 222, 216, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(70, 35, 30, 0.12);
}

.floating-card span,
.badge {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

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

.floating-card--record {
  top: 38px;
  right: 32px;
}

.floating-card--report {
  left: 32px;
  bottom: 34px;
}

.section-head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.why-now-section .section-head {
  margin-bottom: 30px;
}

.section-head h2,
.intro-panel h2,
.split-content h2,
.contact-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.intro-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

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

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

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card,
.loop-card,
.partner-card,
.lineup-card,
.mock-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-card);
  box-shadow: var(--shadow-soft);
}

.content-card {
  padding: 30px;
}

.content-card h3,
.loop-card h3,
.partner-card h3,
.lineup-card h3,
.mock-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.content-card p,
.loop-card p,
.partner-card p,
.lineup-card p,
.mock-card p,
.muted {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.content-card .number,
.loop-card .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 800;
}

.summary-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.summary-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--color-primary);
  font-weight: 800;
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.loop-card {
  min-height: 232px;
  padding: 28px 24px;
}

.care-flow,
.person-flow,
.stepper-flow {
  display: grid;
  align-items: stretch;
  gap: 14px;
}

.report-step-grid {
  margin-top: 28px;
}

.brand-hub-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "person home clinic"
    ". hub .";
  gap: 34px 18px;
  padding-bottom: 8px;
}

.brand-hub-diagram::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: calc(50% - 8px);
  height: 1px;
  border-top: 2px dashed rgba(185, 139, 114, 0.42);
}

.brand-hub-diagram::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  bottom: 27%;
  width: 1px;
  border-left: 2px dashed rgba(185, 139, 114, 0.42);
}

.hub-source {
  z-index: 1;
  min-height: 230px;
}

.hub-source::after {
  display: none;
}

.hub-source--person {
  grid-area: person;
}

.hub-source--home {
  grid-area: home;
}

.hub-source--clinic {
  grid-area: clinic;
}

.hub-center {
  grid-area: hub;
  z-index: 2;
  padding: 30px 28px;
  border: 1px solid rgba(159, 31, 43, 0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 48%),
    var(--color-primary-light);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.hub-center span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hub-center strong {
  display: block;
  color: var(--color-primary-dark);
  font-size: 28px;
  line-height: 1.1;
}

.hub-center p {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.diagram-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
  font-weight: 700;
}

.diagram-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.diagram-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(185, 139, 114, 0.12);
}

.care-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.stepper-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.flow-node {
  position: relative;
  padding: 26px 20px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.86), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-soft);
}

.flow-node:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 2;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  line-height: 22px;
  text-align: center;
}

.flow-node .number,
.flow-node .label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-node .number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  letter-spacing: 0;
}

.flow-node h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.loop-cycle {
  position: relative;
  padding-bottom: 54px;
}

.loop-cycle .flow-node:last-of-type::after {
  display: none;
}

.loop-cycle::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 21px;
  height: 42px;
  border: 2px dashed rgba(185, 139, 114, 0.42);
  border-top: 0;
  border-radius: 0 0 32px 32px;
}

.loop-cycle .flow-node:last-of-type::before {
  content: "↺";
  position: absolute;
  right: 18px;
  bottom: -48px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 34px;
  text-align: center;
}

.loop-return {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(70, 35, 30, 0.08);
}

.product-flow .flow-node {
  min-height: 190px;
}

.product-flow .flow-node:first-child {
  border-color: rgba(159, 31, 43, 0.28);
  background:
    linear-gradient(180deg, var(--color-primary-light), rgba(255, 255, 255, 0.96));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) 1fr;
  gap: 64px;
  align-items: center;
}

.split-image {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-card-grid {
  display: grid;
  gap: 22px;
}

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

.image-card {
  overflow: hidden;
  border-color: rgba(234, 222, 216, 0.72);
  background: rgba(255, 250, 244, 0.84);
  box-shadow: 0 12px 30px rgba(70, 35, 30, 0.05);
}

.image-card img,
.care-loop-visual img,
.clinic-trust-visual img,
.partner-card--image img,
.brand-vision-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.74), rgba(255, 243, 243, 0.52));
}

.product-card > div {
  padding: 28px;
}

.care-loop-section {
  display: grid;
  gap: 28px;
}

.care-loop-visual {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.care-loop-visual img {
  aspect-ratio: 16 / 7;
}

.care-loop-visual--diagram {
  max-width: 920px;
  margin: 40px auto 18px;
  padding: 18px;
  background: #fff;
}

.care-loop-visual--diagram img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 18px;
}

.care-loop-visual--compact {
  max-width: 720px;
}

.care-diagram-card {
  max-width: 1080px;
  margin: 18px auto 20px;
  padding: 4px;
  border: 1px solid rgba(234, 222, 216, 0.64);
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.58);
  box-shadow: 0 10px 24px rgba(70, 35, 30, 0.035);
}

.care-diagram-card--wide {
  width: min(100%, 1420px);
  max-width: 1420px;
  margin-top: 4px;
  margin-bottom: 18px;
  padding: 0;
}

.care-loop-diagram-section {
  padding-top: 58px;
}

.care-diagram-header,
.care-loop-diagram-header {
  max-width: 760px;
  margin-bottom: 18px;
}

.care-diagram-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 17px;
}

.visual-caption {
  max-width: 760px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}

.care-axis-grid,
.platform-module-grid {
  margin-top: 22px;
}

.care-axis-grid .content-card,
.platform-module-grid .content-card {
  min-height: 0;
}

.care-axis-grid .content-card {
  padding: 22px;
}

.care-axis-grid .content-card .number {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  font-size: 12px;
}

.care-axis-grid .content-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.care-axis-grid .content-card p,
.platform-module-grid .content-card p {
  max-width: 26em;
}

.compact-loop-grid .content-card,
.collaboration-compact-grid .content-card {
  min-height: 0;
}

.compact-loop-grid .content-card {
  position: relative;
}

.compact-flow-grid .flow-node {
  min-height: 0;
}

.field-insight-section {
  padding-bottom: 42px;
}

.section--tight-follow {
  padding-top: 22px;
}

.section--tight-report {
  padding-bottom: 22px;
}

.section--final-note {
  padding-bottom: 38px;
}

.care-loop-summary-section .care-loop-visual {
  margin-bottom: 26px;
}

.clinic-trust-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) 1fr;
  gap: 28px;
  align-items: stretch;
}

.clinic-trust-visual {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.clinic-trust-visual img {
  height: 100%;
  min-height: 420px;
}

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

.partner-card--image {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  overflow: hidden;
  padding: 20px;
}

.partner-card--image img {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-line);
  background: var(--color-primary-light);
}

.partner-card--image > div {
  min-width: 0;
}

.partner-profile-card {
  align-items: flex-start;
}

.partner-profile-card img {
  margin-top: 2px;
  object-position: center top;
}

.partner-profile-card--leehyemin img {
  padding: 4px;
  background: var(--color-surface);
  object-fit: contain;
  object-position: center 35%;
}

.partner-profile-card h3,
.partner-role-card h3 {
  margin-bottom: 6px;
}

.partner-profile-card strong,
.partner-role-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.45;
}

.partner-profile-card p,
.partner-role-card p {
  font-size: 14px;
  line-height: 1.56;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.partner-tags li {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244, 230, 231, 0.68);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.partner-card--wide {
  display: block;
  grid-column: 1 / -1;
  padding: 0;
}

.partner-card--wide img {
  width: 100%;
  height: clamp(220px, 28vw, 340px);
  border: 0;
  border-radius: 0;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.partner-card--wide > div {
  padding: 22px;
}

.team-title {
  word-break: keep-all;
  overflow-wrap: normal;
}

.brand-vision-card {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.6fr);
  gap: 36px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-card), var(--color-primary-light));
  box-shadow: var(--shadow-soft);
}

.brand-vision-card img {
  max-height: 260px;
  object-fit: contain;
}

.report-preview-image img,
.collaboration-section .split-image img {
  aspect-ratio: 16 / 10;
}

.product-hero {
  padding-top: 128px;
}

.product-hero-grid,
.home-routine-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 64px;
  align-items: center;
}

.product-hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--color-text);
}

.product-hero-copy h1 span {
  color: var(--color-primary);
}

.product-hero-visual {
  overflow: hidden;
  border: 1px solid rgba(234, 222, 216, 0.72);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 243, 243, 0.48));
  box-shadow: 0 14px 34px rgba(70, 35, 30, 0.055);
}

.product-hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: contain;
  padding: clamp(18px, 3vw, 36px);
}

.product-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.product-badge-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.82);
  color: var(--color-primary-dark);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.product-feature-grid,
.usage-steps,
.recommend-grid,
.product-summary-grid,
.mode-guide-layout,
.compact-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.compact-step-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.usage-steps article,
.product-summary-card,
.mode-card,
.compact-step-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-card);
  box-shadow: var(--shadow-soft);
}

.feature-icon,
.usage-steps span,
.product-summary-card span,
.mode-card span,
.compact-step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
}

.feature-card h3,
.usage-steps h3,
.compact-step-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.product-summary-card h3,
.mode-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.32;
}

.feature-card p,
.usage-steps p,
.product-summary-card p,
.mode-card p,
.compact-step-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.72;
}

.remote-guide-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(234, 222, 216, 0.82);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 12px 30px rgba(70, 35, 30, 0.045);
}

.remote-guide-panel h3,
.posture-caution-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.remote-guide-panel p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.68;
}

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

.remote-command-grid div {
  padding: 14px;
  border: 1px solid rgba(234, 222, 216, 0.78);
  border-radius: 14px;
  background: #fff;
}

.remote-command-grid dt {
  margin-bottom: 5px;
  color: var(--color-primary-dark);
  font-weight: 900;
}

.remote-command-grid dd {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.soft-note-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.soft-note-list p {
  padding: 13px 14px;
  border-radius: 14px;
  background: var(--color-primary-light);
  color: var(--color-text);
  font-weight: 700;
}

.posture-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: stretch;
}

.posture-caution-card {
  padding: 24px;
  border: 1px solid rgba(234, 222, 216, 0.82);
  border-radius: var(--radius-lg);
  background: #fffaf4;
  box-shadow: 0 12px 30px rgba(70, 35, 30, 0.045);
}

.posture-caution-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.posture-caution-card li {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--color-primary-light);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.home-routine-section {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
}

.detail-guide-section {
  text-align: center;
}

.detail-guide-image-wrap {
  max-width: 1080px;
  margin: 36px auto 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: var(--color-card);
  box-shadow: var(--shadow-soft);
}

.detail-guide-image {
  display: block;
  width: 100%;
  height: auto;
}

.guide-download-note {
  max-width: 1080px;
  margin: 18px auto 0;
  padding: 16px 20px;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: var(--color-surface);
  color: var(--color-muted);
  font-size: 14px;
}

.guide-download-note p {
  margin: 0;
}

.product-info-table {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-card);
  box-shadow: var(--shadow-soft);
}

.product-info-table div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  border-bottom: 1px solid var(--color-line);
}

.product-info-table div:last-child {
  border-bottom: 0;
}

.product-info-table strong,
.product-info-table span {
  padding: 20px 24px;
  line-height: 1.65;
}

.product-info-table strong {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.product-info-table span {
  color: var(--color-muted);
}

.safety-list {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.safety-list li {
  position: relative;
  padding: 18px 20px 18px 48px;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: var(--color-card);
  color: var(--color-muted);
  line-height: 1.65;
}

.safety-list li::before {
  content: "!";
  position: absolute;
  left: 18px;
  top: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
}

.legal-hero {
  min-height: 360px;
}

.legal-section {
  padding-top: 72px;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: var(--color-card);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 0 0 12px;
  color: var(--color-primary-dark);
  font-size: 21px;
}

.legal-card h2:not(:first-child) {
  margin-top: 34px;
}

.legal-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.82;
}

.legal-card a {
  color: var(--color-primary-dark);
  font-weight: 800;
}

.legal-updated {
  margin-top: 34px !important;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
  font-size: 14px;
}

.section-actions {
  margin-top: 26px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.feature-list div {
  padding: 17px 20px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.78);
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-primary-dark);
}

.feature-list span {
  color: var(--color-muted);
}

.report-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: stretch;
}

.phone-card {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background: linear-gradient(180deg, var(--color-card), var(--color-primary-light));
  box-shadow: var(--shadow-soft);
}

.report-record-card {
  position: relative;
  overflow: hidden;
}

.report-record-card::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(244, 230, 231, 0.72);
}

.phone-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.report-caption {
  position: relative;
  z-index: 1;
  margin: -12px 0 12px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.phone-card__top span {
  color: var(--color-muted);
  font-weight: 700;
}

.phone-card__top strong {
  color: var(--color-primary);
  font-size: 38px;
  line-height: 1;
}

.progress {
  position: relative;
  z-index: 1;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-primary-soft);
}

.progress span {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.mini-chart {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: end;
  height: 120px;
  margin: 28px 0;
}

.mini-chart span {
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #9f1f2b, #d7aaa1 60%, #b98b72);
  box-shadow: inset 0 -1px 0 rgba(127, 22, 32, 0.12);
}

.phone-card ul,
.mock-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
  font-weight: 600;
}

.phone-card li,
.mock-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.phone-card li span,
.mock-list li span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
}

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

.mock-card {
  position: relative;
  overflow: hidden;
}

.mock-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.report-stat-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin: 22px 0 10px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.report-stat-row strong {
  color: var(--color-primary-dark);
}

/* Homecare report detail page */
.report-detail-page {
  overflow: hidden;
}

.report-detail-hero,
.report-cut {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.report-detail-hero {
  padding-top: 132px;
}

.report-detail-copy,
.report-cut-copy {
  word-break: keep-all;
}

.report-detail-copy h1,
.report-cut-copy h2 {
  margin: 10px 0 18px;
  color: var(--color-text);
  letter-spacing: 0;
}

.report-detail-copy h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.12;
}

.report-hero-main {
  margin: 0 0 18px !important;
  color: var(--color-text) !important;
  font-size: clamp(32px, 4.3vw, 54px) !important;
  font-weight: 900;
  line-height: 1.18 !important;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.report-hero-main span {
  display: block;
}

.report-detail-copy h1 span,
.report-cut-copy h2 span {
  color: var(--color-primary-dark);
}

.report-detail-copy p:not(.eyebrow),
.report-cut-copy > p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.78;
}

.report-cut-copy h2 {
  font-size: clamp(29px, 3.8vw, 46px);
  line-height: 1.2;
}

.report-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.report-visual {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(234, 222, 216, 0.46);
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.34);
  box-shadow: 0 14px 34px rgba(70, 35, 30, 0.045);
}

.report-picture {
  display: block;
  width: 100%;
}

.report-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.report-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.report-chip-row span,
.report-loop-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(159, 31, 43, 0.12);
  border-radius: 999px;
  background: rgba(244, 230, 231, 0.58);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.report-mini-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.report-mini-list li {
  position: relative;
  padding-left: 18px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.62;
}

.report-mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}

.report-axis-grid,
.report-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.report-axis-grid article,
.report-metric-grid span {
  border: 1px solid rgba(234, 222, 216, 0.86);
  border-radius: 16px;
  background: rgba(255, 250, 244, 0.72);
}

.report-axis-grid article {
  padding: 16px;
}

.report-axis-grid span {
  display: block;
  color: var(--color-taupe);
  font-size: 12px;
  font-weight: 800;
}

.report-axis-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.35;
}

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

.report-metric-grid span {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-size: 14px;
  font-weight: 800;
}

.report-disclaimer {
  margin-top: 18px !important;
  padding: 16px 18px;
  border: 1px solid rgba(185, 139, 114, 0.22);
  border-radius: 16px;
  background: rgba(255, 250, 244, 0.78);
  color: var(--color-taupe) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.report-loop-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

@media (max-width: 1020px) {
  .report-detail-hero,
  .report-cut {
    grid-template-columns: 1fr;
  }

  .report-detail-hero {
    padding-top: 112px;
  }

  .report-visual {
    border-radius: 22px;
  }
}

@media (max-width: 768px) {
  .report-detail-hero,
  .report-cut {
    gap: 22px;
  }

  .report-detail-hero {
    padding-top: 98px;
  }

  .report-detail-copy h1 {
    font-size: clamp(22px, 5.6vw, 28px);
    line-height: 1.15;
  }

  .report-hero-main {
    font-size: clamp(31px, 8.1vw, 38px) !important;
    line-height: 1.16 !important;
    letter-spacing: 0;
  }

  .report-hero-main span {
    white-space: nowrap;
  }

  .report-cut-copy h2 {
    font-size: clamp(25px, 6.9vw, 32px);
    line-height: 1.22;
  }

  .report-detail-copy p:not(.eyebrow),
  .report-cut-copy > p {
    font-size: 15px;
    line-height: 1.68;
  }

  .report-visual {
    position: relative;
    left: 50%;
    width: calc(100vw - 24px);
    max-width: none;
    border-radius: 18px;
    transform: translateX(-50%);
  }

  .report-cta-row {
    gap: 10px;
    margin-top: 22px;
  }

  .report-cta-row .button {
    width: 100%;
  }

  .report-axis-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .report-axis-grid article {
    padding: 14px;
  }

  .report-metric-grid {
    gap: 8px;
  }

  .report-chip-row,
  .report-loop-steps {
    gap: 7px;
  }

  .report-chip-row span,
  .report-loop-steps span {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .report-mini-list li {
    font-size: 14px;
  }
}

.soft-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-primary-soft);
}

.soft-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.reference-note {
  margin: 22px 0 4px;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: var(--color-primary-light);
}

.reference-note span {
  display: block;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-note strong {
  display: block;
  margin-top: 4px;
  color: var(--color-primary-dark);
}

.lineup-card {
  overflow: hidden;
}

.lineup-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lineup-card h3,
.lineup-card p {
  padding-inline: 26px;
}

.lineup-card h3 {
  margin-top: 24px;
}

.lineup-card p {
  padding-bottom: 28px;
}

.partner-card {
  padding: 32px;
}

.partner-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 800;
}

.notice-box {
  padding: 24px 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-primary-light);
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.7;
}

.notice-box--soft {
  background: #fffaf4;
  color: var(--color-muted);
  text-align: center;
}

.notice-box--cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 56px;
  align-items: center;
  margin-bottom: 40px;
  padding: 56px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #7f1620, #8f2630 58%, #6f1a20);
  color: #fff;
  box-shadow: 0 24px 70px rgba(70, 35, 30, 0.18);
}

.contact-panel .section-kicker,
.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
}

.contact-form textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
  background: #fff;
  color: var(--color-primary-dark);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.site-footer {
  padding: 48px clamp(20px, 5vw, 64px) 26px;
  border-top: 1px solid var(--color-line);
  background: var(--color-surface);
  color: var(--color-muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(280px, 1.2fr) minmax(150px, 0.7fr) minmax(160px, 0.75fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand,
.footer-company,
.footer-links,
.footer-legal {
  min-width: 0;
}

.footer-brand-lockup {
  margin-bottom: 16px;
}

.site-footer .brand-en {
  font-size: 22px;
}

.site-footer .brand-ko {
  font-size: 14px;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 18px;
  letter-spacing: 0;
}

.site-footer p {
  max-width: 340px;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--color-primary-dark);
  font-size: 14px;
  letter-spacing: 0;
}

.footer-company dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.footer-company div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
}

.footer-company dt,
.footer-company dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.footer-company dt {
  color: var(--color-taupe);
  font-weight: 700;
}

.footer-company dd {
  color: var(--color-muted);
}

.footer-links,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer a {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.footer-links a,
.footer-legal a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(234, 222, 216, 0.78);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.72);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-links a:focus-visible,
.footer-legal a:focus-visible {
  border-color: rgba(159, 31, 43, 0.28);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max-width);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 1020px) {
  .page-hero,
  .intro-panel,
  .section-head,
  .split-section,
  .report-layout,
  .clinic-trust-layout,
  .brand-vision-card,
  .product-hero-grid,
  .home-routine-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .page-hero {
    gap: 40px;
    min-height: 0;
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 460px;
  }

  .card-grid,
  .card-grid--two,
  .card-grid--four,
  .image-card-grid--two,
  .report-mock-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-feature-grid,
  .usage-steps,
  .recommend-grid,
  .product-summary-grid,
  .mode-guide-layout,
  .usage-steps,
  .compact-step-grid,
  .compact-step-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .remote-guide-panel,
  .posture-layout {
    grid-template-columns: 1fr;
  }

  .product-hero {
    padding-top: 112px;
  }

  .product-hero-visual {
    order: -1;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .clinic-trust-visual img {
    min-height: 360px;
  }

  .loop-grid,
  .care-flow,
  .stepper-flow {
    grid-template-columns: 1fr;
  }

  .compact-loop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .compact-flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

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

  .compact-loop-grid .content-card,
  .collaboration-compact-grid .content-card {
    padding: 18px 16px;
  }

  .compact-flow-grid .flow-node {
    min-height: 0;
    padding: 18px 16px;
  }

  .compact-loop-grid .content-card .number,
  .collaboration-compact-grid .content-card .number,
  .compact-flow-grid .flow-node .number {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    font-size: 12px;
  }

  .compact-loop-grid .content-card h3,
  .collaboration-compact-grid .content-card h3,
  .compact-flow-grid .flow-node h3 {
    margin-bottom: 6px;
    font-size: 17px;
    line-height: 1.2;
  }

  .compact-loop-grid .content-card p,
  .collaboration-compact-grid .content-card p,
  .compact-flow-grid .flow-node p {
    font-size: 13px;
    line-height: 1.48;
  }

  .compact-loop-grid .content-card:nth-child(4) {
    grid-column: 1 / 2;
  }

  .compact-loop-grid .content-card:nth-child(5) {
    grid-column: 2 / 4;
  }

  .compact-flow-grid .flow-node:nth-child(4) {
    grid-column: 1 / 2;
  }

  .compact-flow-grid .flow-node:nth-child(5) {
    grid-column: 2 / 4;
  }

  .compact-loop-grid .content-card:not(:last-child)::after {
    content: ">";
    position: absolute;
    top: 16px;
    right: 12px;
    color: rgba(159, 31, 43, 0.36);
    font-weight: 800;
  }

  .compact-flow-grid .flow-node:not(:last-child)::after {
    content: ">";
    top: 16px;
    right: 12px;
    bottom: auto;
    transform: none;
  }

  .brand-hub-diagram {
    grid-template-columns: 1fr;
    grid-template-areas:
      "person"
      "home"
      "clinic"
      "hub";
  }

  .brand-hub-diagram::before,
  .brand-hub-diagram::after {
    display: none;
  }

  .brand-hub-diagram .hub-source::after {
    display: none;
  }

  .hub-source {
    min-height: 0;
  }

  .hub-source:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -27px;
    width: 2px;
    height: 20px;
    background: rgba(185, 139, 114, 0.34);
  }

  .flow-node:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -18px;
    transform: translateX(50%) rotate(90deg);
  }

  .loop-cycle {
    padding-bottom: 0;
  }

  .loop-cycle::before,
  .loop-cycle .flow-node:last-of-type::before {
    display: none;
  }

  .loop-return {
    position: static;
    transform: none;
    justify-self: center;
    margin-top: 2px;
  }
}

@media (max-width: 780px) {
  .mobile-only {
    display: block;
  }

  .index-slice {
    padding: 44px 12px;
  }

  .index-slice--hero {
    padding-top: 98px;
  }

  .index-slice-copy {
    margin-bottom: 18px;
    text-align: left;
  }

  .section-eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .index-slice-copy h1,
  .index-slice-copy h2,
  .index-faq-head h2 {
    margin-bottom: 12px;
    font-size: clamp(25px, 6.6vw, 32px);
    line-height: 1.18;
    letter-spacing: 0;
  }

  .index-slice-copy .index-title-nowrap {
    white-space: nowrap;
    font-size: clamp(23px, 6.1vw, 28px);
    line-height: 1.12;
  }

  .index-slice-copy p:not(.section-eyebrow),
  .index-faq-list p {
    font-size: 15px;
    line-height: 1.68;
  }

  .index-cta-row {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
  }

  .index-cta-row .button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 14px;
  }

  .index-slice-picture img {
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(70, 35, 30, 0.06);
  }

  .index-note {
    margin-top: 14px;
    padding: 12px 14px;
    text-align: left;
  }

  .index-faq {
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .index-faq-head {
    margin-bottom: 20px;
    text-align: left;
  }

  .index-faq-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .index-faq-list article {
    padding: 20px;
    border-radius: 18px;
  }

  .index-faq-list h3 {
    font-size: 16px;
  }

  .site-header {
    min-height: 64px;
    padding-inline: 20px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-en {
    font-size: 20px;
  }

  .brand-ko,
  .site-footer .brand-ko {
    font-size: 13px;
  }

  .nav {
    position: fixed;
    inset: 64px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--color-line);
    border-radius: 20px;
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
  }

  .nav a {
    padding: 13px 10px;
  }

  .nav a.is-active::after {
    display: none;
  }

  body.menu-open .nav {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .section {
    width: min(100% - 40px, var(--max-width));
    padding: 66px 0;
  }

  .section--surface {
    width: 100%;
    padding: 66px 20px;
  }

  .intro-panel {
    margin-bottom: 22px;
  }

  .page-hero {
    padding-top: 48px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .hero-lead,
  .section-head p,
  .lead-text {
    font-size: 16px;
    line-height: 1.78;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .content-card p,
  .loop-card p,
  .flow-node p,
  .notice-box,
  .diagram-list li,
  .split-content p,
  .feature-list span {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .content-card h3,
  .loop-card h3,
  .flow-node h3 {
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.45;
  }

  .diagram-list {
    gap: 9px;
  }

  .diagram-list li {
    line-height: 1.55;
  }

  .care-axis-grid .content-card p,
  .platform-module-grid .content-card p,
  .visual-caption {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .care-loop-visual--diagram {
    margin: 20px auto 12px;
    padding: 8px;
    border-radius: 20px;
  }

  .care-loop-visual--diagram img {
    border-radius: 14px;
  }

  .care-loop-visual--diagram {
    max-height: 220px;
    opacity: 0.84;
  }

  .care-loop-visual--diagram img {
    max-height: 204px;
    object-fit: contain;
  }

  .care-loop-visual--compact {
    max-height: 180px;
  }

  .care-loop-visual--compact img {
    max-height: 164px;
  }

  .visual-caption {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }

  .button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 15px;
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 390px;
  }

  .home-hero .hero-visual > img {
    object-position: 60% center;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: calc(100% - 34px);
    padding: 16px;
    margin: -58px auto 0;
  }

  .floating-card--record {
    margin-top: -92px;
  }

  .floating-card--report {
    margin-top: 10px;
    margin-bottom: 16px;
  }

  .floating-card strong {
    font-size: 17px;
  }

  .floating-card p {
    font-size: 13px;
  }

  .card-grid,
  .card-grid--two,
  .card-grid--four,
  .image-card-grid--two,
  .partner-image-grid,
  .product-feature-grid,
  .usage-steps,
  .recommend-grid,
  .product-summary-grid,
  .mode-guide-layout,
  .compact-step-grid,
  .compact-step-grid--four,
  .report-mock-grid {
    grid-template-columns: 1fr;
  }

  .product-summary-grid,
  .mode-guide-layout,
  .compact-step-grid,
  .compact-step-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-card,
  .intro-panel,
  .partner-card,
  .mock-card {
    padding: 24px;
  }

  .compact-loop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .care-diagram-card {
    position: relative;
    left: 50%;
    width: calc(100vw - 28px);
    max-width: none;
    margin: 10px auto 14px;
    padding: 2px;
    border-radius: 16px;
    transform: translateX(-50%);
  }

  .care-diagram-card--wide {
    width: calc(100vw - 18px);
    margin-top: 0;
    margin-bottom: 14px;
    padding: 0;
  }

  .care-loop-diagram-section {
    padding-top: 40px;
  }

  .care-diagram-header,
  .care-loop-diagram-header {
    margin-bottom: 12px;
  }

  .care-diagram-image {
    border-radius: 14px;
  }

  .care-axis-grid {
    gap: 10px;
    margin-top: 16px;
  }

  .care-axis-grid .content-card {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 2px 10px;
    padding: 14px 12px;
    border-radius: 16px;
  }

  .care-axis-grid .content-card .number {
    grid-row: span 2;
    width: 30px;
    height: 30px;
    margin-bottom: 0;
    font-size: 11px;
  }

  .care-axis-grid .content-card h3 {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.2;
  }

  .care-axis-grid .content-card p {
    font-size: 12.5px;
    line-height: 1.42;
  }

  .compact-flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

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

  .compact-loop-grid .content-card,
  .collaboration-compact-grid .content-card {
    padding: 14px 12px;
    border-radius: 16px;
  }

  .compact-flow-grid .flow-node {
    padding: 14px 12px;
    border-radius: 16px;
  }

  .compact-loop-grid .content-card .number,
  .collaboration-compact-grid .content-card .number,
  .compact-flow-grid .flow-node .number {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .compact-loop-grid .content-card h3,
  .collaboration-compact-grid .content-card h3,
  .compact-flow-grid .flow-node h3 {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.18;
    letter-spacing: -0.015em;
  }

  .compact-loop-grid .content-card p,
  .collaboration-compact-grid .content-card p,
  .compact-flow-grid .flow-node p {
    font-size: 12.5px;
    line-height: 1.42;
  }

  .collaboration-compact-grid .content-card h3 {
    font-size: 14px;
  }

  .compact-loop-grid .content-card:nth-child(4) {
    grid-column: 1 / 2;
  }

  .compact-loop-grid .content-card:nth-child(5) {
    grid-column: 2 / 4;
  }

  .compact-flow-grid .flow-node:nth-child(4) {
    grid-column: 1 / 2;
  }

  .compact-flow-grid .flow-node:nth-child(5) {
    grid-column: 2 / 4;
  }

  .compact-loop-grid .content-card:not(:last-child)::after {
    top: 12px;
    right: 8px;
    font-size: 13px;
  }

  .compact-flow-grid .flow-node:not(:last-child)::after {
    top: 12px;
    right: 8px;
    font-size: 13px;
  }

  .field-insight-section {
    padding-bottom: 34px;
  }

  .section--tight-follow {
    padding-top: 16px;
  }

  .section--final-note {
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .notice-box {
    padding: 18px;
    font-size: 14px;
    line-height: 1.6;
  }

  .loop-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 16px;
    min-height: 0;
    padding: 22px;
    align-items: start;
  }

  .loop-card .number {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .split-image img {
    aspect-ratio: 4 / 4.4;
  }

  .product-hero {
    padding-top: 96px;
  }

  .product-hero-copy h1 {
    font-size: clamp(32px, 9.4vw, 42px);
    line-height: 1.14;
  }

  .product-hero-visual img {
    aspect-ratio: 4 / 3.4;
    padding: 18px;
  }

  .product-badge-list {
    gap: 8px;
    margin-top: 22px;
  }

  .product-badge-list span {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .feature-card,
  .usage-steps article,
  .product-summary-card,
  .mode-card,
  .compact-step-card {
    min-height: 0;
    padding: 22px;
  }

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

  .usage-steps article {
    padding: 18px 14px;
  }

  .usage-steps span {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .usage-steps h3 {
    font-size: 16px;
    line-height: 1.32;
  }

  .usage-steps p {
    font-size: 13px;
    line-height: 1.5;
  }

  .product-summary-grid,
  .mode-guide-layout,
  .compact-step-grid {
    gap: 12px;
  }

  .product-summary-card,
  .mode-card,
  .compact-step-card {
    padding: 18px 14px;
  }

  .product-summary-card:nth-child(5),
  .mode-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .compact-step-card h3 {
    font-size: 16px;
    line-height: 1.32;
  }

  .compact-step-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .remote-guide-panel {
    gap: 16px;
    padding: 20px;
    margin-top: 18px;
  }

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

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

  .remote-command-grid div {
    padding: 12px 10px;
  }

  .remote-command-grid dt {
    font-size: 13px;
  }

  .remote-command-grid dd {
    font-size: 12.5px;
  }

  .remote-guide-panel h3,
  .posture-caution-card h3 {
    font-size: 19px;
  }

  .posture-layout {
    gap: 12px;
  }

  .posture-caution-card {
    padding: 18px;
  }

  .product-summary-card h3,
  .mode-card h3 {
    font-size: 17px;
  }

  .product-summary-card p,
  .mode-card p {
    line-height: 1.58;
  }

  .detail-guide-image-wrap {
    margin-top: 26px;
    border-radius: 18px;
  }

  .guide-download-note {
    padding: 14px 16px;
    text-align: left;
  }

  .product-info-table div {
    grid-template-columns: 1fr;
  }

  .product-info-table strong,
  .product-info-table span {
    padding: 15px 18px;
  }

  .product-info-table strong {
    padding-bottom: 8px;
  }

  .product-info-table span {
    padding-top: 8px;
  }

  .safety-list li {
    padding: 16px 16px 16px 44px;
  }

  .care-loop-visual img,
  .clinic-trust-visual img,
  .partner-card--wide img,
  .report-preview-image img,
  .collaboration-section .split-image img {
    aspect-ratio: 4 / 3.3;
    min-height: 0;
  }

  .partner-card--wide img {
    height: 220px;
  }

  .partner-profile-card {
    gap: 12px;
    padding: 16px;
  }

  .partner-profile-card img {
    width: 76px;
    height: 76px;
  }

  .partner-profile-card strong,
  .partner-role-card strong {
    font-size: 13px;
  }

  .partner-profile-card p,
  .partner-role-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .partner-tags {
    margin-top: 10px;
    gap: 6px;
  }

  .partner-tags li {
    padding: 5px 8px;
    font-size: 11px;
  }

  .product-card > div,
  .partner-card--wide > div {
    padding: 22px;
  }

  .team-title {
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: -0.02em;
  }

  .why-now-section .section-head {
    margin-bottom: 24px;
  }

  .brand-vision-card {
    padding: 28px;
  }

  .brand-vision-card img {
    max-height: 220px;
  }

  .phone-card {
    padding: 24px;
    border-radius: 26px;
  }

  .contact-panel {
    gap: 30px;
    padding: 36px 22px;
  }

  .site-footer {
    padding: 42px 20px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-company div {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 8px;
  }

  .footer-company dl {
    gap: 6px;
  }

  .footer-company dt,
  .footer-company dd {
    font-size: 12.5px;
    line-height: 1.5;
  }

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

  .footer-links a,
  .footer-legal a {
    width: 100%;
    justify-content: center;
    min-height: 36px;
    padding-inline: 10px;
  }

  .footer-links h2,
  .footer-legal h2 {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 24px;
  }
}
/* Product detail page */
.product-page {
  overflow-x: hidden;
}

.product-page .section {
  word-break: keep-all;
}

.product-subtitle {
  margin: 16px 0 0;
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.28;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.product-feature-grid--hero {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.product-feature-card,
.product-step-card {
  border: 1px solid rgba(234, 222, 216, 0.9);
  border-radius: 20px;
  background: rgba(255, 250, 244, 0.86);
  box-shadow: 0 14px 34px rgba(70, 35, 30, 0.055);
}

.product-feature-card {
  padding: 20px 18px;
  min-height: 132px;
}

.product-feature-card span,
.product-step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.product-feature-card h3,
.product-step-card h3 {
  margin: 14px 0 8px;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.32;
}

.product-feature-card p,
.product-step-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
}

.product-benefit-grid,
.product-target-grid {
  display: grid;
  gap: 16px;
}

.product-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.product-benefit-card,
.product-target-card {
  border: 1px solid rgba(234, 222, 216, 0.9);
  border-radius: 20px;
  background: rgba(255, 250, 244, 0.88);
  box-shadow: 0 14px 34px rgba(70, 35, 30, 0.05);
}

.product-benefit-card {
  padding: 22px;
}

.product-target-card {
  padding: 22px 20px;
}

.product-benefit-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
}

.product-benefit-card h3,
.product-target-card h3 {
  margin: 14px 0 8px;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.32;
}

.product-target-card h3 {
  margin-top: 0;
}

.product-benefit-card p,
.product-target-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.56;
}

.product-structure-section,
.product-care-loop-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.product-structure-copy h2,
.product-care-loop-copy h2 {
  margin: 10px 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.product-structure-copy p,
.product-care-loop-copy p {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.72;
}

.product-structure-visuals,
.product-care-loop-visuals {
  display: grid;
  gap: 14px;
}

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

.product-care-loop-visuals {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.product-structure-visuals img,
.product-care-loop-visuals img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(234, 222, 216, 0.86);
  border-radius: 22px;
  background: var(--color-surface);
  box-shadow: 0 12px 28px rgba(70, 35, 30, 0.045);
}

.product-compare-table {
  overflow: hidden;
  border: 1px solid rgba(234, 222, 216, 0.9);
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 14px 34px rgba(70, 35, 30, 0.05);
}

.product-compare-row {
  display: grid;
  grid-template-columns: 0.85fr repeat(3, 1fr);
  border-bottom: 1px solid rgba(234, 222, 216, 0.82);
}

.product-compare-row:last-child {
  border-bottom: 0;
}

.product-compare-row strong,
.product-compare-row span {
  padding: 18px 16px;
  border-right: 1px solid rgba(234, 222, 216, 0.72);
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-compare-row strong:last-child,
.product-compare-row span:last-child {
  border-right: 0;
}

.product-compare-row--head strong {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 800;
}

.product-compare-row span:first-child {
  color: var(--color-text);
  font-weight: 800;
}

.product-compare-row span:last-child {
  color: var(--color-primary-dark);
  font-weight: 800;
}

.product-split-section,
.product-info-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 52px;
  align-items: center;
}

.product-split-image,
.product-info-visual,
.product-guide-image,
.detail-guide-image-wrap {
  border: 1px solid rgba(234, 222, 216, 0.9);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.product-split-image,
.product-info-visual {
  overflow: hidden;
  border-radius: 28px;
}

.product-split-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.product-split-copy h2,
.section-header--left h2 {
  margin-top: 10px;
}

.product-guide-section .section-header {
  margin-bottom: 28px;
}

.product-guide-image {
  display: block;
  width: min(100%, 1040px);
  max-height: 780px;
  margin: 0 auto 26px;
  border-radius: 24px;
  object-fit: contain;
}

.product-step-grid,
.remote-guide-grid {
  display: grid;
  gap: 16px;
}

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

.product-step-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.product-step-card {
  padding: 20px;
  min-height: 132px;
}

.remote-guide-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: start;
}

.remote-guide-grid .product-guide-image {
  margin: 0;
}

.product-note-card,
.product-mini-list,
.product-caution-card {
  border: 1px solid rgba(185, 139, 114, 0.24);
  background: rgba(255, 250, 244, 0.9);
  color: var(--color-muted);
}

.product-note-card {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 18px;
}

.product-note-card p {
  margin: 0;
  line-height: 1.6;
}

.product-note-card p + p {
  margin-top: 6px;
}

.product-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
}

.product-mini-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.product-info-panel {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
}

.product-info-visual {
  padding: 28px;
}

.product-info-visual img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.section-header--left {
  max-width: 100%;
  margin: 0 0 24px;
  text-align: left;
}

.product-caution-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 28px;
  border-radius: 24px;
}

.product-caution-card p {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: var(--color-muted);
  line-height: 1.72;
}

.product-caution-card p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.product-caution-card p + p {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .product-feature-grid--hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .product-split-section,
  .product-info-panel,
  .remote-guide-grid,
  .product-structure-section,
  .product-care-loop-section {
    grid-template-columns: 1fr;
  }

  .product-care-loop-visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .product-page .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .product-hero {
    padding-top: 96px;
  }

  .product-hero-grid {
    gap: 24px;
  }

  .product-hero-visual {
    order: 0;
    border-radius: 22px;
  }

  .product-hero-visual img {
    aspect-ratio: 4 / 3.25;
    padding: 12px;
    object-fit: contain;
  }

  .product-subtitle {
    font-size: 22px;
    line-height: 1.34;
  }

  .product-feature-grid--hero,
  .product-benefit-grid,
  .product-target-grid,
  .product-step-grid,
  .product-step-grid--compact,
  .product-step-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-feature-grid--hero {
    margin-top: 24px;
  }

  .product-feature-card,
  .product-step-card,
  .product-benefit-card,
  .product-target-card {
    min-height: 112px;
    padding: 14px 12px;
    border-radius: 16px;
  }

  .product-feature-card span,
  .product-step-card span,
  .product-benefit-card span {
    min-width: 30px;
    height: 30px;
    padding-inline: 8px;
    font-size: 12px;
  }

  .product-feature-card h3,
  .product-step-card h3,
  .product-benefit-card h3,
  .product-target-card h3 {
    margin: 10px 0 6px;
    font-size: 15px;
    line-height: 1.32;
  }

  .product-feature-card p,
  .product-step-card p,
  .product-benefit-card p,
  .product-target-card p {
    font-size: 12.8px;
    line-height: 1.48;
  }

  .product-split-section,
  .remote-guide-grid,
  .product-info-panel,
  .product-structure-section,
  .product-care-loop-section {
    gap: 22px;
  }

  .product-structure-copy h2,
  .product-care-loop-copy h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .product-structure-copy p,
  .product-care-loop-copy p {
    font-size: 15px;
    line-height: 1.65;
  }

  .product-structure-visuals,
  .product-care-loop-visuals {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-structure-visuals img,
  .product-care-loop-visuals img {
    border-radius: 18px;
  }

  .product-compare-table {
    display: grid;
    gap: 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .product-compare-row {
    grid-template-columns: 1fr;
    border: 1px solid rgba(234, 222, 216, 0.9);
    border-radius: 16px;
    background: rgba(255, 250, 244, 0.9);
    overflow: hidden;
  }

  .product-compare-row--head {
    display: none;
  }

  .product-compare-row span {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 10px;
    padding: 10px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(234, 222, 216, 0.72);
    font-size: 12.8px;
  }

  .product-compare-row span:last-child {
    border-bottom: 0;
  }

  .product-compare-row span:nth-child(1)::before { content: "구분"; }
  .product-compare-row span:nth-child(2)::before { content: "단순 수동형"; }
  .product-compare-row span:nth-child(3)::before { content: "단순 EMS"; }
  .product-compare-row span:nth-child(4)::before { content: "밤실"; }

  .product-compare-row span::before {
    color: var(--color-primary-dark);
    font-weight: 800;
  }

  .product-split-image,
  .product-info-visual {
    border-radius: 20px;
  }

  .product-split-image img {
    aspect-ratio: 4 / 3.1;
  }

  .product-guide-section .section-header {
    margin-bottom: 20px;
  }

  .product-guide-image {
    width: 100%;
    max-height: none;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .product-note-card,
  .product-caution-card {
    padding: 16px;
    border-radius: 16px;
  }

  .product-mini-list {
    gap: 8px;
    padding: 12px;
  }

  .product-mini-list span {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 12.5px;
  }

  .product-info-visual {
    padding: 18px;
  }

  .section-header--left {
    text-align: center;
  }
}
/* EMS final detail page */
.product-detail-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 243, 243, 0.72), transparent 34%),
    var(--color-bg);
}

.detail-product-hero {
  padding-top: 126px;
  padding-bottom: 54px;
}

.detail-product-intro,
.detail-section-copy {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
  word-break: keep-all;
}

.detail-product-intro h1,
.detail-section-copy h2 {
  margin: 8px 0 14px;
  color: var(--color-text);
  letter-spacing: 0;
}

.detail-product-intro h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.06;
}

.detail-section-copy h2 {
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.18;
}

.detail-product-intro p:not(.eyebrow),
.detail-section-copy p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 760px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.72;
}

.detail-image-frame {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(234, 222, 216, 0.46);
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.42);
  box-shadow: 0 14px 34px rgba(70, 35, 30, 0.045);
  overflow: hidden;
}

.detail-image-frame--hero {
  width: min(100%, 1280px);
}

.detail-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.detail-product-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.detail-product-section.section--surface {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.72), rgba(248, 243, 236, 0.88));
}

.product-detail-note {
  padding-top: 44px;
  padding-bottom: 72px;
}

.product-detail-note p {
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 26px;
  border: 1px solid rgba(185, 139, 114, 0.24);
  border-radius: 20px;
  background: rgba(255, 250, 244, 0.78);
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.72;
  text-align: center;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .detail-product-hero {
    padding-top: 98px;
    padding-bottom: 38px;
  }

  .detail-product-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .detail-product-intro,
  .detail-section-copy {
    width: 100%;
    margin-bottom: 18px;
    text-align: left;
  }

  .detail-product-intro h1 {
    font-size: clamp(25px, 6.6vw, 32px);
    line-height: 1.08;
    white-space: nowrap;
  }

  .detail-section-copy h2 {
    font-size: clamp(23px, 6.1vw, 30px);
    line-height: 1.12;
    white-space: nowrap;
  }

  .detail-product-intro p:not(.eyebrow),
  .detail-section-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.62;
  }

  .detail-image-frame,
  .detail-image-frame--hero {
    position: relative;
    left: 50%;
    width: calc(100vw - 24px);
    max-width: none;
    border-radius: 18px;
    transform: translateX(-50%);
  }

  .product-detail-note {
    padding-top: 30px;
    padding-bottom: 56px;
  }

  .product-detail-note p {
    padding: 18px;
    font-size: 14px;
    text-align: left;
  }
}
