/* 최소 리셋 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --gutter-m: 20px;
  --gutter-pc: 45px;
  --hero-sparkle-gap-text: 16px;
  /* 스크롤 인뷰 리빌(혜택·이용방법·요금 등): ease-in-out에 가깝게, 살짝 여유 있는 길이 */
  --reveal-ease-section: ease-in-out;
}

@keyframes hero-sparkle-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes hero-sparkle-float-alt {
  0%,
  100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes hero-review-float-a {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes hero-review-float-b {
  0%,
  100% {
    transform: translateY(-1px);
  }
  50% {
    transform: translateY(3px);
  }
}

@keyframes hero-review-float-c {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

/* 히어로 카피: transition으로 숨김 포즈에 들어가면 none→blur/Y 보간이 ‘역재생’처럼 보임 → 등장만 keyframes */
@keyframes delion-hero-reveal-in {
  from {
    opacity: 0;
    transform: translateY(var(--reveal-y, 22px)) scale(var(--reveal-scale, 0.97));
    filter: blur(var(--reveal-blur, 8px));
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

body {
  margin: 0;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #001a40;
}

body.hero-anim-ready [data-reveal] {
  opacity: 0;
  transform: translateY(var(--reveal-y, 22px)) scale(var(--reveal-scale, 0.985));
  filter: blur(var(--reveal-blur, 11px));
  transition:
    opacity 920ms cubic-bezier(0.18, 0.82, 0.22, 1),
    transform 1040ms cubic-bezier(0.2, 0.85, 0.25, 1),
    filter 980ms cubic-bezier(0.2, 0.85, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

/* hero-anim-ready 순간: transform/filter가 none→목표로 '들어가는' 보간이 돌면서 깜빡임이 날 수 있음 → 한 프레임 스냅 후에만 transition 활성화 */
body.hero-anim-ready:not(.hero-reveal-transitions-on) [data-reveal] {
  transition: none !important;
  will-change: auto;
}

body.hero-anim-ready [data-reveal-hero] {
  --reveal-y: 22px;
  --reveal-scale: 0.97;
  --reveal-blur: 8px;
  transition: none !important;
  will-change: auto;
}

body.hero-anim-ready [data-reveal].is-inview:not([data-reveal-hero]) {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

body.hero-anim-ready [data-reveal][data-reveal-hero].is-inview {
  animation: delion-hero-reveal-in 1040ms cubic-bezier(0.2, 0.85, 0.25, 1) forwards;
  animation-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  body.hero-anim-ready [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    will-change: auto;
  }

  body.hero-anim-ready [data-reveal].is-inview:not([data-reveal-hero]) {
    opacity: 1;
    transform: none;
    filter: none;
  }

  body.hero-anim-ready [data-reveal][data-reveal-hero].is-inview {
    animation: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

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

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

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

/* ========== 기본 = PC (1280px 이상과 동일) ========== */
.container {
  max-width: 1245px;
  margin-inline: auto;
  padding-inline: var(--gutter-pc);
}

.site-header {
  background: linear-gradient(180deg, #d3eeff 0%, #fff 50%);
}

.logo__container {
  text-align: center;
  padding-top: 120px;
}

.logo__img {
  display: block;
  width: 300px;
  height: auto;
  margin-inline: auto;
}

.hero {
  padding-top: 24px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.hero__copy {
  max-width: 996px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.hero__title-line {
  display: block;
  width: 100%;
}

.hero__title-line--accent {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: var(--hero-sparkle-gap-text);
  color: #0265ff;
}

/* 1+2 묶음 · 3+4 묶음 (2는 1 오른쪽·아래, 4는 3 오른쪽·아래) */
.hero__sparkle-cluster {
  position: relative;
  flex-shrink: 0;
}

.hero__sparkle-cluster--left {
  width: 88px;
  height: 78px;
  align-self: center;
  animation: hero-sparkle-float 2s ease-in-out infinite;
}

.hero__sparkle-cluster--right {
  width: 84px;
  height: 82px;
  align-self: center;
  animation: hero-sparkle-float-alt 2s ease-in-out infinite;
  animation-delay: 0.1s;
}

.hero__sparkle {
  position: absolute;
  display: block;
}

.hero__sparkle--s1 {
  left: 16px;
  top: -30px;
  width: 73.5px;
  height: 69px;
}

.hero__sparkle--s2 {
  left: 64px;
  top: 14px;
  width: 31.5px;
  height: 31.5px;
}

.hero__sparkle--s3 {
  left: -30px;
  top: -12px;
  width: 34.5px;
  height: 34.5px;
}

.hero__sparkle--s4 {
  left: -4px;
  top: -8px;
  width: 57px;
  height: 57px;
}

.hero__title-img {
  display: block;
  width: 1018px;
  height: 115px;
  object-fit: contain;
}

.hero__title-img--accent {
  flex-shrink: 0;
  width: 641px;
  height: 115px;
}

.hero__title-line .hero__title-img--line2 {
  margin-inline: auto;
}

.hero__lead {
  margin-top: 30px;
  margin-bottom: 0;
}

.hero__lead-img {
  display: block;
  margin-inline: auto;
  width:643px;
  height: 30px;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 999px;
}

.btn--primary {
  background: #050035;
  color: #fff;
}

.btn--hero {
  margin-top: 60px;
  width: auto;
  min-width: 555px;
  min-height: 60px;
  padding: 24px 32px;
  font-size: 36px;
  font-weight: 600;
}


.hero__visual__container {
  width: 100%;
  margin-top: 120px;
  margin-inline: 0;
  text-align: center;
}

.hero__visual {
  position: relative;
  display: block;
  width: 100%;
}

.hero__visual__img {
  display: block;
  width: 100%;
  height: auto;
  
}
/* 리뷰카드 */
.hero__reviews {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-review {
  position: absolute;
  pointer-events: auto;
  margin: 0;
  text-align: left;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 1.582px 3.165px rgba(57, 73, 91, 0.25);
  border-radius: var(--review-radius, 16px);
  padding: var(--review-pad, 22px);
  width: var(--review-width, 260px);
  height: var(--review-height, 150px);
  box-sizing: border-box;
}

.hero-review__head {
  display: flex;
  align-items: center;
  gap: var(--review-head-gap, 8px);
  margin-bottom: var(--review-text-gap, 10px);
}

.hero-review__avatar {
  flex-shrink: 0;
  width: var(--review-avatar, 34px);
  height: var(--review-avatar, 34px);
  border-radius: 50%;
  overflow: hidden;
  display: block;
  line-height: 0;
}

.hero-review__avatar svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-review__stars {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-review__star-icon {
  flex-shrink: 0;
  display: block;
  width: var(--review-star, 20px);
  height: calc(var(--review-star, 20px) * 32 / 34);
}

.hero-review__star-icon + .hero-review__star-icon {
  margin-left: var(
    --review-star-overlap,
    calc(var(--review-star, 20px) * -0.52)
  );
}

.hero-review__text {
  margin: 0;
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: var(--review-text, 18px);
  line-height: var(--review-lh, 24px);
  color: #444b5b;
  white-space: pre-line;
}

.hero-review__text.is-typing::after {
  content: "|";
  margin-left: 2px;
  color: currentColor;
  opacity: 0.75;
  animation: review-caret-blink 0.85s ease-in-out infinite;
}

@keyframes review-caret-blink {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.9;
  }
}

/* 3개 리뷰 카드: 크기는 동일, 위치만 다르게 설정 */
.hero-review--a {
  --review-pad: 28.483px;
  --review-radius: 15.824px;
  --review-width: 290.5px;
  --review-height: 164.569px;
  --review-avatar: 37.978px;
  --review-star: 30px;
  --review-star-overlap: -12px;
  --review-head-gap: 6.33px;
  --review-text-gap: 12.659px;
  --review-text: 22.154px;
  --review-lh: 28.483px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1.582px 3.165px rgba(57, 73, 91, 0.25);
  left: 14%;
  top: 38%;
}

.hero-review--b {
  --review-pad: 32.044px;
  --review-radius: 17.802px;
  --review-width: 328px;
  --review-height: 184.558px;
  --review-avatar: 42.725px;
  --review-star: 34px;
  --review-star-overlap: -14.7px;
  --review-head-gap: 7.121px;
  --review-text-gap: 12.659px;
  --review-text: 25.319px;
  --review-lh: 34.813px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1.582px 3.165px rgba(57, 73, 91, 0.25);
  right: 15%;
  top: 28%;
}

.hero-review--c {
  --review-pad: 19.286px;
  --review-radius: 10.714px;
  --review-width: 230px;
  --review-height: 128.395px;
  --review-avatar: 25.714px;
  --review-star: 20px;
  --review-star-overlap: -14px;
  --review-head-gap: 4.286px;
  --review-text-gap: 12.659px;
  --review-text: 15.824px;
  --review-lh: 22.154px;
  background: rgba(255, 255, 255, 0.98);
  left: 21%;
  bottom: 25.5%;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1), 0 1.582px 3.165px rgba(57, 73, 91, 0.25);
}

body.hero-anim-ready .hero__visual .hero-review {
  opacity: 0;
  transition: opacity 420ms ease-in-out;
}

body.hero-anim-ready .hero__visual.is-inview .hero-review--a {
  opacity: 1;
  transition-delay: 120ms;
}

body.hero-anim-ready .hero__visual.is-inview .hero-review--b {
  opacity: 1;
  transition-delay: 250ms;
}

body.hero-anim-ready .hero__visual.is-inview .hero-review--c {
  opacity: 1;
  transition-delay: 380ms;
}

.hero__visual.is-inview .hero-review--a {
  animation: hero-review-float-a 2.8s ease-in-out infinite;
  animation-delay: 0.15s;
}

.hero__visual.is-inview .hero-review--b {
  animation: hero-review-float-b 3.1s ease-in-out infinite;
  animation-delay: 0.3s;
}

.hero__visual.is-inview .hero-review--c {
  animation: hero-review-float-c 2.6s ease-in-out infinite;
  animation-delay: 0.45s;
}

.section {
  padding-block: 150px;
}

.section--soft {
  background: #f2f7ff;
}

.section__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 90px;
}

.section__title-row {
  display: block;
}

.section__title-row--accent {
  color: #0068ff;
}

.section__title-row--dark {
  color: #001a40;
}

.section__title-em {
  background: #0265ff;
  color: #fff;
  padding: 0 0.2em;
}

.pain__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--title-mb-pc, 90px);
}

/* h2.pain__title 인라인: 이미지 --title-img-pc/m-w·h, 여백 --title-mb-pc / --title-mb-m */
.pain__title-img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}

.pain__title-img--pc {
  width: var(--title-img-pc-w, auto);
  height: var(--title-img-pc-h, auto);
}

.pain__title-img--m {
  display: none;
  width: var(--title-img-m-w, auto);
  height: var(--title-img-m-h, auto);
}

.section-rule {
  border: 0;
  border-top: 1px solid #D9E8FF;
  margin: 30px 0;
}

.divider {
  border: 0;
  border-top: 1px solid #cee1ff;
  margin: 16px 0;
}

.divider--on-dark {
  border-top-color: rgba(255, 255, 255, 0.35);
}

.pain__list {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.pain-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 45px;
}

.pain-card--dark {
  flex-direction: row;
}

.pain-card__bubble {
  position: relative;
  flex: 1;
  min-width: 0;
}

.pain-card__tail {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 54px;
  height: 73.5px;
  pointer-events: none;
}

.pain-card__tail--light {
  left: -45px;
  z-index: 10;
}

/* 모바일용 라이트 꼬리 SVG — PC에선 숨김 */
.pain-card__tail--m-light {
  display: none;
}

.pain-card__tail--dark {
  left: auto;
  right: -40px;
  transform: rotate(180deg) scaleY(-1);
  transform-origin: center center;
}

.pain-card__avatar {
  flex-shrink: 0;
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f1ff, #b8d4ff);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.pain-card__avatar-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pain-card__avatar--dark {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 0 0 1.5px rgba(255, 255, 255, 0.2);
}

.pain-card__body {
  --pain-bubble-r: min(75px, 12vw);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding: 45px 75px;
  border-radius: 0 var(--pain-bubble-r) var(--pain-bubble-r) var(--pain-bubble-r);
  border: 1.5px solid #cee1ff;
  background: #fff;
}

.pain-card--dark .pain-card__body {
  border-radius: var(--pain-bubble-r) 0 var(--pain-bubble-r) var(--pain-bubble-r);
  background: #0265ff;
  border-color: transparent;
  color: #fff;
}

.pain-card__name {
  margin: 0;
  font-weight: 700;
  font-size: 27px;
  line-height: normal;
  color: #0068ff;
}

.pain-card__name--on-dark {
  color: #fff;
}

.pain-card__role {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  line-height: normal;
  color: #60728c;
}

.pain-card__role--on-dark {
  color: #98c2ff;
}

.pain-card__meta-row--dark .pain-card__role--on-dark {
  white-space: nowrap;
}

.pain-card__meta--reverse {
  display: flex;
  flex-direction: row-reverse;
  text-align: right;
}

.pain-card__meta--dark {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  width: 100%;
  margin-bottom: 0;
}

.pain-card__meta--dark .pain-card__name--on-dark {
  width: 100%;
  margin: 0;
  text-align: right;
}

.pain-card__meta-row--dark {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.pain-card__meta-row--dark .tag-list {
  flex: 1 1 auto;
  justify-content: flex-start;
  min-width: 0;
}

.pain-card__meta-row--dark .pain-card__role--on-dark {
  margin-top: 0;
  text-align: right;
}

.pain-card__meta--light {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  width: 100%;
  margin-bottom: 0;
}

.pain-card__meta--light .pain-card__name {
  width: 100%;
  text-align: left;
}

.pain-card__meta-row--light {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.pain-card__meta-row--light .pain-card__role {
  text-align: left;
  white-space: nowrap;
}

.pain-card__meta-row--light .tag-list {
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pain-card .tag {
  display: inline-block;
  padding: 9px 18px;
  font-size: 18px;
  font-weight: 700;
  border: 1.5px solid #0068ff;
  border-radius: 45px;
  color: #0068ff;
}

/* .pain-card .tag 보다 한 단계 구체성 — 파란 배경에서 흰 글자·테두리 */
.pain-card .tag.tag--on-dark {
  color: #fff;
  border-color: #fff;
}

.tag--on-dark {
  color: #fff;
  border-color: #fff;
}

.pain-card__text {
  width: 840px;
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: #364a68;
  white-space: pre-line;
}

/* 말풍선 본문 줄바꿈 (A/B/C 사장님 카드)
   - 공통: <br>
   - PC만: <br class="pain-br pain-br--pc">
   - 모바일만: <br class="pain-br pain-br--m">
   - PC·모바일 같은 위치면 class 없는 <br>만 사용 (--pc와 --m를 한 br에 같이 쓰지 말 것)
   - 문단 전체를 갈아끼울 때:
     <p class="pain-card__text">
       <span class="pain-card__text-pane pain-card__text-pane--pc">PC용 문장…</span>
       <span class="pain-card__text-pane pain-card__text-pane--m">모바일용 문장…</span>
     </p> */
br.pain-br--m {
  display: none;
}

/* PC에서만 보이는 문단 블록(모바일은 .pain-card__text-pane--m 사용) */
.pain-card__text-pane--pc {
  display: block;
}

.pain-card__text-pane--m {
  display: none;
}

.pain-card__text--on-dark {
  color: #d9e8ff;
}

.pain-card .divider {
  margin: 0;
  flex-shrink: 0;
}

.pain-card--dark .divider--on-dark {
  margin: 0;
  flex-shrink: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 52.5px;
  overflow-x: hidden;
}

.feature-row--reverse .feature-row__media {
  order: 2;
}

.feature-row__media {
  min-height: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-row__media-img {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  object-fit: contain;
}

.mock-input {
  display: flex;
  gap: 16px;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid #0068ff;
  border-radius: 6px;
  font-size: 14px;
}

.mock-input__btn {
  padding: 12px 16px;
  background: #0068ff;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
}

.carrier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 280px;
}

.carrier-grid span {
  aspect-ratio: 2.2 / 1;
  background: #fff;
  border: 1px solid #dde5f0;
  border-radius: 4px;
}

.mock-table__row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid #0068ff;
  border-radius: 12px;
  font-size: 14px;
}

.mock-table__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
}

.mock-table__state {
  margin-left: auto;
  font-weight: 700;
}

.mock-table__state--done {
  color: #0068ff;
}

.mock-lock {
  display: flex;
  gap: 16px;
  align-items: center;
}

.mock-lock__panel {
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  font-size: 12px;
}

.mock-lock__line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.mock-lock__icon {
  width: 48px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4da3ff, #0068ff);
}

.feature-row__heading {
  font-size: 30px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.feature-row__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  background: #0068ff;
  border-radius: 3px;
}

.feature-row__desc {
  margin-top: 24px;
  font-size: 24px;
  color: #60728c;
  font-weight: 500;
  line-height: 33px;
  white-space: pre-line;
  word-break: keep-all;
}

.benefits__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 27px;
}

.benefit-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  padding: 0 24px 45px;
  background: #f2f7ff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 240ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 혜택·이용방법·요금: 섹션 제목 등(카드·슬롯보다 덜 구체적인 data-reveal)도 동일 이징 — 아래 .benefit-card / .howto__cell 등이 덮어씀 */
body.hero-anim-ready .benefits > .container [data-reveal],
body.hero-anim-ready .howto > .container [data-reveal],
body.hero-anim-ready .pricing > .container [data-reveal],
body.hero-anim-ready .closing-cta [data-reveal] {
  transition:
    opacity 620ms var(--reveal-ease-section),
    transform 700ms var(--reveal-ease-section),
    filter 520ms var(--reveal-ease-section);
  transition-delay: var(--reveal-delay, 0ms);
}

/* 이런 점이 좋아졌어요: 전역보다 짧게 유지하되 ease-in-out으로 중·하단 섹션과 톤 맞춤 */
body.hero-anim-ready .benefits .benefit-card [data-reveal] {
  --reveal-y: 12px;
  --reveal-scale: 1;
  --reveal-blur: 4px;
  transition:
    opacity 620ms var(--reveal-ease-section),
    transform 700ms var(--reveal-ease-section),
    filter 520ms var(--reveal-ease-section);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

body.hero-anim-ready .benefits .benefit-card .benefit-card__illu[data-reveal] {
  --reveal-y: 8px;
  --reveal-blur: 3px;
}

body.hero-anim-ready .benefits .benefit-card .benefit-card__body[data-reveal] {
  --reveal-y: 14px;
}

@media (hover: hover) and (pointer: fine) {
  .benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 26, 64, 0.07);
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-card {
    transition: none;
  }

  .benefit-card:hover {
    transform: none;
    box-shadow: none;
  }
}

.benefit-card__illu {
  width: 100%;
  max-width: 300px;
  height: 279px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.benefit-card__illu-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.benefit-card--clock .benefit-card__illu-img {
  width: 120px;
  height: auto;
}

.benefit-card--review .benefit-card__illu-img {
  width: 216px;
  max-width: min(100%, 216px);
  height: auto;
}

.benefit-card--bag .benefit-card__illu-img {
  width: 120px;
  height: auto;
}

.benefit-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.benefit-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #001a40;
  line-height: normal;
}

.benefit-card__quote {
  margin: 0;
  font-size: 21px;
  font-weight: 400;
  color: #60728c;
  line-height: 30px;
  letter-spacing: -0.21px;
  word-break: keep-all;
}

.howto__flow {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  max-width: 1245px;
  margin: 0 auto;
}

.howto__cell {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.howto__cell:nth-child(2) {gap: 0px;}
.howto__cell:nth-child(3) {gap: 0px;}

.howto__viz {
  width: 100%;
  max-width: 258px;
  height: 123px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.howto__viz:nth-child(1) {height: 113px;}


.howto__mock {
  box-sizing: border-box;
}

/* 1단계: 앱 카드 + 로고 */
.howto__mock--app {
  background: #fff;
  border: 1.5px solid #bacbe6;
  border-radius: 9px;
  padding: 24px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.howto__mock-logo {
  display: block;
  width: 54px;
  height: auto;
  max-height: 30px;
  object-fit: contain;
}

/* 2단계: 운송장 입력 모형 */
.howto__mock--tracking {
  background: #fff;
  border: 1px solid #bacbe6;
  border-radius: 9px;
  padding: 9px 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: nowrap;
}

.howto__mock-field {
  font-size: 18px;
  font-weight: 400;
  color: #001a40;
  line-height: 1.2;
  white-space: nowrap;
}

.howto__mock-field--mono {
  font-variant-numeric: tabular-nums;
}

.howto__mock-vrule {
  width: 1px;
  height: 33px;
  flex-shrink: 0;
  background: #bacbe6;
}

/* 3단계: 배송완료 뱃지 */
.howto__mock--badge {
  background: #fff;
  border: 1.5px solid #0068ff;
  border-radius: 1499px;
  padding: 15px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.howto__mock-dot {
  flex-shrink: 0;
  display: block;
}

.howto__mock-badge-label {
  font-size: 18px;
  font-weight: 700;
  color: #0068ff;
  line-height: 1;
  white-space: nowrap;
}

/* 화살표: 비주얼 블록(123px) 세로 중앙 — (123 - 21) / 2 */
.howto__sep {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto 0;
}

.howto__arrow-img {
  display: block;
  width: 21px;
  height: 21px;
}

.howto__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.howto__name {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #001a40;
  line-height: 1.3;
}

.howto__desc {
  margin-inline: auto;
  width: 105%;
  font-size: 21px;
  font-weight: 500;
  color: #60728c;
  line-height: 33px;
}

/* 이용 방법: 앱 설치 → 송장 → 배송완료 순으로 가볍게 이어지게 */
body.hero-anim-ready .howto .howto__cell[data-reveal] {
  --reveal-y: 14px;
  --reveal-scale: 1;
  --reveal-blur: 4px;
  transition:
    opacity 600ms var(--reveal-ease-section),
    transform 680ms var(--reveal-ease-section),
    filter 500ms var(--reveal-ease-section);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

body.hero-anim-ready .howto .howto__sep[data-reveal] {
  --reveal-y: 0;
  --reveal-scale: 1;
  opacity: 0;
  transform: translateX(-14px);
  filter: blur(3px);
  transition:
    opacity 540ms var(--reveal-ease-section),
    transform 620ms var(--reveal-ease-section),
    filter 440ms var(--reveal-ease-section);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

body.hero-anim-ready .howto .howto__sep[data-reveal].is-inview {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

body.hero-anim-ready .howto .howto__cell--step1[data-reveal].is-inview .howto__mock-logo {
  animation: howto-app-logo 0.72s cubic-bezier(0.34, 1.35, 0.64, 1) 0.12s both;
  transform-origin: 50% 60%;
}

body.hero-anim-ready .howto .howto__cell--step2 .howto__mock-mono-inner {
  display: inline-block;
  overflow: hidden;
  max-width: 0;
  vertical-align: bottom;
}

body.hero-anim-ready .howto .howto__cell--step2[data-reveal].is-inview .howto__mock-mono-inner {
  animation: howto-mono-reveal 0.78s steps(11, end) 0.22s forwards;
}

body.hero-anim-ready .howto .howto__cell--step3[data-reveal].is-inview .howto__mock--badge {
  animation: howto-badge-in 0.68s cubic-bezier(0.22, 0.61, 0.36, 1) 0.14s both;
}

body.hero-anim-ready .howto .howto__sep[data-reveal].is-inview .howto__arrow-img {
  animation: howto-arrow-nudge 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s both;
}

@keyframes howto-app-logo {
  0% {
    transform: translateY(6px) scale(0.88);
    opacity: 0.65;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes howto-mono-reveal {
  to {
    max-width: 11.5em;
  }
}

@keyframes howto-badge-in {
  0% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes howto-arrow-nudge {
  0% {
    transform: translateX(-4px);
    opacity: 0.75;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.hero-anim-ready .howto .howto__cell--step1[data-reveal].is-inview .howto__mock-logo,
  body.hero-anim-ready .howto .howto__cell--step2[data-reveal].is-inview .howto__mock-mono-inner,
  body.hero-anim-ready .howto .howto__cell--step3[data-reveal].is-inview .howto__mock--badge,
  body.hero-anim-ready .howto .howto__sep[data-reveal].is-inview .howto__arrow-img {
    animation: none !important;
  }

  body.hero-anim-ready .howto .howto__cell--step2 .howto__mock-mono-inner {
    max-width: none;
  }
}

.pricing__layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  width: 100%;
}

.pricing__slot--copy {
  flex: 1 1 0;
  min-width: 0;
  max-width: min(50%, 526px);
  min-height: 290px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pricing__slot--visual {
  flex: 0 0 auto;
  width: min(511.5px, 100%);
  max-width: 100%;
}

.pricing__visual-frame {
  width: 100%;
  aspect-ratio: 511.5 / 288;
  background: #f2f7ff;
  border-radius: 18px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pricing__slot-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.pricing__visual-frame .pricing__slot-img {
  object-fit: contain;
}

.pricing__slot--copy .pricing__slot-img--m {
  display: none;
}

/* 요금·대시보드 두 이미지: 살짝 어긋나게 들어옴 — 혜택/이용방법과 동일 이징 */
body.hero-anim-ready .pricing .pricing__slot[data-reveal] {
  --reveal-y: 0;
  --reveal-scale: 1;
  opacity: 0;
  filter: blur(4px);
  transition:
    opacity 620ms var(--reveal-ease-section),
    transform 720ms var(--reveal-ease-section),
    filter 520ms var(--reveal-ease-section);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

body.hero-anim-ready .pricing .pricing__slot--copy[data-reveal] {
  transform: translate(-12px, 10px);
}

body.hero-anim-ready .pricing .pricing__slot--visual[data-reveal] {
  transform: translate(12px, 10px);
}

body.hero-anim-ready .pricing .pricing__slot[data-reveal].is-inview {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0);
}

.closing-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: #0a1628;
  background-image: url("assets/images/closing/closing.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.closing-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 36px;
}

.closing-cta__title {
  margin: 0;
  align-self: flex-start;
  max-width: 100%;
  line-height: 0;
}

.closing-cta__title-img {
  display: block;
  width: var(--closing-heading-pc-w, 560px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.closing-cta__title-img--m {
  display: none;
  width: var(--closing-heading-m-w, 304px);
}
.closing-cta__btn {
  display: flex;
  width: 435px;
  height: 97.5px;
  padding: 7.5px 27px;
  justify-content: center;
  align-items: center;
  gap: 7.5px;
  border-radius: 75px;
background: #FFF;
color: #0068FF;
font-size: 30px;
font-weight: 600;
line-height: normal; 
}


/*  모바일: 1279px 이하만  */
@media (max-width: 1279px) {
  br.pain-br--pc {
    display: none;
  }

  br.pain-br--m {
    display: inline;
  }
  .pain-card__text {
    width: 100%;
  }

  .pain-card__text-pane--pc {
    display: none;
    
  }

  .pain-card__text-pane--m {
    display: block;
  }

  .page{
    overflow-x: hidden;
    max-width:393px;
    margin: 0 auto;
  }
  .container {
    padding-inline: 24px;

  }

  .logo__container {
    padding-top: 36px;
  }

  .logo__img {
    width: 95px;
    height: auto;
  }

  .hero {
    padding-top: 10px;
  }

  .hero__inner {
    gap: 28px;
  }

  .hero__copy {
    max-width: none;
    width: 100%;
  }


  .hero__title-img--accent {
    width: 201px;
    height: 36px;
  }
  .hero__title-img--line2 {
    width: 318px;
    height: 36px;
  }
  .hero__lead-img {
    width: 315px;
    height: 14px;
  }

  .hero__title-line--accent {
    flex-wrap: wrap;
    row-gap: 6px;
    --hero-sparkle-gap-text: 8px;
  }

  .hero__sparkle-cluster--left {
    width: 44px;
    height: 39px;
  }

  .hero__sparkle-cluster--right {
    width: 42px;
    height: 41px;
  }

  .hero__sparkle--s1 {
    width: 23px;
    height: 21px;
    top:-2px;
    left: 21px;
  }

  .hero__sparkle--s2 {
    left: 37px;
    top: 10px;
    width: 10px;
    height: 10px;
  }

  .hero__sparkle--s3 {
    width: 10px;
    height: 10px;
    top: 0px;
    left:-10px;
  }

  .hero__sparkle--s4 {
    left: -6px;
    top: 4px;
    width: 18px;
    height: 18px;
  }

  .hero__lead {
    margin-top: 12px;
  }

  .btn--hero {
    margin-top: 24px;
    margin-inline: auto;
    display: flex;
    width: 191px;
    min-width: 191px;
    min-height: auto;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 999px;
    background: #050035;
    color: #fff;
    font-family: "Pretendard", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .btn--on-dark {
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
  }

  .hero__visual__container {
    margin-top: 45px;
  }

  .hero__visual {
    display: block;
    position: relative;
    overflow: visible;
  }

  .hero__reviews {
    position: absolute;
    inset: 0;
    pointer-events: none;
    margin-top: 0;
  }

  .hero-review {
    position: absolute;
    pointer-events: auto;
    margin: 0;
    width: var(--review-width, 102px);
    min-height: var(--review-height, auto);
    background: rgba(255, 255, 255, 0.9);
    transform: none;
    --review-pad: 8px;
    --review-radius: 6px;
    --review-text: 8px;
    --review-lh: 10px;
    --review-avatar: 12px;
    --review-star: 12px;
    --review-head-gap: 2px;
    --review-text-gap: 4px;
    --review-star-overlap: -1px;
  }

  .hero-review__stars {
    gap: 0;
  }

  .hero-review--a,
  .hero-review--b,
  .hero-review--c {
    min-height: 0;
  }

  .hero-review--a {
    --review-pad: 8.523px;
    --review-radius: 4.735px;
    --review-width: 100px;
    --review-height: 58.84px;
    --review-avatar: 11.364px;
    --review-star: 10.2px;
    --review-star-overlap: 0.6px;
    --review-head-gap: 1.894px;
    --review-text-gap: 3.788px;
    --review-text: 8px;
    --review-lh: 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0.473px 0.947px rgba(57, 73, 91, 0.25);
    left: 4%;
    top: 31%;
    right: auto;
    bottom: auto;
    transform-origin: left top;
  }

  .hero-review--b {
    --review-pad: 9.588px;
    --review-radius: 5.327px;
    --review-width: 104px;
    --review-height: 61.31px;
    --review-avatar: 14.237px;
    --review-star: 12.9px;
    --review-star-overlap: 0.8px;
    --review-head-gap: 2.373px;
    --review-text-gap: 3.788px;
    --review-text: 8px;
    --review-lh: 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0.473px 0.947px rgba(57, 73, 91, 0.25);
    right: 4%;
    top: 23%;
    left: auto;
    bottom: auto;
    transform-origin: right top;
  }

  .hero-review--c {
    --review-pad: 5.771px;
    --review-radius: 3.206px;
    --review-width: 55px;
    --review-height: 19.236px;
    --review-avatar: 7.694px;
    --review-star: 6.3px;
    --review-star-overlap: 0.5px;
    --review-head-gap: 1.282px;
    --review-text-gap: 0px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 0 1.894px rgba(0, 0, 0, 0.1),
      0 0.473px 0.947px rgba(57, 73, 91, 0.25);
    left: 14%;
    bottom: 27%;
    right: auto;
    top: auto;
    transform-origin: left bottom;
  }

  .hero-review--c .hero-review__text {
    display: none;
  }

  .section {
    padding-block: 70px;
  }

  .section__title {
    font-size: 22px;
    margin-bottom: 28px;
    
  }
  .pain__title {
    margin-top: 0;
    margin-bottom: var(--title-mb-m, 28px);
  }
  .pain__title-img--pc {
    display: none;
  }

  .pain__title-img--m {
    display: block;
  }

  .section-rule {
    margin: 40px 0;
  }

  .pain__list {
    gap: 30px;
    align-items: stretch;
  }


  .pain-card {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
  }

  .pain-card:nth-child(2) {
    justify-content: flex-end;
  }

  .pain-card__tail {
    display: block;
    width: 17px;
    height: auto;
    top: 0;
  }

  .pain-card__tail--light:not(.pain-card__tail--m-light) {
    display: none;
  }

  .pain-card__tail--m-light {
    display: block;
  }

  .pain-card__tail--light {
    left: -13px;
  }

  .pain-card__tail--dark {
    right: -8px;
    transform: rotate(180deg) scaleY(-1);
    transform-origin: center center;
  }

  .pain-card__avatar {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  .pain-card__body {
    --pain-bubble-r: 24px;
    padding: 24px;
    border-radius: 0 var(--pain-bubble-r) var(--pain-bubble-r) var(--pain-bubble-r);
    gap: 12px;
  }

  .pain-card--dark .pain-card__body {
    border-radius: var(--pain-bubble-r) 0 var(--pain-bubble-r) var(--pain-bubble-r);
  }

  .pain-card__meta-row--dark {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .pain-card__meta--dark {
    align-items: flex-start;
  }

  .pain-card__meta--dark .pain-card__name--on-dark {
    text-align: left;
  }

  .pain-card__meta-row--dark .pain-card__role--on-dark {
    order: -1;
    width: 100%;
    white-space: normal;
    text-align: left;
  }

  .pain-card__meta-row--dark .tag-list {
    justify-content: flex-start;
    width: 100%;
    align-self: stretch;
    min-width: 0;
  }

  .pain-card__meta-row--light {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .pain-card__meta-row--light .pain-card__role {
    order: -1;
    width: 100%;
    white-space: normal;
  }

  .pain-card__meta-row--light .tag-list {
    justify-content: flex-start;
    width: 103%;
    align-self: stretch;
    min-width: 0;
  }

  .pain__list .tag-list {
    gap: 4px;
  }

  .pain-card__name {
    font-size: 10px;
  }

  .pain-card__role {
    font-size: 10px;
  }

  .pain-card .tag {
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 999px;
  }

  .pain-card__text {
    font-size: 14px;
    line-height: 22px;
  }

  .tag {
    padding: 4px 10px;
    font-size: 11px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-row--reverse .feature-row__media {
    order: 0;
  }

  .feature-row__media {
    min-height: 0;
    padding: 0;
  }

  .feature-row__media-img {
    max-width: 212px;
  }

  .mock-input {
    gap: 12px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .mock-input__btn {
    padding: 10px 14px;
  }

  .carrier-grid {
    gap: 6px;
    max-width: 260px;
  }

  .mock-table__row {
    max-width: 100%;
    padding: 10px 14px;
    font-size: 13px;
  }

  .mock-lock {
    gap: 12px;
  }

  .mock-lock__panel {
    padding: 10px;
    font-size: 11px;
  }

  .mock-lock__icon {
    width: 44px;
    height: 52px;
  }

  .feature-row__heading {
    font-size: 16px;
    gap:4px;
  }

  .feature-row__num {
    width: 18px;
    height: 18px;
    font-size: 12px;
    border-radius: 1px;
  }

  .feature-row__desc {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  .benefits__grid {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .benefit-card {
    flex: none;
    width: 100%;
    max-width: min(100%, 345px);
    margin-inline: auto;
    padding: 0 8px 16px;
    border-radius: 4.74px;
    gap: 10px;
  }

  .benefit-card__illu {
    width: 94px;
    height: 88px;
    max-width: none;
  }

  .benefit-card--clock .benefit-card__illu-img {
    width: 56px;
    height: 56px;
  }

  .benefit-card--review .benefit-card__illu-img {
    width: 80px;
    height: 38px;
    object-fit: contain;
  }

  .benefit-card--bag .benefit-card__illu-img {
    width: 60px;
    height: auto;
  }

  .benefit-card__body {
    gap: 8px;
  }

  .benefit-card__title {
    font-size: 14px;
  }

  .benefit-card__quote {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.14px;
  }

  .howto__flow {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0;
    max-width: none;
  }

  .howto__cell {
    flex: none;
    width: 100%;
    max-width: 320px;
    gap: 8px;
  }

  .howto__viz {
    width: 162px;
    max-width: 162px;
    height: 77px;
    margin-bottom: 0;
  }
  .howto__viz:nth-child(1) {height: 77px;}

  .howto__mock--app {
    border-width: 1px;
    border-radius: 5.68px;
    padding: 15px 8px;
  }

  .howto__mock-logo {
    width: 34px;
    max-height: 19px;
  }

  .howto__mock--tracking {
    border-width: 1px;
    border-radius: 5.68px;
    padding: 6px 9px;
    gap: 5.68px;
  }

  .howto__mock-field {
    font-size: 10px;
  }

  .howto__mock-vrule {
    height: 21px;
  }

  .howto__mock--badge {
    border-width: 1px;
    border-radius: 999px;
    padding: 10px 16px;
    gap: 4px;
  }

  .howto__mock-badge-label {
    font-size: 12px;
    font-weight: 700;
  }

  .howto__mock-dot {
    width: 8px;
    height: 8px;
  }

  .howto__sep {
    margin-top: 0;
    margin-bottom: 0;
    transform: rotate(90deg);
  }

  /* 세로 플로우: 화살표는 아래 방향으로 살짝 들어오게 */
  body.hero-anim-ready .howto .howto__sep[data-reveal] {
    transform: rotate(90deg) translateY(10px);
    opacity: 0;
    filter: blur(3px);
  }

  body.hero-anim-ready .howto .howto__sep[data-reveal].is-inview {
    transform: rotate(90deg) translateY(0);
    opacity: 1;
    filter: blur(0);
  }

  .howto__arrow-img {
    width: 12px;
    height: 12px;
  }

  .howto__text {
    gap: 8px;
    margin-top: 0;
  }

  .howto__name {
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
  }

  .howto__desc {
    max-width: none;
    margin-inline: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.14px;
  }

  .pricing__layout {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 24px;
  }

  .pricing__slot--copy {
    max-width: none;
    min-height: 200px;
    justify-content: center;
  }

  .pricing__slot--copy .pricing__slot-img--pc {
    display: none;
  }

  .pricing__slot--copy .pricing__slot-img--m {
    display: block;
  }

  .pricing__slot--visual {
    width: 100%;
  }

  .pricing__visual-frame {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }

  /* 세로 스택: 좌우 슬라이드 대신 아래에서만 살짝 */
  body.hero-anim-ready .pricing .pricing__slot--copy[data-reveal],
  body.hero-anim-ready .pricing .pricing__slot--visual[data-reveal] {
    transform: translate(0, 12px);
  }

  .closing-cta {
    padding: 48px 0;
    margin-inline: auto;
  }

  .closing-cta__inner {
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .closing-cta__title {
    align-self: center;
    margin-inline: auto;
  }

  .closing-cta__title-img--pc {
    display: none;
  }

  .closing-cta__title-img--m {
    display: block;
    margin-inline: auto;
  }

  .closing-cta__btn {
    margin:0 auto;
    display: flex;
width: 137.313px;
height: 30.777px;
padding: 2.367px 8.523px;
justify-content: center;
align-items: center;
gap: 2.367px;
color: #0068FF;
font-family: Pretendard;
font-size: 9.47px;
font-style: normal;
font-weight: 600;
line-height: normal;
  }
}
@media (max-width: 386px) {

  .pain-card__text br {
    display: none;
  }
}