@charset "UTF-8";
/* ==========================================================================
   LITING PLASTIC SURGERY — MINI LIFTING LANDING
   Design concept ref. daesangwellife.com
   - Clean white base / violet accent (liting.co.kr tone) / generous whitespace
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. TOKENS
   -------------------------------------------------------------------------- */
:root {
  --white: #ffffff;
  --soft: #f9f7ff;
  --tint: #f0ebff;
  --line: #e6e6e6;
  --line-2: #d3d3d6;

  --ink: #161718;
  --ink-2: #474a4d;
  --ink-3: #777c81;
  --ink-4: #a9adb1;

  --pt: #713fff;
  --pt-dp: #5726e6;
  --pt-lt: #f0ebff;

  --dark: #10003d;
  --dark-2: #1b0a52;
  --dark-line: rgba(255, 255, 255, .12);

  --kr: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Malgun Gothic", sans-serif;
  --en: "Montserrat", "Noto Sans KR", sans-serif;
  --pre: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Noto Sans KR", sans-serif;

  --wrap: 1240px;
  --gut: 24px;
  --pad-y: 140px;
  --hd-h: 80px;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

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

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--hd-h);
}

body {
  margin: 0;
  font-family: var(--kr);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  background: var(--white);
  letter-spacing: -.02em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

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

table {
  border-collapse: collapse;
  width: 100%;
}

em,
cite {
  font-style: normal;
}

strong,
b {
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* hidden 속성이 항상 이기도록 (모바일 메뉴 · FAQ 패널 등) */
[hidden] {
  display: none !important;
}

/* --------------------------------------------------------------------------
   03. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
}

.container--narrow {
  max-width: 900px;
}

.sec {
  position: relative;
  padding: var(--pad-y) 0;
}

.sec--soft {
  background: var(--soft);
}

.sec--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, .74);
}

.sec--doctor {
  background: linear-gradient(180deg, var(--white) 0%, var(--tint) 100%);
}

.sec--cta {
  background: var(--dark-2);
  color: rgba(255, 255, 255, .74);
}

/* S07 — 다크 배경 위 배경 이미지 (알파 10%) */
.sec--bg07 {
  overflow: hidden;
}

.sec--bg07::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../img/liting07_bg.webp") 50% 50% / cover no-repeat;
  opacity: .1;
}

.sec--bg07>.container {
  position: relative;
  z-index: 1;
}

.tx-accent {
  color: var(--pt);
}

.sec--dark .tx-accent,
.sec--cta .tx-accent {
  color: #bba3ff;
}

/* PC 전용 줄바꿈 — 모바일에서는 문장이 자연스럽게 흐르도록 해제 */
/* PC 전용 */
.br-pc {
  display: inline;
}

/* 모바일 전용 */
.br-mo {
  display: none;
}


@media (max-width: 768px) {
  .br-pc {
    display: none;
  }

  .br-mo {
    display: inline;
  }
}
/* section header ---------------------------------------------------------- */
.sh {
  text-align: center;
  margin-bottom: 72px;
}

.sh__num {
  font-family: var(--en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--pt);
  margin-bottom: 20px;
}

.sh__title {
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -.035em;
}

.sh__lead {
  margin-top: 22px;
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-3);
}

.sh--light .sh__title {
  color: #fff;
}

.sh--light .sh__lead {
  color: rgba(255, 255, 255, .6);
}

.sh--light .sh__num {
  color: #bba3ff;
}

.sh__sub {
  margin: 104px 0 48px;
  text-align: center;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.035em;
  color: var(--ink);
}

.disclaimer {
  margin-top: 48px;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-4);
}

.disclaimer--light {
  color: rgba(255, 255, 255, .4);
}

.disclaimer--left {
  text-align: left;
  margin-top: 28px;
}

.quote {
  margin: 36px 0 0;
  padding: 0 0 0 26px;
  /* 세로 패딩 0 — 보라색 라인이 글줄 높이와 정확히 일치 */
  border-left: 2px solid var(--pt);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   04. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.02em;
  transition: all .3s var(--ease);
  white-space: nowrap;
}

.btn--fill {
  background: var(--pt);
  color: #fff;
}

.btn--fill:hover {
  background: var(--pt-dp);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(87, 38, 230, .25);
}

.btn--line {
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: rgba(255, 255, 255, .6);
}

.btn--line:hover {
  border-color: var(--pt);
  color: var(--pt);
}

.sec--dark .btn--line,
.sec--cta .btn--line {
  border-color: var(--dark-line);
  color: #fff;
  background: transparent;
}

.sec--dark .btn--line:hover,
.sec--cta .btn--line:hover {
  border-color: #bba3ff;
  color: #bba3ff;
}

.btn--lg {
  height: 60px;
  padding: 0 38px;
  font-size: 16px;
}

.btn--sm {
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
}

.btn--block {
  display: flex;
  width: 100%;
}

/* --------------------------------------------------------------------------
   05. IMAGE PLACEHOLDER (실사진 교체 영역)
   -------------------------------------------------------------------------- */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(140deg, #f3efff 0%, #e7dfff 55%, #dcd0ff 100%);
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .55) 0 8px, transparent 8px 18px);
}

.ph::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 9px 16px;
  border: 1px solid rgba(22, 23, 24, .16);
  background: rgba(255, 255, 255, .82);
  font-family: var(--en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--ink-3);
  text-align: center;
  white-space: nowrap;
}

/* 실제 이미지가 들어간 경우 — 사선 패턴/라벨 제거 */
.ph.has-img::before,
.ph.has-img::after {
  content: none;
}

.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
}

.sec--dark .ph {
  background: linear-gradient(140deg, #291a5e 0%, #1e0f52 55%, #170a45 100%);
}

.sec--dark .ph::before {
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .07) 0 8px, transparent 8px 18px);
}

.sec--dark .ph::after {
  background: rgba(16, 0, 61, .8);
  border-color: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .5);
}

/* --------------------------------------------------------------------------
   06. REVEAL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: .1s;
}

.reveal[data-delay="2"] {
  transition-delay: .2s;
}

.reveal[data-delay="3"] {
  transition-delay: .3s;
}

.reveal[data-delay="4"] {
  transition-delay: .4s;
}

.reveal[data-delay="5"] {
  transition-delay: .5s;
}

.reveal[data-delay="6"] {
  transition-delay: .6s;
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: .001s !important;
    transition-duration: .001s !important;
  }
}

/* --------------------------------------------------------------------------
   07. HEADER
   -------------------------------------------------------------------------- */
.hd {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--hd-h);
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.hd.is-solid {
  background: rgba(255, 255, 255, .96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(22, 23, 24, .05);
}

/* 메인 비주얼 위에서도 메뉴가 읽히도록 상단에 옅은 화이트 그라데이션 */
.hd::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .6) 60%, rgba(255, 255, 255, 0) 100%);
  transition: opacity .4s var(--ease);
}

.hd.is-solid::before {
  opacity: 0;
}

/* 로고는 좌측 끝, 전화·상담신청은 우측 끝에 붙입니다. */
.hd__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
  width: 100%;
  padding: 0 40px;
}

.gnb {
  margin: 0 auto;
}

.hd__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.hd__logo-en {
  font-family: var(--en);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--ink);
}

.hd__logo-kr {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--ink-3);
}

.gnb {
  display: flex;
  gap: 30px;
}

.gnb__a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 0;
  transition: color .25s;
}

.gnb__a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--pt);
  transition: width .3s var(--ease);
}

.gnb__a:hover {
  color: var(--pt);
}

.gnb__a:hover::after {
  width: 100%;
}

.hd__util {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hd__tel {
  display: inline-flex;
  align-items: center;
  font-family: var(--en);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
}

.hd__burger {
  display: none;
  width: 26px;
  height: 20px;
  position: relative;
}

.hd__burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.6px;
  background: var(--ink);
  transition: all .3s var(--ease);
}

.hd__burger span:nth-child(1) {
  top: 0;
}

.hd__burger span:nth-child(2) {
  top: 9px;
}

.hd__burger span:nth-child(3) {
  top: 18px;
}

.hd__burger.is-on span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hd__burger.is-on span:nth-child(2) {
  opacity: 0;
}

.hd__burger.is-on span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.mnav {
  position: fixed;
  inset: var(--hd-h) 0 0;
  z-index: 199;
  background: #fff;
  padding: 24px var(--gut) 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mnav__list a {
  display: block;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--en);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--ink);
}

.mnav__list a em {
  display: block;
  margin-top: 5px;
  font-family: var(--kr);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: -.02em;
  color: var(--ink-3);
}

.mnav__foot {
  margin-top: auto;
  padding-top: 32px;
  display: grid;
  gap: 10px;
}

/* --------------------------------------------------------------------------
   08. HERO
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--hd-h) + 60px) 0 110px;
  overflow: hidden;
}

/* 배경 롤링 비주얼 */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #f4f0ff;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.4s var(--ease);
  overflow: hidden;
}

.hero__picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  display: block;
}

.hero__slide.is-on {
  opacity: 1;
  animation: heroZoom 8s linear forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

/* 카피 가독성용 스크림 — 좌측은 흰색, 우측으로 갈수록 투명 */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(255, 255, 255, .96) 0%,
      rgba(255, 255, 255, .92) 5%,
      rgba(255, 255, 255, .62) 24%,
      rgba(255, 255, 255, .12) 62%,
      rgba(255, 255, 255, 0) 76%);
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__copy-slider {
  position: relative;
  display: grid;
  align-items: start;
  max-width: 620px;
  min-height: 420px;
}

.hero__copy-item {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__copy-item.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero__copy {
  max-width: 620px;
}

/* 좌우 화살표 */
.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 23, 24, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(6px);
  color: var(--ink-2);
  transition: all .35s var(--ease);
}

.hero__arrow svg {
  width: 22px;
  height: 22px;
}

.hero__arrow:hover {
  background: var(--pt);
  border-color: var(--pt);
  color: #fff;
}

.hero__arrow--prev {
  left: 28px;
}

.hero__arrow--next {
  right: 28px;
}

/* 인디케이터 */
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 34px;
  height: 18px;
  display: grid;
  place-items: center;
}

.hero__dot span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(22, 23, 24, .22);
  transition: background .3s var(--ease);
}

.hero__dot:hover span {
  background: rgba(22, 23, 24, .45);
}

.hero__dot.is-on span {
  background: var(--pt);
}

.hero__eyebrow {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-3);
  letter-spacing: -.01em;
}

.hero__eyebrow p {
  margin: 0;
  padding: 0;
  display: inline;
  font-size: inherit;
  color: inherit;
}

.hero__title {
  margin-top: 14px;
  font-size: clamp(36px, 5.4vw, 66px);
  font-weight: 700;
  line-height: 1.26;
  color: var(--ink);
  letter-spacing: -.04em;
}

/* 메인 비주얼 타이틀 강조 컬러 — 보라 계열로 통일 */
.hero__title font[color="#3498db"],
.hero__title font[color="#3498DB"] {
  color: var(--pt-dp) !important;
}

.hero__title p {
  margin: 0;
  padding: 0;
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.hero__en {
  margin-top: 6px;
  font-family: var(--kr);
  font-size: clamp(36px, 5.4vw, 66px);
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: -.04em;
  color: var(--pt);
}

.hero__desc {
  margin-top: 30px;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-2);
}

.hero__desc p {
  margin: 0 0 8px 0;
  line-height: inherit;
}

.hero__desc p:last-child {
  margin-bottom: 0;
}

.hero__desc strong {
  font-weight: 500;
  color: var(--ink);
}

.hero__brand {
  margin-top: 30px;
}

.hero__brand-line {
  margin-top: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.03em;
}

.hero__keys {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.hero__keys li {
  padding: 8px 15px;
  border: 1px solid rgba(113, 63, 255, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 400;
  color: var(--pt-dp);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.hero__scroll {
  position: absolute;
  right: 44px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll-tx {
  font-family: var(--en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--ink-3);
}

.hero__scroll-bar {
  position: relative;
  width: 1px;
  height: 54px;
  background: var(--line-2);
  overflow: hidden;
}

.hero__scroll-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: -54px;
  width: 1px;
  height: 54px;
  background: var(--pt);
  animation: scrollDown 2s var(--ease) infinite;
}

@keyframes scrollDown {
  0% {
    top: -54px;
  }

  100% {
    top: 54px;
  }
}

/* --------------------------------------------------------------------------
   09. SECTION 02 — WHY / SIGNS
   -------------------------------------------------------------------------- */
.why {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.why__visual {
  position: relative;
}

.why__drag {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-3);
}

.why__drag::before {
  content: "↔";
  margin-right: 6px;
  color: var(--pt);
}

.why__text p {
  font-size: 18.5px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--ink);
}

.why__text p+p {
  margin-top: 22px;
}

.why__text .quote {
  font-size: 18.5px;
}

/* 리드 문장 위 큰 영문 헤드 (WHY? · Design · DEEP LIFTING) */
.why__text .why__q,
.vector__text .vector__q,
.smas__text .smas__q {
  margin: 0 0 26px;
  font-family: var(--pre);
  font-weight: 700;
  font-size: clamp(54px, 7vw, 88px);
  line-height: .95;
  letter-spacing: -.045em;
  color: var(--ink);
}

.why__text .why__q span {
  color: var(--pt);
}

.vector__text .vector__q {
  margin-bottom: 22px;
  font-size: clamp(46px, 5.6vw, 72px);
}

.smas__text .smas__q {
  margin-bottom: 24px;
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
}

.signs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.signs__item {
  padding: 38px 22px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-align: center;
  transition: all .35s var(--ease);
}

.signs__item:hover {
  border-color: var(--pt);
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(87, 38, 230, .1);
}

/* 01~05 번호 대신 라인 아이콘 */
.signs__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pt);
}

.signs__ico .ico {
  width: 64px;
  height: 64px;
  stroke-width: 1.2;
  transition: transform .35s var(--ease);
}

.signs__ico .ico__base {
  opacity: .38;
}

.signs__ico .ico__acc {
  stroke-width: 1.45;
}

.signs__item:hover .signs__ico .ico {
  transform: translateY(-2px) scale(1.06);
}

.signs__en {
  margin-top: 18px;
  font-family: var(--en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-3);
  line-height: 1.4;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signs__kr {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  letter-spacing: -.025em;
}

/* --------------------------------------------------------------------------
   10. SECTION 03 — WHAT / FORMULA
   -------------------------------------------------------------------------- */
.what {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.what__p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--ink-2);
}

.what__p+.what__p {
  margin-top: 20px;
}

.what__p strong {
  font-weight: 500;
  color: var(--ink);
}

.formula {
  margin-top: clamp(40px, 8vw, 76px);
  padding: clamp(24px, 5vw, 56px) clamp(10px, 3vw, 40px);
  background: var(--soft);
  border-radius: var(--r-lg);
  text-align: center;
}

.formula__label {
  font-family: var(--en);
  font-size: clamp(30px, 5.4vw, 36px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .32em;
  color: var(--pt);
}

.formula__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.5vw, 24px);
  margin-top: clamp(18px, 3.5vw, 34px);
  flex-wrap: nowrap;
}

.formula__item {
  flex: 1 1 0;
  max-width: clamp(90px, 28vw, 260px);
  min-width: 0;
}

.formula__item p {
  margin-top: clamp(8px, 1.8vw, 20px);
  font-size: clamp(11.5px, 2.4vw, 16.5px);
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: -0.03em;
}

.formula__ico {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.formula__ico .ph--formula {
  aspect-ratio: 96 / 152;
  height: auto;
  border-radius: clamp(8px, 1.8vw, 18px);
  background: #fff;
  transition: transform .35s var(--ease);
}

.formula__ico .ph--formula img {
  object-fit: contain;
  object-position: 50% 50%;
}

.formula__item:hover .ph--formula {
  transform: translateY(-4px);
}

.formula__op {
  font-family: var(--en);
  font-size: clamp(14px, 3.5vw, 38px);
  font-weight: 400;
  line-height: 1;
  color: var(--ink-2);
  flex: 0 0 auto;
}

.formula__eq {
  display: block;
  margin: clamp(18px, 3vw, 34px) auto clamp(12px, 2.5vw, 26px);
  font-family: var(--en);
  font-size: clamp(16px, 3.5vw, 38px);
  font-weight: 400;
  line-height: 1;
  color: var(--ink-2);
}

.formula__result {
  font-size: clamp(14px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
}

/* --------------------------------------------------------------------------
   11. SLIDER (공통)
   -------------------------------------------------------------------------- */
.slider {
  --per: 3;
  --gap: 24px;
  position: relative;
}

.slider__viewport {
  overflow: hidden;
  margin: 0 -4px;
  padding: 0 4px;
}

.slider__track {
  display: flex;
  gap: var(--gap);
  transition: transform .6s var(--ease);
  will-change: transform;
  cursor: grab;
}

.slider__track.is-grab {
  cursor: grabbing;
  transition: none;
}

.slider__slide {
  flex: 0 0 calc((100% - var(--gap) * (var(--per) - 1)) / var(--per));
}

.slider__slide>* {
  height: 100%;
}

.slider__ctrl {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
}

.slider__count {
  font-family: var(--en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--ink-3);
  flex: none;
}

.slider__count [data-cur] {
  color: var(--ink);
  font-weight: 600;
}

.sec--dark .slider__count {
  color: rgba(255, 255, 255, .5);
}

.sec--dark .slider__count [data-cur] {
  color: #fff;
}

.slider__bar {
  flex: 1;
  height: 2px;
  background: var(--line);
  position: relative;
}

.sec--dark .slider__bar {
  background: rgba(255, 255, 255, .14);
}

.slider__bar span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--pt);
  transition: width .5s var(--ease);
}

.slider__btns {
  display: flex;
  gap: 8px;
  flex: none;
}

.sbtn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-2, rgba(0,0,0,0.15));
  border-radius: 50%;
  position: relative;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s var(--ease);
}

.sec--dark .sbtn {
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.sbtn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  display: block;
}

.sbtn--prev::after {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.sbtn--next::after {
  transform: translate(-65%, -50%) rotate(45deg);
}

.sbtn:hover {
  background: var(--pt, #713fff);
  border-color: var(--pt, #713fff);
  color: #ffffff;
  transform: scale(1.06);
}

.sbtn[disabled] {
  opacity: .28;
  pointer-events: none;
}

/* SECTION 04 — point card */
.pcard {
  display: flex;
  flex-direction: column;
  padding: 40px;
  background: var(--dark-2);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-lg);
  height: 100%;
}

.pcard__no {
  font-family: var(--en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  color: #bba3ff;
}

.pcard__ph {
  margin: 28px 0 32px;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
}

.pcard__en {
  font-family: var(--en);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: .02em;
  color: #fff;
  line-height: 1.2;
}

.pcard__sub {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
}

.pcard__body {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, .55);
}

/* SECTION 05 — solution card */
.scard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  transition: all .35s var(--ease);
}

.scard:hover {
  border-color: var(--pt);
  box-shadow: 0 20px 40px rgba(87, 38, 230, .1);
}

.scard__ph {
  position: relative;
  aspect-ratio: 491 / 490;
}

.scard__ph .ph {
  position: absolute;
  inset: 0;
}

.scard__no {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  display: grid;
  place-items: center;
  font-family: var(--en);
  font-size: 13px;
  font-weight: 600;
  color: var(--pt);
}

.scard__body {
  padding: 32px 28px 34px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.scard__kr {
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
}

.scard__tx {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-2);
  flex: 1;
}

.scard__target {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}

.scard__target em {
  font-family: var(--en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--ink-4);
}

.scard__target span {
  font-family: var(--en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--pt);
}

/* --------------------------------------------------------------------------
   12. SECTION 06 — VECTOR
   -------------------------------------------------------------------------- */
.vector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.vector__visual {
  position: relative;
  aspect-ratio: 600 / 665;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.vector__visual .ph {
  position: absolute;
  inset: 0;
}

.vector__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vector__svg .varr path {
  stroke: var(--pt);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  animation: varrIn 3.2s var(--ease) infinite;
}

.vector__svg .varr path:nth-child(1),
.vector__svg .varr path:nth-child(2) {
  animation-delay: 0s;
}

.vector__svg .varr path:nth-child(3),
.vector__svg .varr path:nth-child(4) {
  animation-delay: .25s;
}

.vector__svg .varr path:nth-child(5),
.vector__svg .varr path:nth-child(6) {
  animation-delay: .5s;
}

.vector__svg .varr path:nth-child(7),
.vector__svg .varr path:nth-child(8) {
  animation-delay: .75s;
}

@keyframes varrIn {
  0% {
    opacity: 0;
    transform: translate(-6px, 6px);
  }

  25%,
  70% {
    opacity: 1;
    transform: none;
  }

  100% {
    opacity: 0;
    transform: translate(6px, -6px);
  }
}

.vector__text>p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--ink-2);
}

.vector__text>p+p {
  margin-top: 20px;
}

.vector__text strong {
  font-weight: 500;
  color: var(--ink);
}

.dsteps {
  margin-top: 44px;
  display: grid;
  gap: 2px;
}

.dsteps__item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  background: var(--soft);
  border-radius: var(--r-sm);
  transition: all .3s var(--ease);
}

.dsteps__item:hover {
  background: var(--pt-lt);
  transform: translateX(6px);
}

.dsteps__no {
  flex: none;
  font-family: var(--en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--pt);
  width: 108px;
  white-space: nowrap;
}

.dsteps__kr {
  font-size: 16.5px;
  font-weight: 500;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   13. SECTION 07 — SMAS
   -------------------------------------------------------------------------- */
.smas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.smas__text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(255, 255, 255, .68);
}

.smas__text p+p {
  margin-top: 22px;
}

.smas__text strong {
  font-weight: 500;
  color: #fff;
}

.smas__text strong em {
  display: block;
  margin-top: 4px;
  font-family: var(--en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .45);
}

.layers {
  display: grid;
  gap: 14px;
}

.layers__item {
  position: relative;
  padding: 30px 34px;
  background: var(--dark-2);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-md);
}

.layers__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .2);
}

.layers__item:last-child::after {
  display: none;
}

.layers__item:last-child {
  border-color: rgba(187, 163, 255, .5);
  background: linear-gradient(120deg, rgba(113, 63, 255, .18), rgba(113, 63, 255, .04));
}

.layers__depth {
  font-family: var(--en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .38);
}

.layers__en {
  margin-top: 12px;
  font-family: var(--en);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .05em;
  color: #fff;
}

.layers__kr {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
}

.smas__concl {
  margin-top: 90px;
  text-align: center;
}

.smas__concl-sm {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  color: rgba(255, 255, 255, .5);
}

.smas__concl-lg {
  margin-top: 14px;
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -.035em;
}

/* --------------------------------------------------------------------------
   14. SECTION 08 — COMPARE
   -------------------------------------------------------------------------- */
.cmp__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-lg);
  background: #fff;
}

.cmp__table {
  min-width: 760px;
  font-size: 15px;
}

.cmp__table th,
.cmp__table td {
  padding: 22px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.cmp__table thead th {
  padding: 26px 18px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  background: var(--soft);
  border-bottom: 1px solid var(--line-2);
}

.cmp__table thead th.is-key {
  position: relative;
  background: var(--pt);
  color: #fff;
}

.cmp__flag {
  display: block;
  margin: 0 auto 8px;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  font-family: var(--en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.cmp__table tbody th {
  font-weight: 500;
  color: var(--ink);
  background: var(--soft);
  text-align: center;
}

.cmp__table tbody td {
  font-weight: 300;
  color: var(--ink-2);
}

.cmp__table tbody td.is-key {
  background: var(--pt-lt);
  font-weight: 500;
  color: var(--pt-dp);
}

.cmp__table tbody tr:last-child th,
.cmp__table tbody tr:last-child td {
  border-bottom: 0;
}

.cmp__hint {
  display: none;
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-4);
}

.cmp__concl {
  margin-top: 70px;
  text-align: center;
  padding: 54px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.cmp__concl-lg {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -.035em;
}

.cmp__concl-tx {
  margin-top: 24px;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-2);
}

/* --------------------------------------------------------------------------
   15. SECTION 09 — PROCESS
   -------------------------------------------------------------------------- */
.proc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.proc__item {
  position: relative;
  padding: 38px 30px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: all .35s var(--ease);
}

.proc__item:hover {
  border-color: var(--pt);
  transform: translateY(-4px);
  box-shadow: none;
}

.proc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proc__step {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--pt);
}

.proc__ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pt-lt);
  position: relative;
}

.proc__ico::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-color: var(--pt);
}

.proc__ico--1::after {
  width: 18px;
  height: 18px;
  border: 1.8px solid var(--pt);
  border-radius: 50%;
  box-shadow: 8px 8px 0 -6px var(--pt);
}

.proc__ico--2::after {
  width: 20px;
  height: 20px;
  border-left: 1.8px dashed var(--pt);
  border-top: 1.8px dashed var(--pt);
}

.proc__ico--3::after {
  width: 18px;
  height: 18px;
  border-left: 1.8px solid var(--pt);
  border-top: 1.8px solid var(--pt);
  transform: rotate(45deg) translate(2px, 2px);
}

.proc__ico--4::after {
  width: 18px;
  height: 18px;
  border: 1.8px solid var(--pt);
  border-radius: 3px;
  transform: rotate(45deg);
}

.proc__ico--5::after {
  width: 20px;
  height: 2px;
  background: var(--pt);
  box-shadow: 0 -7px 0 0 var(--pt), 0 7px 0 0 var(--pt);
}

.proc__ico--6::after {
  width: 18px;
  height: 18px;
  border: 1.8px solid var(--pt);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.proc__en {
  margin-top: 26px;
  font-family: var(--en);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
}

.proc__body {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-2);
}

.proc__arrow {
  position: absolute;
  right: -21px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 1.5px solid var(--line-2);
  border-right: 1.5px solid var(--line-2);
  pointer-events: none;
  z-index: 2;
}

.proc__item:nth-child(3n) .proc__arrow {
  display: none;
}

/* --------------------------------------------------------------------------
   16. SECTION 10 — INCISION
   -------------------------------------------------------------------------- */
.inc {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.inc__visual {
  position: relative;
  aspect-ratio: 700 / 880;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.inc__visual .ph {
  position: absolute;
  inset: 0;
}

.inc__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.inc__line {
  stroke: var(--pt);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: incDraw 3.4s var(--ease) infinite;
}

@keyframes incDraw {
  0% {
    stroke-dashoffset: 420;
  }

  40%,
  80% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

.inc__pin circle {
  fill: #fff;
  stroke: var(--pt);
  stroke-width: 2;
  opacity: 0;
  animation: incPin 3.4s var(--ease) infinite;
}

.inc__pin circle:nth-child(2) {
  animation-delay: .2s;
}

.inc__pin circle:nth-child(3) {
  animation-delay: .4s;
}

@keyframes incPin {

  0%,
  30% {
    opacity: 0;
  }

  45%,
  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.inc__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--pt-dp);
}

.inc__lead {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--ink);
  letter-spacing: -.025em;
}

.inc__list {
  margin-top: 40px;
  display: grid;
  gap: 2px;
}

.inc__list li {
  display: flex;
  gap: 24px;
  padding: 26px 28px;
  background: #fff;
  border-radius: var(--r-sm);
}

.inc__no {
  flex: none;
  font-family: var(--en);
  font-size: 20px;
  font-weight: 600;
  color: var(--pt);
  line-height: 1.4;
}

.inc__kr {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
}

.inc__body {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-2);
}

/* --------------------------------------------------------------------------
   17. SECTION 11 — BEFORE & AFTER
   -------------------------------------------------------------------------- */
.ba {
  /* 탭 1칸 높이 → 4칸 스택 높이 → 사진 크기(16:10) 순으로 계산됩니다 */
  --tab-h: 79px;
  --stack-h: calc(var(--tab-h) * 4 + 24px);

  display: grid;
  grid-template-columns: 280px auto;
  grid-template-rows: auto auto;
  column-gap: 40px;
  justify-content: center;
}

.ba__tabs {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-auto-rows: var(--tab-h);
  gap: 8px;
}

/* 사진 하단이 마지막(50대) 박스 하단과 정확히 맞음 */
.ba>.bacomp {
  grid-column: 2;
  grid-row: 1;
  height: var(--stack-h);
  width: calc(var(--stack-h) * 1.6);
}

.ba__cap {
  grid-column: 2;
  grid-row: 2;
}

.ba__tab {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  width: 100%;
  text-align: left;
  padding: 10px 22px;
  border: 1px solid var(--dark-line);
  border-radius: var(--r-md);
  transition: all .3s var(--ease);
}

.ba__tab em {
  font-family: var(--kr);
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -.01em;
  color: rgba(255, 255, 255, .45);
}

.ba__tab span {
  font-size: 15.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, .78);
}

.ba__tab:hover {
  border-color: rgba(187, 163, 255, .5);
}

.ba__tab.is-on {
  background: var(--pt);
  border-color: var(--pt);
}

.ba__tab.is-on em {
  color: rgba(255, 255, 255, .75);
}

.ba__tab.is-on span {
  color: #fff;
  font-weight: 500;
}


.bacomp {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
  user-select: none;
}

/* S02 처짐 비교 — 실사진(970x811) 비율 + 한글 라벨 */
.bacomp--why {
  aspect-ratio: 970 / 811;
  box-shadow: 0 20px 44px rgba(22, 23, 24, .1);
}

.bacomp__pane {
  position: absolute;
  inset: 0;
}

.bacomp__pane--before {
  clip-path: inset(0 50% 0 0);
}

.bacomp__pane .ph {
  position: absolute;
  inset: 0;
}

.bacomp__pane--before .ph {
  filter: saturate(.8) brightness(.96);
}

.bacomp--why .bacomp__pane--before .ph {
  filter: none;
}

/* 실사진: 좌우 톤 차이로 경계선이 보이지 않도록 */
/* 좌우 라벨이 겹치지 않도록 (실사진 교체 시 무관) */
.bacomp__pane--before .ph::after {
  left: 25%;
}

.bacomp__pane--after .ph::after {
  left: 75%;
}

.bacomp__tag {
  position: absolute;
  top: 16px;
  padding: 7px 15px;
  border-radius: 999px;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  color: #fff;
}

.bacomp__tag--b {
  left: 16px;
  background: rgba(22, 23, 24, .68);
}

.bacomp__tag--a {
  right: 16px;
  background: var(--pt);
}

.bacomp__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  pointer-events: none;
}

.bacomp__line {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .9);
}

.bacomp__grip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
}

.bacomp__grip::before,
.bacomp__grip::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1.8px solid var(--ink);
  border-right: 1.8px solid var(--ink);
}

.bacomp__grip::before {
  left: 13px;
  transform: translateY(-50%) rotate(-135deg);
}

.bacomp__grip::after {
  right: 13px;
  transform: translateY(-50%) rotate(45deg);
}

.bacomp__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

.ba__cap {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: 22px;
}

.ba__cap-kr {
  font-size: 19px;
  font-weight: 500;
  color: #fff;
}

.ba__cap-period {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .5);
}

.ba__notes {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
}

.ba__notes li {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .4);
}

/* --------------------------------------------------------------------------
   18. SECTION 12 — DOCTOR
   -------------------------------------------------------------------------- */
.doc {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.doc__visual {
  position: relative;
}

.doc__visual .ph {
  aspect-ratio: 4431 / 4928;
  border-radius: var(--r-lg);
}

.doc__plate {
  margin: -60px 24px 0 24px;
  position: relative;
  padding: 30px 32px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: 0 20px 44px rgba(22, 23, 24, .1);
}

.doc__plate-en {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--pt);
}

.doc__plate-kr {
  margin-top: 12px;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
}

.doc__plate-sub {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-3);
}

.doc__intro {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--ink);
  letter-spacing: -.025em;
}

.doc__block {
  margin-top: 44px;
}

.doc__label {
  font-family: var(--en);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .0em;
  color: var(--pt);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}

.doc__list {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.doc__list li {
  position: relative;
  padding-left: 15px;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink-2);
}

.doc__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-4);
}

.doc__list li em {
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--ink-3);
}

.doc__list--row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.doc__msg {
  margin: 50px 0 0;
  padding: 38px 40px;
  background: #fff;
  border-left: 3px solid var(--pt);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: 0 14px 34px rgba(22, 23, 24, .06);
}

.doc__msg p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--ink);
  letter-spacing: -.03em;
}

.doc__msg cite {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-3);
}

.doc__body .btn {
  margin-top: 38px;
}

.doc__video {
  margin-top: 80px;
}

.doc__video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 20px 44px rgba(22, 23, 24, .1);
}

.doc__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   19. SECTION 13 — CHECK LIST
   -------------------------------------------------------------------------- */
.chk {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.chk__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all .35s var(--ease);
}

.chk__item:hover {
  border-color: var(--pt);
  background: var(--pt-lt);
}

.chk__box {
  flex: none;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--line-2);
  border-radius: 50%;
  position: relative;
  transition: all .3s var(--ease);
}

.chk__box::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 6px;
  height: 11px;
  border-right: 1.8px solid #fff;
  border-bottom: 1.8px solid #fff;
  transform: rotate(42deg) scale(.4);
  opacity: 0;
  transition: all .3s var(--ease);
}

.chk__item:hover .chk__box {
  background: var(--pt);
  border-color: var(--pt);
}

.chk__item:hover .chk__box::after {
  opacity: 1;
  transform: rotate(42deg) scale(1);
}

.chk__no {
  flex: none;
  font-family: var(--en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--pt);
}

.chk__tx {
  font-size: 16.5px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.025em;
}

.chk__cta {
  margin-top: 56px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   20. SECTION 14 — FAQ
   -------------------------------------------------------------------------- */
.faq {
  border-top: 1px solid var(--line-2);
}

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

.faq__q {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 30px 4px;
  text-align: left;
}

.faq__mark {
  flex: none;
  font-family: var(--en);
  font-size: 17px;
  font-weight: 600;
  color: var(--pt);
  width: 22px;
}

.faq__mark--a {
  color: var(--ink-4);
}

.faq__qtx {
  flex: 1;
  font-size: 17.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.03em;
}

.faq__toggle {
  flex: none;
  position: relative;
  width: 18px;
  height: 18px;
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--ink-3);
  transition: all .3s var(--ease);
}

.faq__toggle::before {
  width: 18px;
  height: 1.5px;
}

.faq__toggle::after {
  width: 1.5px;
  height: 18px;
}

.faq__q[aria-expanded="true"] .faq__qtx {
  color: var(--pt);
}

.faq__q[aria-expanded="true"] .faq__toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__a-inner {
  display: flex;
  gap: 20px;
  padding: 4px 4px 32px;
}

.faq__a-inner p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-2);
}

.faq__more {
  margin-top: 60px;
  text-align: center;
}

.faq__more p {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-3);
  margin-bottom: 18px;
}

.faq__more .btn--line {
  background: #ffffff;
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 0 32px;
  height: 50px;
  box-shadow: none !important;
}

.faq__more .btn--line:hover {
  border-color: var(--pt);
  color: var(--pt);
  background: #ffffff;
  box-shadow: none !important;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   21. SECTION 15 — CTA / FORM
   -------------------------------------------------------------------------- */
.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* grid item 기본 min-width:auto 때문에 긴 영문이 칸을 밀어내는 것 방지 */
.cta > * {
  min-width: 0;
}

.cta__eyebrow {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
}

.cta__title {
  margin-top: 16px;
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -.04em;
}

.cta__brand {
  margin-top: 26px;
  font-family: var(--en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .32em;
  color: #bba3ff;
}

.cta__desc {
  margin-top: 30px;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, .62);
}

.cta__tel {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--dark-line);
  text-decoration: none;
  transition: opacity .25s ease;
}

.cta__tel:hover {
  opacity: .85;
}

.cta__tel span {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
}

.cta__tel strong {
  font-family: var(--en);
  font-size: clamp(26px, 3.6vw, 28px);
  font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
}

.frm {
  padding: 46px 44px 40px;
  background: #fff;
  border-radius: var(--r-lg);
  color: var(--ink-2);
}

.frm__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
  margin-bottom: 28px;
}

.frm__row+.frm__row {
  margin-top: 20px;
}

.frm__label {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.frm__label i {
  color: var(--pt);
  font-style: normal;
}

.frm__input {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: #fff;
  font-size: 15px;
  transition: border-color .25s;
}

.frm__input::placeholder {
  color: var(--ink-4);
}

.frm__input:focus {
  outline: none;
  border-color: var(--pt);
}

.frm__input.is-err {
  border-color: #c2503f;
  background: #fdf5f4;
}

/* 연락처 — 국가번호 + 번호 2단 */
.frm__tel {
  display: flex;
  gap: 8px;
}

.frm__tel .frm__input {
  flex: 1 1 auto;
  min-width: 0;
}

.frm__tel .frm__input--cc {
  flex: 0 0 88px;
  padding: 0 12px;
  text-align: center;
}

.frm__select {
  position: relative;
}

.frm__select::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.6px solid var(--ink-3);
  border-bottom: 1.6px solid var(--ink-3);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.frm__select select {
  width: 100%;
  height: 52px;
  padding: 0 44px 0 18px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: #fff;
  font-size: 15px;
  appearance: none;
  cursor: pointer;
}

.frm__select select:focus {
  outline: none;
  border-color: var(--pt);
}

.frm__radios {
  display: flex;
  gap: 10px;
}

.frm__radio {
  flex: 1;
  position: relative;
}

.frm__radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.frm__radio span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  font-size: 14.5px;
  color: var(--ink-3);
  cursor: pointer;
  transition: all .25s;
  text-align: center;
  padding: 0 8px;
}

.frm__radio input:checked+span {
  border-color: var(--pt);
  background: var(--pt-lt);
  color: var(--pt-dp);
  font-weight: 500;
}

.frm__radio input:focus-visible+span {
  outline: 2px solid var(--pt);
  outline-offset: 2px;
}

.frm__agree {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.frm__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
}

.frm__check input {
  width: 18px;
  height: 18px;
  accent-color: var(--pt);
  flex: none;
}

.frm__check b {
  font-weight: 500;
  color: var(--ink);
}

.frm__view {
  flex: none;
  white-space: nowrap;
  margin-left: auto;
  font-size: 12.5px;
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.frm__error {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: #fdf1ef;
  font-size: 13.5px;
  color: #b0432f;
}

.frm__submit {
  margin-top: 24px;
}

/* --------------------------------------------------------------------------
   22. FOOTER
   -------------------------------------------------------------------------- */
.ft {
  background: #0d0330;
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  font-weight: 300;
}

.ft__main {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  padding-top: 80px;
  padding-bottom: 60px;
}

.ft__logo-en {
  font-family: var(--en);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .18em;
  color: #fff;
}

.ft__logo-sub {
  margin-top: 8px;
  font-family: var(--en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .28em;
  color: rgba(255, 255, 255, .38);
}

.ft__name {
  margin-top: 22px;
  font-size: 15px;
  color: rgba(255, 255, 255, .72);
}

.ft__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.ft__col dt {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 16px;
}

.ft__col dd {
  line-height: 1.85;
}

.ft__col dd span {
  display: inline-block;
  width: 88px;
  color: rgba(255, 255, 255, .38);
}

.ft__col dd a:hover {
  color: #bba3ff;
}

.ft__col dd.is-off {
  color: rgba(255, 255, 255, .32);
}

.ft__policy {
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ft__policy .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.ft__policy a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
}

.ft__policy a:hover {
  color: #fff;
}

.ft__partner .container {
  padding-top: 44px;
  padding-bottom: 44px;
}

.ft__partner-label {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .5);
}

.ft__partner-desc {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .38);
}

.ft__partner-name {
  margin-top: 8px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}

.ft__partner-info {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  font-size: 13.5px;
}

.ft__partner-info em {
  color: rgba(255, 255, 255, .3);
  font-size: 12px;
}

.ft__partner-info a:hover {
  color: #bba3ff;
}

.ft__note {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .32);
}

.ft__legal {
  background: #08021f;
}

.ft__legal .container {
  padding-top: 26px;
  padding-bottom: 34px;
}

.ft__legal-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 14px;
}

.ft__legal p {
  font-size: 12.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .32);
}

.ft__legal p+p {
  margin-top: 10px;
}

.ft__copy {
  font-family: var(--en);
  font-size: 11px !important;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .25) !important;
}

/* --------------------------------------------------------------------------
   23. QUICK BAR / TO TOP
   -------------------------------------------------------------------------- */
.quick {
  display: none;
}

.quick__ico {
  width: 20px;
  height: 20px;
  position: relative;
  flex: none;
}

.quick__ico--form {
  border: 1.8px solid currentColor;
  border-radius: 3px;
}

.quick__ico--form::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 10px;
  height: 1.6px;
  background: currentColor;
  box-shadow: 0 4px 0 0 currentColor;
}

/* 우측 하단 플로팅 독: 채널 아이콘 + 맨 위로 버튼 */
.fdock {
  position: fixed;
  right: 28px;
  bottom: 34px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fdock>*+* {
  margin-top: 10px;
}

.fdock__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(16, 0, 61, .18);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.fdock__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 0, 61, .28);
}

.fdock__btn--bot {
  background: var(--pt);
  color: #fff;
}

.fdock__btn--wa {
  background: #25d366;
  color: #fff;
}

.fdock__btn--kko {
  background: #fee500;
  color: #3c1e1e;
}

.chico {
  display: block;
  width: 24px;
  height: 24px;
}

.chico svg {
  display: block;
  width: 100%;
  height: 100%;
}

.fdock__tip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 6px 10px;
  border-radius: var(--r-sm);
  background: rgba(22, 23, 24, .86);
  color: #fff;
  font-size: 12.5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .25s var(--ease);
}

.fdock__btn:hover .fdock__tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

.totop {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(22, 23, 24, .72);
  backdrop-filter: blur(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s var(--ease);
}

/* 노출 전에는 높이까지 접어 채널 아이콘이 아래로 내려오도록 */
.totop:not(.is-on) {
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(12px);
}

.fdock>.totop:not(.is-on) {
  margin-top: 0;
}

.totop.is-on {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.totop:hover {
  background: var(--pt);
}

.totop span {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 1.8px solid #fff;
  border-right: 1.8px solid #fff;
  transform: rotate(-45deg) translate(-2px, 2px);
}

/* --------------------------------------------------------------------------
   24. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .gnb {
    gap: 20px;
  }

  .gnb__a {
    font-size: 13.5px;
  }
}

@media (max-width: 1024px) {
  :root {
    --pad-y: 100px;
    --hd-h: 66px;
  }

  .gnb,
  .hd__tel,
  .hd__util .btn {
    display: none;
  }

  .hd__burger {
    display: block;
  }

  .hd__inner {
    padding: 0 var(--gut);
  }

  .hd {
    background: rgba(255, 255, 255, .96);
    border-bottom-color: var(--line);
  }

  .hd__util {
    margin-left: auto;
  }

  .hero {
    min-height: 76svh;
    padding: calc(var(--hd-h) + 56px) 0 96px;
  }

  .hero__arrow {
    width: 40px;
    height: 40px;
  }

  .hero__arrow svg {
    width: 18px;
    height: 18px;
  }

  .hero__arrow--prev {
    left: 10px;
  }

  .hero__arrow--next {
    right: 10px;
  }

  .hero__scroll {
    display: none;
  }

  .hero__slide {
    background-position: 50% 28%;
  }

  .hero__scrim {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, .92) 0%,
        rgba(255, 255, 255, .70) 28%,
        rgba(255, 255, 255, .22) 48%,
        rgba(255, 255, 255, 0) 64%);
  }

  .why,
  .vector,
  .smas,
  .inc,
  .doc,
  .cta {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .why__visual,
  .vector__visual,
  .inc__visual {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }

  .doc__visual {
    max-width: 440px;
  }

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

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

  .proc__item:nth-child(3n) .proc__arrow {
    display: block;
  }

  .proc__item:nth-child(2n) .proc__arrow {
    display: none;
  }

  .ba {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 24px;
    justify-content: stretch;
  }

  .ba__tabs {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .ba>.bacomp {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .ba__cap {
    grid-column: 1;
    grid-row: 3;
  }

  .ba__cap {
    margin-top: 0;
  }

  .ba__tab {
    flex: 0 0 auto;
    min-width: 170px;
    height: auto;
  }

  .sh__sub {
    margin-top: 76px;
  }
}

@media (max-width: 767px) {
  /* 메인 타이틀 + 상세 설명문을 메인 비주얼 하단에 배치.
     hero 콘텐츠 영역을 세로로 꽉 채운 뒤, 타이틀의 margin-top:auto 가
     남는 공간을 흡수해 타이틀 이하 블록을 아래로 밀어 내림. */
  .hero {
    align-items: stretch;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
  }

  .hero__copy-slider {
    flex: 1 1 auto;
    align-items: stretch;
  }

  .hero__copy-item {
    display: flex;
    flex-direction: column;
  }

  .hero__title {
    margin-top: auto;
    padding-top: 14px;
    /* 기존 clamp(36px, 5.4vw, 66px) 의 70% */
    font-size: clamp(25.2px, 3.78vw, 46.2px);
  }

  /* 모바일에서 메인 비주얼 인디케이터를 위로 올림 */
  .hero__dots {
    bottom: 72px;
  }

  /* 모바일에서 WHY? 헤드 가운데 정렬 */
  .why__text .why__q {
    text-align: center;
  }

  /* 모바일에서는 메인 비주얼 좌우 화살표 숨김 (스와이프/인디케이터로 대체) */
  .hero__arrow {
    display: none;
  }

  /* 모바일에서 숨길 히어로 CTA 버튼 */
  .hero__cta .btn[data-btn-label*="비용" i],
  .hero__cta .btn[data-btn-label*="가격" i],
  .hero__cta .btn[data-btn-label*="price" i] {
    display: none;
  }

  .br-pc {
    display: none;
  }

  :root {
    --pad-y: 76px;
    --gut: 20px;
  }

  body {
    font-size: 15px;
  }

  .sh {
    margin-bottom: 44px;
  }

  .sh__lead {
    margin-top: 16px;
  }

  .sh__sub {
    margin: 60px 0 30px;
  }

  .btn--lg {
    height: 54px;
    font-size: 15px;
    padding: 0 26px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__scrim {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, .90) 0%,
        rgba(255, 255, 255, .60) 22%,
        rgba(255, 255, 255, .15) 36%,
        rgba(255, 255, 255, 0) 48%);
  }

  .hero__cta .btn {
    width: 100%;
  }

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

  .signs__item {
    padding: 26px 16px 24px;
  }

  .signs__en {
    min-height: 0;
  }

  .signs__ico .ico {
    width: 54px;
    height: 54px;
  }

  .slider__ctrl {
    gap: 14px;
    margin-top: 30px;
  }

  .sbtn {
    width: 42px;
    height: 42px;
  }

  .pcard {
    padding: 30px 26px;
  }

  .scard__body {
    padding: 26px 22px 28px;
  }

  .dsteps__item {
    gap: 12px;
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .dsteps__no {
    width: auto;
  }

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

  .proc__arrow {
    display: none !important;
  }

  .proc__item {
    padding: 30px 26px 32px;
  }

  .inc__list li {
    padding: 22px 20px;
    gap: 16px;
  }

  /* BEFORE & AFTER 탭: 모바일에서 20/30/40/50대 4개를 한 줄에 노출 */
  .ba__tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .ba__tab {
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 9px 4px;
    text-align: center;
  }

  .ba__tab em {
    font-size: 11px;
    line-height: 1.2;
  }

  .ba__tab span {
    font-size: 13.5px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .bacomp {
    aspect-ratio: 4 / 3.4;
  }

  .ba__notes {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  .doc__plate {
    margin: -40px 16px 0 16px;
    padding: 24px 24px;
  }

  .doc__video {
    margin-top: 48px;
  }

  .doc__msg {
    padding: 28px 24px;
  }

  .doc__msg p {
    font-size: 16.5px;
  }

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

  .chk__item {
    padding: 20px 22px;
    gap: 14px;
  }

  .chk__tx {
    font-size: 15.5px;
  }

  .faq__q {
    gap: 12px;
    padding: 24px 2px;
  }

  .faq__qtx {
    font-size: 16px;
  }

  .faq__a-inner {
    gap: 12px;
    padding-bottom: 26px;
  }

  .cmp__hint {
    display: block;
  }

  .cmp__concl {
    padding: 38px 24px;
  }

  .frm {
    padding: 34px 24px 30px;
  }

  .frm__radios {
    flex-direction: column;
  }

  .ft__main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 56px;
    padding-bottom: 44px;
  }

  .ft__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* mobile quick bar */
  .quick {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 160;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .12);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .quick__a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 58px;
    font-size: 13.5px;
  }

  /* 채널 아이콘(챗봇 / 왓츠앱 / 카톡) */
  .quick__a--ch {
    flex: 0 0 48px;
    gap: 0;
  }

  .quick__a--ch .chico {
    width: 23px;
    height: 23px;
  }

  .quick__a--bot {
    background: var(--pt);
    color: #fff;
  }

  .quick__a--wa {
    background: #25d366;
    color: #fff;
  }

  .quick__a--kko {
    background: #fee500;
    color: #3c1e1e;
  }

  .quick__a--form {
    flex: 1.15 1 0;
    background: var(--pt);
    color: #fff;
    font-family: var(--en);
    font-weight: 500;
    letter-spacing: .01em;
  }

  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .fdock {
    right: 16px;
    bottom: calc(74px + env(safe-area-inset-bottom));
  }

  /* 모바일에서는 채널 아이콘을 하단바로 옮기므로 독에서는 숨김 */
  .fdock__btn {
    display: none;
  }

  .totop {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  /* 하단 고정바: 아이콘/문구 축소해 5개 버튼을 한 줄에 유지 */
  .quick__a--ch {
    flex: 0 0 42px;
  }

  .quick__a--ch .chico {
    width: 21px;
    height: 21px;
  }

  .quick--ch .quick__a--form {
    font-size: 12.5px;
  }

  /* BEFORE & AFTER 탭: 소형 단말에서도 4개 한 줄 유지 */
  .ba__tabs {
    gap: 5px;
  }

  .ba__tab {
    padding: 8px 2px;
  }

  .ba__tab em {
    font-size: 10px;
  }

  .ba__tab span {
    font-size: 12.5px;
  }

  .hero__scrim {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, .88) 0%,
        rgba(255, 255, 255, .50) 20%,
        rgba(255, 255, 255, .08) 32%,
        rgba(255, 255, 255, 0) 44%);
  }

  .hero__title {
    font-size: 22.4px;
  }

  .hero__en {
    font-size: 32px;
  }

  .quick__ico {
    display: none;
  }
}

/* ==========================================================================
   POLICY & TERMS MODAL POPUP
   ========================================================================== */
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.policy-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.policy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 29, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.policy-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 580px;
  max-height: 85vh;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.policy-modal.is-open .policy-modal__dialog {
  transform: translateY(0) scale(1);
}

.policy-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
}

.policy-modal__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.policy-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f8fafc;
  color: #64748b;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.policy-modal__close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.policy-modal__body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  background: #ffffff;
}

.policy-modal__content {
  font-size: 14px;
  line-height: 1.75;
  color: #334155;
  white-space: pre-line;
  word-break: break-word;
  background: #f8fafc;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.policy-modal__footer {
  padding: 16px 24px 20px;
  border-top: 1px solid #f1f5f9;
  background: #ffffff;
}

.policy-modal__footer .btn--modal-ok {
  height: 48px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
}

/* 로고 이미지가 있을 때는 이미지 오른쪽에 브랜드명을 가로로 배치합니다. */
.hd__logo--img {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.hd__logo-name {
  font-family: var(--en);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .03em;
  white-space: nowrap;
  color: var(--ink);
}

@media (max-width: 1024px) {
  .hd__logo--img {
    gap: 8px;
  }

  .hd__logo-name {
    font-size: 14px;
    letter-spacing: .04em;
  }
}

/* --------------------------------------------------------------------------
   25. AI 상담 (사이드톡) 트리거
   헤더 우측 상단 CTA 앞 + 우측 하단 플로팅 독(맨 위로 버튼 위)
   -------------------------------------------------------------------------- */
.hd__chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pt);
  color: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.hd__chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(16, 0, 61, .22);
}

.hd__chat .chico {
  width: 22px;
  height: 22px;
}

.hd__chat--wa {
  background: #25d366;
  color: #fff;
}

.hd__chat--wa:hover {
  box-shadow: 0 8px 18px rgba(37, 211, 102, .32);
}

.fdock__btn--ai {
  background: var(--pt);
  color: #fff;
}

@media (max-width: 1024px) {
  .hd__chat {
    width: 36px;
    height: 36px;
  }

  .hd__chat .chico {
    width: 20px;
    height: 20px;
  }

  /* 독의 채널 아이콘은 하단바로 내려가지만 AI 상담은 유지 */
  .fdock__btn--ai {
    display: flex;
    width: 42px;
    height: 42px;
  }

  .fdock__btn--ai .chico {
    width: 21px;
    height: 21px;
  }
}
