/* =================================
 * 홈 페이지 공통 스타일 (Prettier Sync Checked)
 * ================================= */

.section-content {
  flex: 1;
}

/* --- 스와이퍼 인디케이터 --- */
.indicator-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 19px 0;
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  bottom: 30px;
}

.indicator-arrow {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.indicator-arrow:hover {
  opacity: 0.8;
}

.indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: fit-content !important;
}

.indicator.dark-skin .swiper-pagination-bullet {
  background: #cccccc;
  opacity: 1;
}

.indicator.dark-skin .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
  background: #fff;
  border-radius: 999px;
  width: 36px;
  height: 8px;
  border-radius: 9999px;
}

.swiper-pagination--vertical {
  position: absolute;
  display: flex;
  z-index: 1;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.swiper-pagination--vertical .swiper-pagination-bullet {
  opacity: 1;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  margin: 4px 0 !important;
}

.swiper-pagination--vertical .swiper-pagination-bullet-active {
  background: #fff;
  border-radius: 999px;
  border: 1px;
  height: 36px;
  width: 6px;
}

.swiper .swiper-pagination--vertical {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.swiper:hover .swiper-pagination--vertical {
  opacity: 1;
}

/* =================================
 * 히어로 섹션 스타일
 * ================================= */
.hero {
  width: 100%;
  position: relative;
}

.hero-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide[data-theme="dark-navy"] {
  background: #162036;
}

.hero-slide[data-theme="dark-olive"] {
  background: #364a22;
}

.hero-slide[data-theme="dark-charcoal"] {
  background: linear-gradient(180deg, #210e04 38.09%, #7f5239 117.59%, #b27350 139.49%);
}

.hero-slide[data-theme="dark-gradient"] {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d3e 50%, #3a3a4a 100%);
}

.hero-slide[data-theme="light"] {
  background: linear-gradient(135deg, #e8f0ff 0%, #f0f5ff 50%, #e0ecff 100%);
}

.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-image-area {
  flex: 1;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-image {
  width: 100%;
  /* height: 380px; */
  border-radius: 16px;
  overflow: hidden;
}

.hero-membership-swiper {
  width: 100%;
  height: 100%;
}

.hero-membership-swiper .swiper-slide {
  width: 220px;
  height: 380px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* .hero-membership-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.membership-content-desc {
  position: absolute;
  top: 49%;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
  font-family: "Inter", sans-serif;
}

.hero-membership-swiper .swiper-slide.desc-up .membership-content-desc {
  top: 43%;
}

.membership-content-desc .country {
  color: #d40d1f;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.membership-content-desc span {
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.449px;
}

.hero-slide--membership .hero-image-area {
  flex: 1;
  max-width: 700px;
  height: 100%;
  position: relative;
}

.hero-slide--membership .hero-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: calc(-1 * (max(0px, (100vw - 1920px) / 2) + 100px));
  width: auto;
  height: 380px;
  max-width: none;
  border-radius: 16px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  z-index: 1;
}

.hero-slide--membership .hero-text-area {
  flex: 1;
}

.hero-text-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  height: 100%;
  gap: 20px;
  flex: 1;
  justify-content: flex-start;
  padding: 90px 0;
}

.swiper-slide-active .hero-text-area {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide[data-theme="light"] .hero-text-area {
  color: #1a1a2e;
}

.hero-tag {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.hero-slide[data-theme="light"] .hero-tag {
  color: rgba(26, 26, 46, 0.6);
}

.hero-title {
  text-align: left;
  margin: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  line-height: 64px;
  word-break: keep-all;
}

.hero-title--smart-payment {
  letter-spacing: -0.7px;
}

.hero-desc {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
}

.hero-slide[data-theme="light"] .hero-title {
  color: #000;
}

.hero-slide[data-theme="light"] .hero-desc {
  color: #000;
}

.btn-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  height: 42px;
  border-radius: 100px;
  border: 1px solid #fff;
  margin-top: 20px;
  background: transparent;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.btn-hero-cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-slide[data-theme="light"] .btn-hero-cta {
  background: #4483f9;
}

.hero-slide[data-theme="light"] .btn-hero-cta:hover {
  background: #3366cc;
  opacity: 0.9;
}

.hero-swiper {
  height: 680px;
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.hero-swiper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =================================
 * 서비스 요약 섹션 (Summary Section)
 * ================================= */
.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 .section-container {
  width: 100%;
}

.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: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 62px;
}

.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 25px;
  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;
  line-height: 22px;
  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:last-child {
  margin-bottom: 0;
}

.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;
}

/* =================================
 * 브랜드 소개 리스트 섹션 (Brand Intro List Section)
 * ================================= */
.section-intro {
  background: #fff;
}

.section-intro__container {
  width: 100%;
}

.section-intro__title {
  margin-bottom: 104px;
}

.section-intro__subtitle {
  background: linear-gradient(90deg, #63bbff -6.85%, #97c6ff 40.07%, #4483f9 86.98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-list {
  display: flex;
  flex-direction: column;
  gap: 200px;
  width: 100%;
}

.intro-item {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 83px;
  width: 100%;
}

.intro-item--reverse {
  flex-direction: row-reverse;
}

.intro-item__image {
  width: 100%;
  max-width: 770px;
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-item__image img {
  width: 100%;
  height: auto;
  display: block;
}

.intro-item__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 34%;
}

.intro-item__tag {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(0, 0, 0, 0.05);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.2px;
  display: flex;
  min-width: 116px;
  height: 34px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 4px;
  padding: 0 9px;
}

.intro-item__title {
  color: #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

.intro-item__features {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 4px;
}

.intro-item__features li {
  color: #45474c;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.417px;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.intro-item__features li:last-child {
  margin-bottom: 0px;
}

.intro-item__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9.00015 16.1698L5.53015 12.6998C5.34317 12.5129 5.08957 12.4078 4.82515 12.4078C4.56072 12.4078 4.30712 12.5129 4.12015 12.6998C3.93317 12.8868 3.82813 13.1404 3.82812 13.4048C3.82813 13.5358 3.85391 13.6654 3.90402 13.7864C3.95412 13.9073 4.02756 14.0173 4.12015 14.1098L8.30015 18.2898C8.69015 18.6798 9.32015 18.6798 9.71015 18.2898L20.2901 7.70983C20.4771 7.52286 20.5822 7.26926 20.5822 7.00483C20.5822 6.74041 20.4771 6.48681 20.2901 6.29983C20.1032 6.11286 19.8496 6.00781 19.5851 6.00781C19.3207 6.00781 19.0671 6.11286 18.8801 6.29983L9.00015 16.1698Z' fill='black'/%3E%3C/svg%3E")
    no-repeat center center;
  background-size: contain;
}

.btn-intro-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 36px;
  padding: 0 40px;
  background: #4483f9;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-intro-cta:hover {
  background: #3366cc;
  box-shadow: 0 10px 20px rgba(68, 131, 249, 0.2);
}

/* =================================
 * 서비스 비교 섹션 (Comparison Section)
 * ================================= */
.section-comparison {
  background: linear-gradient(180deg, #fff -11.89%, #f4f3f6 138.97%);
}

.section-comparison .section-container {
  flex-direction: column;
  align-items: center;
  padding: 145px 20px;
}

.section-comparison__header {
  text-align: center;
  margin-bottom: 45px;
}

.btn-comparison-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 33px;
  background: #4483f9;
  color: #fff;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  margin: 0 auto;
  margin-bottom: 45px;
  width: fit-content;
  transition: all 0.3s ease;
}

.btn-comparison-cta:hover {
  background: #3366cc;
  box-shadow: 0 8px 20px rgba(68, 131, 249, 0.3);
}

.comparison-table {
  width: 100%;
  max-width: 1200px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.comparison-row {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-cell {
  min-height: 90px;
  flex: 1;
  padding: 19px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1c1c1c;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.comparison-cell__value {
  width: fit-content;
  text-align: left;
  min-width: 87px;
  padding-left: 10px;
}

.comparison-cell__value span {
  color: #1c1c1c;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
}

.comparison-cell:first-child {
  flex: 1.2;
  font-size: 16px;
}

.comparison-cell--highlight {
  background: rgba(68, 131, 249, 0.5);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  padding-left: 30px;
}

.comparison-row--header .comparison-cell {
  color: #1c1c1c;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.comparison-row--header .comparison-cell--highlight {
  background: #4483f9;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}

.check-icon {
  position: relative;
  color: #fff;
  padding-left: 20px;
  text-align: center;
}
.check-icon span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 24px;
}

.check-icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%234483F9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center center;
  background-size: contain;
}

/* =================================
 * 파트너사 섹션 (Partners Section)
 * ================================= */
.section-partners {
  background: #fff;
  border-top: 1px solid #eee;
}

.section-partners .section-container {
  padding: 64px 20px;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 90px 100px;
  list-style: none;
  padding: 0;
  margin: 0;
  min-height: 120px;
  height: 100%;
}

.partner-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.partner-list__item img {
  max-height: 45px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.partner-list__item:hover {
  transform: translateY(-5px);
}

.partner-list__item:hover img {
  filter: grayscale(0%) opacity(1);
}

/* =================================
 * 히어로 하단 컨트롤
 * ================================= */
.hero-controls {
  position: absolute;
  bottom: 90px;
  left: 0;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

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

.hero-controls-spacer {
  flex: 1;
  max-width: 700px;
}

.hero-controls-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  box-sizing: border-box;
}

.hero-progress-bar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-num {
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.current-num {
  color: #fff;
}

.total-num {
  color: rgba(255, 255, 255, 0.3);
}

.hero-controls.is-light .current-num {
  color: #1a1a2e;
}

.hero-controls.is-light .total-num {
  color: rgba(26, 26, 46, 0.2);
}

.hero-controls.is-light .custom-progressbar {
  background-color: rgba(0, 0, 0, 0.1);
}

.hero-controls.is-light .custom-progressbar .fill {
  background-color: #1a1a2e;
}

.hero-controls.is-light .custom-prev,
.hero-controls.is-light .custom-next {
  border-color: rgba(0, 0, 0, 0.2);
  color: #1a1a2e;
}

.custom-progressbar {
  position: relative;
  width: 180px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
}

.custom-progressbar .fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #fff;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-nav-btns {
  display: flex;
  gap: 12px;
}

.custom-prev,
.custom-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.custom-prev:hover,
.custom-next:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* =================================
 * 반응형 스타일
 * ================================= */
@media (max-width: 1280px) {
  .hero-title {
    font-size: 40px;
    letter-spacing: -0.5px;
  }

  .hero-swiper {
    height: 480px;
  }

  .hero-slide-inner {
    flex-direction: column-reverse;
    gap: 25px 100px;
    height: auto;
    padding: 0 24px;
  }

  .hero-image {
    width: 332px;
    height: 143px;
  }

  .hero-text-area {
    padding: 0;
    gap: 10px;
    margin-top: 30px;
  }

  .hero-tag {
    font-size: 15px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 24px;
  }

  .btn-hero-cta {
    display: none;
  }

  .hero-controls {
    bottom: 30px;
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-image-01 {
    width: 332px;
    height: 143px;
  }

  .hero-image-02 {
    width: 280px;
    height: auto;
  }

  .hero-image-03 {
    width: 280px;
    height: auto;
  }

  /* Slide 4 specific mobile layout */
  .hero-slide--membership .hero-image-area {
    height: 280px;
    width: 100%;
    position: relative;
    margin-top: 10px;
    max-width: 800px;
  }

  .hero-slide--membership .hero-image-04 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;

    top: -10px;
    left: unset;
    right: unset;
    transform: unset;
  }

  .hero-membership-swiper img {
    width: 90%;
    height: auto;
  }

  .hero-membership-swiper {
    width: 100%;
    height: 100%;
  }

  .hero-membership-swiper .swiper-slide {
    width: 140px;
    height: 240px;
  }

  .membership-content-desc {
    left: 15px;
    top: 43%;
  }

  .membership-content-desc .country {
    font-size: 10px;
    line-height: 1.2;
  }

  .membership-content-desc span {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
  }

  .hero-image-05 {
    width: 256px;
    height: 200px;
  }

  .section-summary .section-container {
    width: 100%;
    padding: 90px 20px;
  }
  .section-summary .section-wrapper {
    gap: 25px;
  }

  .section-summary__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }

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

  .section-summary__cards {
    gap: 20px;
    padding: 0;
  }

  .benefit-card {
    padding: 0;
    justify-content: center;
    height: 300px;
    gap: 16px;
  }

  .benefit-card__title,
  .benefit-card__quote,
  .benefit-card__detail-item strong,
  .benefit-card__detail-item span {
    font-size: 16px;
    line-height: 21px;
  }

  .section-intro .section-container {
    padding: 62px 20px;
  }

  .section-intro__subtitle {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 34px;
  }

  .section-intro__title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 58px;
  }

  .intro-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 32px;
  }

  .intro-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
  }

  .intro-item__tag {
    display: flex;
    min-width: 120px;
    height: 36px;
  }

  .intro-item__title {
    font-size: 16px;
    line-height: 22px;
  }

  .intro-item__info {
    width: 100%;
    padding: 19px 24px;
    gap: 17px;
  }

  .intro-item__features li {
    font-size: 14px;
  }

  .btn-intro-cta {
    height: 38px;
  }

  .section-comparison .section-container {
    padding: 66px 20px;
  }

  .btn-comparison-cta {
    font-size: 16px;
  }

  .hero-controls-inner {
    padding: 0;
    justify-content: center;
    width: fit-content;
  }

  .hero-controls-spacer {
    display: none;
  }
}

@media (max-width: 768px) {
  .comparison-cell {
    padding: 0;
    font-size: 16px;
  }

  .comparison-cell:first-child {
    flex: 1;
  }

  .comparison-row--header .comparison-cell--highlight {
    font-size: 16px;
  }
  .comparison-row--header .comparison-cell {
    font-size: 18px;
  }

  .hero-text-area {
    margin-top: 24px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 34px;
  }

  .hero-image-01 {
    width: 332px;
    height: 143px;
  }

  .hero-image-02 {
    width: 300px;
    height: auto;
  }

  .hero-image-03 {
    width: 300px;
    height: auto;
  }

  .hero-membership-swiper img {
    width: 85%;
  }

  .intro-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .hero-controls-content {
    gap: 40px;
  }

  .hero-progress-bar {
    gap: 14px;
  }

  .custom-progressbar {
    width: 140px;
  }

  .hero-text-area {
    gap: 8px;
  }

  .benefit-card {
    width: 95%;
    gap: 30px;
    padding: 50px 0;
    height: 380px;
  }

  .section-summary__cards {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card__title {
    font-size: 26px;
    line-height: normal;
  }
  .benefit-card__quote {
    font-size: 20px;
    line-height: 22px;
  }
  .benefit-card__detail-item strong,
  .benefit-card__detail-item span {
    font-size: 18px;
    line-height: 30px;
  }

  .section-summary .section-wrapper {
    gap: 70px;
  }

  .section-intro__subtitle {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .intro-item__image img {
    border-radius: 20px;
  }

  .intro-item__info {
    padding: 24px;
    width: 95%;
    margin: 0 auto;
  }

  .intro-item__title {
    font-size: 22px;
    line-height: normal;
  }

  .intro-item__features li {
    margin-bottom: 15px;
  }
}

.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;
}
