/* Page Hero */
/* [UNUSED]
.page-hero {
  width: 100%;
  height: 680px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f0f7ff 0%, #f0f7ff 50%, #dbe9f5 50%, #dbe9f5 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg stroke='%23FFF' stroke-width='66.7' stroke-opacity='0.05' %3E%3Ccircle fill='%23FFF' cx='0' cy='0' r='1800'/%3E%3Ccircle fill='%23fdfdfe' cx='0' cy='0' r='1700'/%3E%3Ccircle fill='%23fbfbfd' cx='0' cy='0' r='1600'/%3E%3Ccircle fill='%23f9f9fc' cx='0' cy='0' r='1500'/%3E%3Ccircle fill='%23f7f7fb' cx='0' cy='0' r='1400'/%3E%3Ccircle fill='%23f5f5fa' cx='0' cy='0' r='1300'/%3E%3Ccircle fill='%23f3f3f9' cx='0' cy='0' r='1200'/%3E%3Ccircle fill='%23f1f1f8' cx='0' cy='0' r='1100'/%3E%3Ccircle fill='%23efeff7' cx='0' cy='0' r='1000'/%3E%3Ccircle fill='%23edeef6' cx='0' cy='0' r='900'/%3E%3Ccircle fill='%23ebecf5' cx='0' cy='0' r='800'/%3E%3Ccircle fill='%23e9eaf4' cx='0' cy='0' r='700'/%3E%3Ccircle fill='%23e7e8f3' cx='0' cy='0' r='600'/%3E%3Ccircle fill='%23e5e6f2' cx='0' cy='0' r='500'/%3E%3Ccircle fill='%23e3e4f1' cx='0' cy='0' r='400'/%3E%3Ccircle fill='%23e1e2f0' cx='0' cy='0' r='300'/%3E%3Ccircle fill='%23dfe0ef' cx='0' cy='0' r='200'/%3E%3Ccircle fill='%23ddddef' cx='0' cy='0' r='100'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.8;
}

.hero-slide-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 100px;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  padding: 0 100px;
  box-sizing: border-box;
}

.hero-text-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #1a1a1a;
  height: 100%;
  gap: 20px;
  flex: 1;
  padding: 90px 0;
  z-index: 1;
}

.hero-tag {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}

.hero-title {
  text-align: left;
  margin: 0;
  word-break: keep-all;
  color: #000;
  font-family: Pretendard;
  font-size: 50px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: -1px;
}

.hero-desc {
  margin: 0;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  margin-bottom: 32px;
}

.btn-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  height: 48px;
  border-radius: 100px;
  background: #acc9e6;
  border: 1px solid #acc9e6;
  transition: all 0.2s;
  line-height: normal;
}

.btn-hero-cta:hover {
  background: #9ab8d6;
  border-color: #9ab8d6;
}
*/

/* [UNUSED]
.hero-image-area {
  flex: 1;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  transform: scale(1.1);
}
*/

/* Summary Section */
/* [UNUSED]
.section-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background:
    linear-gradient(0deg, #fff 0%, #fff 100%), linear-gradient(94deg, #4483f9 -15.8%, #a1c1fc 19.9%, #fff 115.27%);
  box-sizing: border-box;
}

.section-summary__header {
  text-align: center;
}

.section-summary__title {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 72px;
  margin-bottom: 20px;
}

.section-summary__subtitle {
  color: #757575;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 62px;
  word-break: keep-all;
}

.section-summary__cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  width: 100%;
  padding: 0 20px;
}

.benefit-card {
  max-width: 410px;
  width: 100%;
  flex: 1;
  border-radius: 24px;
  padding: 49px 36px;
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1);
}

.benefit-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-card__title {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

.benefit-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 16px;
}

.benefit-card__quote {
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -1px;
}

.benefit-card__details {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.benefit-card__detail-item {
  margin-bottom: 5px;
  line-height: 1.4;
}

.benefit-card__detail-item strong {
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
}

.benefit-card__detail-item span {
  color: rgba(0, 0, 0, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
*/


/* CTA */
.btn-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  padding: 0 33px;
  background: #4483f9;
  color: #fff;
  border-radius: 50px;
  font-size: 16.6px;
  font-weight: 700;
  transition: all 0.3s ease;
}

/* Media Queries */

/* migration-hero.css */

/* Section: Migration Hero */
.migration-hero {
  padding: 0;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.20) 0%, rgba(74, 157, 202, 0.20) 50%) bottom right / 50% 50% no-repeat, linear-gradient(to bottom left, rgba(255, 255, 255, 0.20) 0%, rgba(74, 157, 202, 0.20) 50%) bottom left / 50% 50% no-repeat, linear-gradient(to top left, rgba(255, 255, 255, 0.20) 0%, rgba(74, 157, 202, 0.20) 50%) top left / 50% 50% no-repeat, linear-gradient(to top right, rgba(255, 255, 255, 0.20) 0%, rgba(74, 157, 202, 0.20) 50%) top right / 50% 50% no-repeat, linear-gradient(262deg, #D6E7F3 -1.02%, #9CCCEB 47.78%, #1B9CF0 101.32%);
  border-bottom: 1px solid #e2e8f0;
}

.migration-hero__container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 200px;
  min-height: 680px;
  padding: 40px;
  /* 피그마 데이터: gap [200px] */
}

.migration-hero__content {
  flex: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.migration-hero__tag-wrapper {
  margin-bottom: 0;
}

.migration-hero__tag {
  display: block;
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 34px;
}

.migration-hero__title {
  font-family: 'Pretendard', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #000000;
  line-height: 68px;
  letter-spacing: -1px;
  margin: 0;
}

.migration-hero__desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 28px;
  padding: 24px 0;
  /* 피그마 데이터: py-[24px] */
  margin: 0;
  word-break: keep-all;
}

.migration-hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
  /* 피그마 데이터: pt-[40px] */
}

.migration-hero__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 24px;
  border-radius: 100px;
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  color: #ffffff; /* Shared style */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Shared style */
}

.migration-hero__btn--primary {
  /* 피그마 데이터: Background+Border (456:37731) */
  background-image: linear-gradient(90deg, rgba(0, 69, 118, 0.4) 0%, rgba(0, 69, 118, 0.4) 100%),
    linear-gradient(90deg, rgba(214, 231, 243, 0.3) 0%, rgba(214, 231, 243, 0.3) 100%);
}

.migration-hero__btn--primary:hover {
  opacity: 0.9;
}

.migration-hero__btn--secondary {
  /* 피그마 데이터: Background+Border (456:37733) */
  background-color: rgba(214, 231, 243, 0.3);
}

.migration-hero__btn:hover {
  opacity: 0.8;
}

/* Status Card Group */
.migration-hero__graphic {
  position: relative;
  z-index: 10;
}

.migration-status-card {
  width: 520px;
  /* height: 526px; */
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.08);
  /* 피그마 쉐도우 */
  position: relative;
}

.migration-status-card:hover {
  transform: none;
}

.migration-status-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  /* 헤더 위치 보정 L42 top 39px */
  padding-top: 7px;
}

.migration-status-card__icon-box {
  width: 40px;
  height: 40px;
  background-color: #f0fdf4;
  color: #05df72;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.migration-status-card__header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.migration-status-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #101828;
}

.migration-status-card__date {
  font-size: 12px;
  color: #99a1af;
}

/* Timeline */
.migration-status-card__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.migration-status-card__timeline::before {
  content: '';
  left: 16px;
  top: 32px;
  bottom: 0;
  width: 1px;
  background-color: #e5e7eb;
  z-index: 1;
}

.timeline-item {
  display: flex;
  gap: 20px;
  height: 65px;
  /* 피그마 데이터: h-[65px] */
  position: relative;
  align-items: flex-start;
}

.timeline-item:last-child {
  height: 41px;
}

.timeline-item__marker {
  width: 32px;
  height: 32px;
  line-height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Pretendard', sans-serif;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  background-color: #f3f4f6;
  color: #99a1af;
  z-index: 2;
  position: relative;
}

/* Vertical line */
.timeline-item::after {
  content: '';
  position: absolute;
  left: 15.5px;
  /* 32px marker center */
  top: 32px;
  width: 1px;
  height: 32px;
  /* 피그마 데이터: h-[32px] L76 */
  background-color: #e5e7eb;
  z-index: 1;
}

.timeline-item.done::after {
  background-color: #7bf1a8;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-item.done .timeline-item__marker {
  background-color: #05df72;
  color: #ffffff;
}

.timeline-item.active .timeline-item__marker {
  background-color: #4483f9;
  color: #ffffff;
}

@keyframes marker-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(68, 131, 249, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(68, 131, 249, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(68, 131, 249, 0);
  }
}

.timeline-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}

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

.timeline-item__title {
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #101828;
  line-height: 21px;
}

.timeline-item.active .timeline-item__title {
  color: #4483f9;
}

.timeline-item:not(.active):not(.done) .timeline-item__title {
  color: #99a1af;
}

.timeline-item.pending .timeline-item__title {
  color: #99a1af;
}

.timeline-item__badge,
.timeline-item__badge-active,
.timeline-item__badge-next {
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Pretendard', sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
}

.timeline-item__badge {
  background-color: #f0fdf4;
  color: #00c950;
}

.timeline-item__badge-active {
  background-color: #eef3ff;
  color: #4483f9;
}

.timeline-item__badge-next {
  background-color: #f9fafb;
  color: #99a1af;
}

.timeline-item__desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 12px;
  color: #99a1af;
  margin: 0;
  line-height: 18px;
}

/* Status Card Footer */
.migration-status-card__footer {
  margin-top: 20px;
  /* L255 top offset adjustment */
  background-color: #eef3ff;
  border-radius: 14px;
  padding: 0 12px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.migration-status-card__chat-icon {
  width: 32px;
  height: 32px;
  background-color: #4483f9;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.migration-status-card__footer-text {
  display: flex;
  flex-direction: column;
}

.migration-status-card__footer-text strong {
  font-family: 'Pretendard', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #4483f9;
  line-height: 18px;
}

.migration-status-card__footer-text span {
  font-family: 'Pretendard', sans-serif;
  font-size: 10px;
  color: rgba(68, 131, 249, 0.6);
  line-height: 16px;
}

/* Responsive Customization for Hero */

/* membership-migration.css */

/* Section: Platforms List */
.migration-platforms {
  padding: 100px 0;
  background: linear-gradient(180deg, #F9FAFB 0%, #FFF 100%);
  text-align: center;
  scroll-margin-top: 80px;
}

.migration-platforms__container,
.migration-process__container {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.migration-platforms__header {
  margin-bottom: 64px;
}

.migration-platforms__title {
  font-size: 40px;
  font-weight: 600;
  color: #101828;
  line-height: 45px;
  letter-spacing: -0.9px;
  margin-bottom: 18px;
  word-break: keep-all;
}

.migration-platforms__desc {
  font-size: 22px;
  font-weight: 500;
  color: #6A7282;
  line-height: 30px;
  word-break: keep-all;
}

.migration-platforms__grid {
  display: flex;
  gap: 37px;
  justify-content: center;
}

.migration-platforms__card {
  display: flex;
  height: 60px;
  padding: 12px 26px;
  align-items: center;
  gap: 11px;
  border-radius: 16px;
  border: 1px solid #F3F4F6;
  background: #F9FAFB;
  flex-direction: row;
  width: 200px;
  justify-content: flex-start;
}

/* .migration-platforms__card:hover {
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(68, 131, 249, 0.1);
  transform: translateY(-5px);
} */

.migration-platforms__icon-circle {
  color: #FFF;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #000;
}

.etc {
  border-radius: 14px;
  background: #6B7280;
  line-height: 33px;
}

.migration-platforms__name-kr {
  font-size: 15px;
  font-weight: 700;
  color: #101828;
}

.migration-platforms__name-en {
  font-size: 12px;
  font-weight: 400;
  color: #99a1af;
}

.migration-platforms__footer {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #99a1af;
}

.migration-platforms__footer-icon {
  width: 18px;
  height: 18px;
  color: #4483f9;
}

.migration-platforms__footer p {
  margin: 0;
}

.migration-platforms__footer-highlight {
  font-weight: 700;
  color: #4a5565;
}

/* Section: 5-Step Process */
.migration-process {
  padding: 96px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  text-align: center;
}

.migration-process__header {
  margin-bottom: 64px;
}

.migration-process__title {
  font-size: 40px;
  font-weight: 600;
  color: #101828;
  line-height: 45px;
  letter-spacing: -0.9px;
  margin-bottom: 18px;
  word-break: keep-all;
}

.migration-process__desc {
  font-size: 22px;
  font-weight: 500;
  color: #6A7282;
  line-height: 30px;
  word-break: keep-all;
}

.migration-process__steps-wrapper {
  position: relative;
  margin: 0 auto 64px;
}

.migration-process__line {
  position: absolute;
  top: 64px;
  left: 112px;
  right: 112px;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(68, 131, 249, 0.2) 0%,
      rgba(68, 131, 249, 0.4) 50%,
      rgba(68, 131, 249, 0.2) 100%);
}

.migration-process__steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.migration-process__step {
  width: 224px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.migration-process__icon-card {
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border: 2px solid #4483f9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 20px rgba(68, 131, 249, 0.12);
  margin-bottom: 20px;
  color: #4483f9;
}

.migration-process__step-badge {
  background-color: #4483f9;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 12px;
  line-height: 17px;
}

.migration-process__step-title {
  font-size: 16px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}

.migration-process__step-desc {
  font-size: 13px;
  color: #6a7282;
  line-height: 1.6;
  max-width: 180px;
  margin-bottom: 14px;
  word-break: keep-all;
}

.migration-process__time-tag {
  background-color: #eef3ff;
  color: #4483f9;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
}

.migration-process__summary {
  margin: 0 auto;
  border-radius: 16px;
  padding: 32px 42px;
  display: flex;
  align-items: center;
  border: 1px solid #F3F4F6;
  background: #FFF;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.migration-process__summary-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.migration-process__summary-icon {
  width: 56px;
  height: 56px;
  background-color: #f0fdf4;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.migration-process__summary-text {
  text-align: left;
}

.migration-process__summary-title {
  font-size: 20px;
  font-weight: 800;
  color: #101828;
  margin-bottom: 2px;
}

.migration-process__summary-sub {
  font-size: 13px;
  color: #99a1af;
  line-height: 20px;
}

.migration-process__summary-divider {
  width: 1px;
  height: 40px;
  background-color: #f3f4f6;
  margin: 0 48px;
}

.migration-process__summary-desc {
  flex: 1;
  text-align: left;
  font-size: 14px;
  color: #4a5565;
  line-height: 1.6;
}

.migration-process__summary-desc strong {
  color: #1e2939;
  font-weight: 600;
}

.migration-process__step-number {
  font-size: 14px;
  font-weight: 700;
  color: #4483f9;
  margin-bottom: 8px;
}

.migration-process__step-title {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

.migration-process__step-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.5;
  word-break: keep-all;
}

/* Section: Coverage Details */
.migration-coverage {
  padding: 125px 0;
  background-color: #ffffff;
  text-align: center;
}

.migration-coverage__header {
  margin-bottom: 56px;
}

.migration-coverage__tagline {
  font-size: 13px;
  font-weight: 700;
  color: #4483f9;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.migration-coverage__title {
  font-size: 40px;
  font-weight: 600;
  color: #101828;
  line-height: 45px;
  letter-spacing: -0.9px;
  margin-bottom: 20px;
  word-break: keep-all;
}

.migration-coverage__desc {
  color: #6a7282;
  margin-bottom: 0;
  word-break: keep-all;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 27.2px;
}

.migration-coverage__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
  padding: 0 40px;
}

.migration-coverage__card {
  background-color: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 297px;
  transition: all 0.3s ease;
}

.migration-coverage__card:hover {
  background-color: #f3f4f6;
}

.migration-coverage__icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.migration-coverage__icon-box--product {
  background-color: rgba(68, 131, 249, 0.08);
  color: #4483f9;
}

.migration-coverage__icon-box--customer {
  background-color: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.migration-coverage__icon-box--order {
  background-color: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
}

.migration-coverage__icon-box--design {
  background-color: rgba(139, 92, 246, 0.08);
  color: #8b5cf6;
}

.migration-coverage__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 16px;
}

.migration-coverage__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.migration-coverage__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4a5565;
  margin-bottom: 10px;
  line-height: 19px;
}

.migration-coverage__list-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* Tablet (max-width: 1024px) */

/* Section: Final Consultation CTA */


/* Responsive */

/* Section: Migration Benefits */
/* [UNUSED]
.migration-benefits {
  padding: 120px 0;
  background-image: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%),
    linear-gradient(98.27deg, #4483F9 15.8%, #A1C1FC 19.9%, #FFFFFF 115.27%);
  background-blend-mode: normal;
  text-align: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}
*/

/* [UNUSED]
.migration-benefits__container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
  width: 100%;
  padding: 0 55px;
}
*/

/* [UNUSED]
.migration-benefits__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.migration-benefits__title {
  font-family: 'Pretendard', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 72px;
  color: #000000;
  letter-spacing: normal;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.migration-benefits__subtitle {
  font-family: 'Pretendard', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  color: #6A7282;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.migration-benefits__grid {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.migration-benefits__card {
  position: relative;
  width: 100%;
  max-width: 410px;
  height: 410px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.migration-benefits__card-bg {
  position: absolute;
  inset: 0;
  background-color: #f7f7f7;
  backdrop-filter: blur(23px);
  mix-blend-mode: darken;
  border-radius: 24px;
  z-index: 1;
}

.migration-benefits__card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  width: 100%;
}

.migration-benefits__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.migration-benefits__card-title {
  font-size: 26px;
  font-weight: 700;
  line-height: normal;
  color: #6A7282;
  margin: 0;
}

.migration-benefits__info-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  color: rgba(0, 0, 0, 0.7);
}

.migration-benefits__quote {
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
}

.migration-benefits__card:nth-child(1) .migration-benefits__quote {
  letter-spacing: -1px;
}

.migration-benefits__card:nth-child(2) .migration-benefits__quote {
  letter-spacing: -0.8px;
}

.migration-benefits__card:nth-child(3) .migration-benefits__quote {
  letter-spacing: -1.2px;
}
*/

.migration-benefits__details {
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  text-align: center;
}

.migration-benefits__details p {
  line-height: 30px;
}

.migration-benefits__details strong {
  font-weight: 700;
}

.migration-benefits__card-inner-shadow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  z-index: 3;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1);
}

/* Section: Savings Effect */
/* [UNUSED]
.migration-savings {
  padding: 120px 0;
  background-color: #0d1520;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
*/

/* Background Glows */
.migration-savings::before {
  content: "";
  position: absolute;
  width: 384px;
  height: 384px;
  right: -100px;
  top: -100px;
  background: rgba(68, 131, 249, 0.1);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.migration-savings::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -100px;
  bottom: -100px;
  background: rgba(68, 131, 249, 0.05);
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}

/* [UNUSED]
.migration-savings__tagline {
  font-size: 13px;
  font-weight: 700;
  color: #4483f9;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.migration-savings__title {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.9px;
  margin-bottom: 16px;
}

.migration-savings__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 64px;
}
*/

.migration-savings__grid {
  display: flex;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 40px;
}

.migration-savings__card {
  flex: 1;
  padding: 40px 32px;
  border-radius: 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 258px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.migration-savings__card--highlight {
  background-color: #4483f9;
  border-color: #4483f9;
  box-shadow: 0px 20px 60px 0px rgba(68, 131, 249, 0.3);
}

.migration-savings__card-val {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1;
}

.migration-savings__card-val--blue {
  color: #4483f9;
}

.migration-savings__card-label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.migration-savings__card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.5);
  word-break: keep-all;
}

.migration-savings__card--highlight .migration-savings__card-desc {
  color: rgba(255, 255, 255, 0.8);
}

.migration-savings__card-tag {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: rgba(68, 131, 249, 0.15);
  color: #4483f9;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
}

.migration-savings__card--highlight .migration-savings__card-tag {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Bottom Summary Bar */
.migration-savings__summary {
  max-width: 540px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.migration-savings__summary-info {
  text-align: left;
}

.migration-savings__summary-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
  display: block;
}

.migration-savings__summary-text {
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.migration-savings__summary-text span {
  color: #4483f9;
}

.migration-savings__summary-btn {
  background-color: #4483f9;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.migration-savings__summary-btn:hover {
  background-color: #2b65f0;
}

/* Section: Customer Reviews */
.migration-reviews {
  padding: 120px 0;
  background-color: #ffffff;
  text-align: center;
}

.migration-reviews__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.migration-reviews__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.migration-reviews__title {
  font-family: 'Pretendard', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 72px;
  color: #000000;
  margin: 0;
  text-align: center;
}

.migration-reviews__desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  color: #6A7282;
  margin: 0;
  text-align: center;
  word-break: keep-all;
}

/* #f9fafb 내부 패널 */
.migration-reviews__panel {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
}

.migration-reviews__tagline {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #4483f9;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

.migration-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 358px);
  gap: 23px;
  width: 100%;
  justify-content: center;
}

.migration-reviews__card {
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 29px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.migration-reviews__rating {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 16px;
}

.migration-reviews__quote {
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  color: #364153;
  margin: 0;
  flex-grow: 1;
  word-break: keep-all;
}

.migration-reviews__profile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

.migration-reviews__profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.migration-reviews__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e5e7eb;
  object-fit: cover;
  flex-shrink: 0;
}

.migration-reviews__author-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.migration-reviews__author-name {
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #101828;
  line-height: 21px;
}

.migration-reviews__author-role {
  font-family: 'Pretendard', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #99a1af;
  line-height: 18px;
}

.migration-reviews__savings-tag {
  padding: 4px 10px;
  background-color: #eef3ff;
  color: #4483f9;
  border-radius: 10px;
  font-family: 'Pretendard', sans-serif;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 16.5px;
}

.migration-reviews__footer {
  padding-top: 17px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.migration-reviews__path-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.migration-reviews__path-text {
  font-family: 'Pretendard', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #99a1af;
  line-height: 16px;
  white-space: nowrap;
}



.consult-section {
  padding: 120px 0;
  background-color: #ffffff;
  scroll-margin-top: 80px;
}

/* =================================
 * Responsive (통합 미디어 쿼리)
 * ================================= */

@media (max-width: 1280px) {
/* [UNUSED]
  .hero-slide-inner {
    padding: 0 40px;
    gap: 40px;
  }

  .section-summary__title {
    font-size: 32px;
    line-height: 48px;
  }

  .benefit-card {
    width: 320px;
    padding: 40px 20px;
  }
*/



  .migration-hero__container {
    gap: 100px;
  }

  .migration-hero__title {
    font-size: 38px;
    line-height: 1.3;
  }

  .migration-status-card {
    width: 100%;
    min-width: 350px;
    padding: 30px;
    max-width: 400px;
    margin: 0 auto;
  }

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

@media (max-width: 1024px) {
/* [UNUSED]
  .hero-slide-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-text-area {
    align-items: center;
    text-align: center;
    padding: 40px 0;
    transform: none !important;
    opacity: 1 !important;
  }

  .hero-title {
    font-size: 36px;
    line-height: 48px;
    text-align: center;
  }

  .hero-desc {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
  }

  .migration-benefits__card {
    padding: 40px 0;
    height: 430px;
    justify-content: flex-start;
  }

  .migration-benefits__card-title {
    font-size: 22px;
  }

  .migration-benefits__card-content {
    gap: 25px;
    padding: 0 10px;
  }

  .migration-benefits__quote {
    font-size: 18px;
  }

  .migration-benefits__details {
    font-size: 16px;
  }

  .section-summary__cards {
    flex-wrap: wrap;
    gap: 30px;
  }
*/

  .migration-hero__container {
    gap: 80px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 990px;
  }

  .migration-hero__actions {
    justify-content: center;
    padding-top: 0;
  }

  .migration-hero__graphic {
    flex: 1;
  }

  .migration-platforms__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .migration-platforms__desc {
    font-size: 16px;
    line-height: 1.4;
  }

  .migration-process__line {
    display: none;
  }

  .migration-process__steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 20px;
  }

  .migration-process__step {
    flex: 0 0 calc(33.333% - 40px);
  }

  .migration-process__step:not(:last-child)::after {
    display: none;
  }

/* [UNUSED]
  .migration-savings__grid {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .migration-savings__card {
    width: 100%;
    max-width: 500px;
  }
*/

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

}

@media (max-width: 768px) {
  .page-hero {
    height: auto;
    min-height: 500px;
  }

  .migration-hero__container {
    flex-direction: column;
    gap: 50px;
  }

  .hero-image-area {
    max-width: 400px;
  }

/* [UNUSED]
  .section-summary__title {
    font-size: 24px;
    line-height: 32px;
  }

  .section-summary__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .benefit-card {
    width: 95%;
    height: auto;
    min-height: 340px;
  }
*/


  .migration-hero__title {
    font-size: 32px;
    line-height: 1.3;
  }

  .migration-hero__desc {
    font-size: 16px;
    padding: 10px 0;
  }

  .migration-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .migration-hero__btn {
    width: 100%;
    height: 45px;
  }

  .migration-status-card {
    width: 100%;
    max-width: 400px;
    height: auto;
    padding: 24px;
  }

  .migration-platforms__title,
  .migration-process__title,
  .migration-coverage__title {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .migration-process__summary {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
  }

  .migration-process__summary-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .migration-platforms__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }

  .migration-platforms__card {
    width: 100%;
  }

  .migration-process__step {
    flex: 0 0 100%;
  }

  .migration-hero__container {
    padding: 80px 40px;
  }

  .migration-platforms,
  .migration-process,
  .migration-coverage {
    padding: 80px 0;
  }

  .migration-coverage__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    padding: 0 20px;
  }

  .migration-coverage__card {
    padding: 32px;
  }


  .migration-benefits {
    padding: 80px 20px;
  }

  .migration-benefits__title {
    font-size: 28px;
    line-height: 1.4;
  }

  .migration-benefits__subtitle {
    font-size: 16px;
    line-height: 1.5;
  }

  .migration-benefits__container {
    gap: 40px;
  }

  .migration-savings__title {
    font-size: 28px;
  }

  .migration-savings__summary {
    flex-direction: column;
    text-align: center;
    margin: 0 20px;
    gap: 16px;
  }

  .migration-savings__summary-info {
    text-align: center;
  }

  .migration-reviews {
    padding: 80px 0;
  }

  .migration-reviews__container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .migration-reviews__title {
    font-size: 26px;
    line-height: 1.4;
    white-space: normal;
  }

  .migration-reviews__desc {
    font-size: 16px;
    white-space: normal;
  }

  .migration-reviews__panel {
    padding: 24px 20px;
  }

  .migration-reviews__grid {
    grid-template-columns: 1fr;
  }

  .migration-benefits__grid {
    flex-direction: column;
    align-items: center;
  }

  .migration-benefits__card {
    width: 380px;
    height: 410px;
    justify-content: center;
  }



  .section-header__title,
  .cta-title {
    font-size: 26px;
  }

  .migration-process__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .migration-process__step {
    width: 100%;
  }

  .migration-process__desc {
    font-size: 16px;
  }

  .migration-platforms__footer {
    width: 90%;
    margin: 64px auto 0;
  }

  .migration-platforms__container,
  .migration-process__container {
    min-height: auto;
  }

  .migration-process__summary-title {
    font-size: 16px;
    font-weight: 700;
  }

  .migration-coverage__desc {
    font-size: 16px;
  }

  .migration-platforms__footer p {
    text-align: left;
  }

  .migration-process__header {
    margin-bottom: 50px;
  }
}