.smart-payment-hero {
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.smart-payment-hero__blur {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.smart-payment-hero__blur--blue {
  width: 1200px;
  height: 600px;
  background: rgba(43, 127, 255, 0.1);
  filter: blur(120px);
  right: -600px;
  top: -100px;
}

.smart-payment-hero__blur--green {
  width: 900px;
  height: 500px;
  background: rgba(0, 201, 80, 0.05);
  filter: blur(100px);
  left: -450px;
  bottom: -100px;
}

.smart-payment-hero__container {
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.smart-payment-hero__content {
  flex: 1;
  max-width: 600px;
}

.smart-payment-hero__subtitle {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.smart-payment-hero__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.36;
  color: #000000;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.smart-payment-hero__info {
  margin-bottom: 40px;
}

.smart-payment-hero__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 8px;
}

.smart-payment-hero__notice {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  display: block;
}

.smart-payment-hero__btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 40px;
  background-color: #4483f9;
  color: #ffffff;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.smart-payment-hero__btn-main:hover {
  background-color: #3366cc;
  box-shadow: 0 8px 20px rgba(68, 131, 249, 0.3);
  transform: translateY(-2px);
}

.smart-payment-hero__image-box {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.smart-payment-hero__main-image {
  width: 100%;
}


/* Section Features */
.section-features {
  padding: 120px 0;
  background-color: #ffffff;
}

.section-features__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.section-features__tag {
  display: inline-block;
  color: #4483f9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-features__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 45px;
  color: #101828;
  letter-spacing: -0.9px;
  margin-bottom: 24px;
}

.section-features__desc {
  font-size: 20px;
  line-height: 1.25;
  color: #6a7282;
  word-break: keep-all;
}

.section-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background-color: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 27px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  gap: 16px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.feature-card__icon-box {
  width: 48px;
  height: 48px;
  background-color: #ecfdf5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.feature-card__icon-box img {
  width: 24px;
  height: 24px;
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #101828;
  text-align: center;
}

.feature-card__desc {
  font-size: 14px;
  line-height: 20px;
  color: #6a7282;
  flex-grow: 1;
}

.feature-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4a5565;
}

.feature-card__item img {
  width: 14px;
  height: 14px;
}

/* Section Process */
.section-process {
  padding: 120px 0;
  background: linear-gradient(180deg, #F9FAFB 0%, #FFF 100%);
}

.section-process__header {
  text-align: center;
  margin-bottom: 64px;
}

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

.section-process__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 45px;
  color: #101828;
  letter-spacing: -0.9px;
}

.section-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-card__icon-box {
  width: 56px;
  height: 56px;
  background-color: #4483f9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(68, 131, 249, 0.3);
}

.process-card__icon-box img {
  width: 24px;
  height: 24px;
}

.process-card__step {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: #4483f9;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.process-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}

.process-card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: #6a7282;
  word-break: keep-all;
  max-width: 220px;
}

/* Connecting line removed for clean design */

/* Section Usage */
.section-usage {
  padding: 120px 0;
  background-color: #f4f5f8;
}

.section-usage__header {
  text-align: center;
  margin-bottom: 70px;
}

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

.section-usage__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 45px;
  color: #101828;
  letter-spacing: -0.9px;
  max-width: 770px;
  margin: 0 auto;
}

.section-usage__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.usage-card {
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 380px;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.usage-card__icon {
  width: 48px;
  height: 48px;
  background-color: #ecfdf5;
  border: 4px solid #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.usage-card__icon img {
  width: 28px;
  height: 28px;
}

.usage-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.usage-card__title {
  font-size: 26px;
  font-weight: 700;
  color: #101828;
}

.usage-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6a7282;
  word-break: keep-all;
  max-width: 310px;
}

.usage-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.usage-tag {
  background-color: #f9fafb;
  color: #6a7282;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  white-space: nowrap;
}


/* Section Pricing */
.section-pricing {
  padding: 120px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.section-pricing__header {
  text-align: center;
  margin-bottom: 64px;
}

.section-pricing__tag {
  display: inline-block;
  color: #4483f9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-pricing__title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.25;
  color: #101828;
  letter-spacing: -0.9px;
  margin-bottom: 24px;
}

.section-pricing__title .highlight {
  color: #4483f9;
}

.section-pricing__desc {
  font-size: 16px;
  line-height: 1.7;
  color: #6a7282;
}

.section-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
  align-items: flex-start;
}

.pricing-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease;
}

.pricing-card--featured {
  border: 1.5px solid #4483f9;
  box-shadow: 0 20px 60px rgba(68, 131, 249, 0.15);
  transform: scale(1.02);
  z-index: 1;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4483f9;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-card__header {
  margin-bottom: 24px;
}

.pricing-card__plan-name {
  font-size: 20px;
  font-weight: 900;
  color: #101828;
  margin-bottom: 8px;
}

.pricing-card__plan-desc {
  font-size: 13px;
  color: #6a7282;
  line-height: 1.5;
}

.pricing-card__price {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card__price .currency {
  font-size: 42px;
  font-weight: 900;
  color: #101828;
}

.pricing-card__price .period {
  font-size: 15px;
  color: #99a1af;
}

.pricing-card__price .nego {
  font-size: 28px;
  font-weight: 900;
  color: #101828;
}

.pricing-card__sub-desc {
  font-size: 12px;
  color: #99a1af;
  margin-bottom: 24px;
}

.pricing-card__fee {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-card__fee--pro {
  background-color: #eef3ff;
}

.fee-rate {
  font-size: 18px;
  font-weight: 900;
  color: #364153;
}

.pricing-card__fee--pro .fee-rate {
  color: #4483f9;
}

.fee-label {
  font-size: 12px;
  color: #6a7282;
}

.pricing-card__button {
  display: block;
  width: 100%;
  padding: 14px 0;
  background-color: #f3f4f6;
  color: #364153;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 32px;
  transition: background-color 0.2s;
}

.pricing-card__button--primary {
  background-color: #4483f9;
  color: #ffffff;
}

.pricing-card__button:hover {
  filter: brightness(0.95);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #364153;
}

.feature-item img {
  width: 16px;
  height: 16px;
}

.feature-item.disabled {
  color: #99a1af;
}

.section-pricing__footer-note {
  text-align: center;
  font-size: 13px;
  color: #99a1af;
}


/* Section Detailed Comparison */
.section-detail-comparison {
  padding: 120px 0;
  background-color: #ffffff;
}

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

.section-detail-comparison__tag {
  display: inline-block;
  color: #4483f9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-detail-comparison__title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.25;
  color: #101828;
  letter-spacing: -0.9px;
}

.comparison-table-v2 {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
}

.comparison-table-v2 table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table-v2 th,
.comparison-table-v2 td {
  padding: 20px 24px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid #f2f4f7;
  color: #344054;
}

.comparison-table-v2 th:first-child,
.comparison-table-v2 td:first-child {
  text-align: left;
  width: 30%;
  color: #101828;
  font-weight: 500;
}

.comparison-table-v2 thead th {
  background-color: #ffffff;
  font-weight: 700;
  color: #667085;
  font-size: 13px;
}

.comparison-table-v2 thead th.column-highlight {
  color: #4483f9;
}

.comparison-table-v2 .column-highlight {
  background-color: #f5f8ff;
}

.comparison-table-v2 .category-row td {
  background-color: #f9fafb;
  font-weight: 700;
  text-align: left;
  color: #101828;
  font-size: 14px;
  padding: 16px 24px;
}

.comparison-table-v2 .text-blue {
  color: #4483f9;
  font-weight: 700;
}

.comparison-table-v2 img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.badge-recommend {
  display: inline-block;
  padding: 2px 8px;
  background-color: #4483f9;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

.table-expand-btn-wrap {
  text-align: center;
  margin-top: 32px;
}

.btn-table-expand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 100px;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-table-expand:hover {
  background-color: #f9fafb;
}


/* Section Fee Calculator */



/* Section 04: 추가 옵션 (Additional Options) */
.section-options {
  padding: 120px 0;
  background-color: #ffffff;
}

.section-options__header {
  text-align: center;
  margin-bottom: 60px;
}

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

.section-options__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 45px;
  color: #101828;
  letter-spacing: -0.9px;
  margin-bottom: 20px;
}

.section-options__desc {
  font-size: 20px;
  line-height: 27px;
  color: #6a7282;
}

.section-options__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.option-card {
  background-color: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.option-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 13px;
}

.option-card__icon-box {
  width: 44px;
  height: 44px;
  background-color: #eef3ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.option-card__icon-box img {
  width: 24px;
  height: 24px;
}

.option-card__badge {
  background-color: #f3f4f6;
  color: #6a7282;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.option-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #101828;
  line-height: 24px;
  margin-bottom: 13px;
}

.option-card__desc {
  font-size: 13px;
  line-height: 20.8px;
  color: #6a7282;
  margin-bottom: 13px;
  flex-grow: 1;
}

.option-card__price {
  font-size: 15px;
  font-weight: 900;
  color: #4483f9;
  line-height: 22.5px;
}

.option-card__price .price-note {
  font-size: 13px;
  font-weight: 400;
  color: #4483f9;
}


/* =================================
 *Section09: 자주 묻는 질문 (FAQ)
 * ================================= */
.migration-faq {
  padding: 120px 0;
  background-color: #ffffff;
  text-align: center;
}

.migration-faq__container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.migration-faq__tagline {
  font-size: 13px;
  font-weight: 700;
  color: #4483f9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.migration-faq__title {
  color: #101828;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.migration-faq__list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.migration-faq__item {
  width: 100%;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.migration-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.migration-faq__question span {
  color: #101828;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.migration-faq__item.active .arrow-icon {
  transform: rotate(180deg);
}

.migration-faq__answer {
  max-height: 0;
  overflow: hidden;
  background: #f9fafb;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.migration-faq__item.active .migration-faq__answer {
  max-height: 500px;
}

.migration-faq__answer-content {
  padding: 24px;
  display: flex;
  gap: 12px;
}

.migration-faq__answer-label {
  font-weight: 700;
  color: #4483f9;
  font-size: 15px;
}

.migration-faq__answer-text {
  text-align: left;
  flex: 1;
}

.migration-faq__answer-text p {
  color: #364153;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  word-break: keep-all;
  text-align: left;
}

/* 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;
}


/* =================================
 * Section10: Final CTA
 * ================================= */
.smart-payment-cta {
  padding: 120px 0;
  background-color: #fff;
}

.smart-payment-cta__banner {
  background: linear-gradient(180deg, #4483f9 0%, #2563eb 100%);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

/* Background blob effects */
.smart-payment-cta__banner::before,
.smart-payment-cta__banner::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(64px);
  z-index: 0;
}

.smart-payment-cta__banner::before {
  background: rgba(255, 255, 255, 0.1);
  top: -80px;
  right: -80px;
}

.smart-payment-cta__banner::after {
  background: rgba(255, 255, 255, 0.05);
  bottom: -80px;
  left: -80px;
}

.smart-payment-cta__banner>* {
  position: relative;
  z-index: 1;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cta-title {
  color: #fff;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 45px;
  letter-spacing: -0.9px;
  margin-bottom: 26px;
}

.cta-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  word-break: keep-all;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.cta-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 24px;
}

.cta-buttons .btn-primary {
  background-color: #fff;
  color: #4483f9;
  gap: 8px;
}

.cta-buttons .btn-primary:hover {
  background-color: #f0f7ff;
  transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.cta-info-list {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}




/* =================================
 * 반응형 스타일 (Responsive)
 * ================================= */

/* Desktop (1280px) */
@media (max-width: 1280px) {
  .smart-payment-hero__title {
    font-size: 38px;
    line-height: 1.4;
  }

  .section-features__header {
    margin-bottom: 48px;
  }
}

/* Desktop (1280px) */
@media (max-width: 1280px) {
  .section-options__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
  }
}

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .smart-payment-hero {
    padding: 40px 0;
    min-height: 990px;
  }

  .smart-payment-hero__title {
    font-size: 38px;
  }

  .smart-payment-hero__container {
    flex-direction: column;
    text-align: center;
  }

  .smart-payment-hero__content {
    max-width: 100%;
  }

  .smart-payment-hero__image-box {
    justify-content: center;
  }

  .usage-card {
    height: auto;
    min-height: 380px;
  }

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

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

  .section-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 32px;
  }

  .pricing-card--featured {
    transform: scale(1);
  }

  .comparison-table-v2 {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    overflow-x: auto;
  }

  .comparison-table-v2 table {
    min-width: 800px;
  }

  .section-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

}

/* Mobile (768px) */
@media (max-width: 768px) {
  .smart-payment-hero {
    padding: 0;
  }

  .smart-payment-hero__container {
    padding: 80px 40px;
  }

  .smart-payment-hero__subtitle {
    font-size: 24px;
  }

  .smart-payment-hero__title {
    font-size: 32px;
  }

  .smart-payment-hero__desc {
    font-size: 16px;
  }

  .smart-payment-hero__content {
    max-width: 560px;
    text-align: left;
  }

  .smart-payment-hero__btn-main {
    width: 100%;
    height: 45px;
  }

  .section-process {
    padding: 80px 0;
  }

  .section-process__grid {
    grid-template-columns: 1fr;
  }

  .section-process__title {
    font-size: 24px;
  }

  .section-usage {
    padding: 80px 0;
  }

  .section-usage__grid {
    grid-template-columns: 1fr;
  }

  .section-usage__title {
    font-size: 28px;
    line-height: 1.3;
  }

  .usage-card {
    padding: 32px 20px;
  }

  .section-pricing {
    padding: 80px 0;
  }

  .section-pricing__title {
    font-size: 24px;
  }

  .section-detail-comparison {
    padding: 80px 0;
  }

  .section-detail-comparison__title {
    font-size: 24px;
  }

  .section-options {
    padding: 80px 0;
  }

  .section-options__title {
    font-size: 28px;
    line-height: 1.3;
  }

  .section-options__desc {
    font-size: 16px;
  }

  .section-options__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }

  .option-card {
    height: auto;
    min-height: 200px;
  }

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

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

  .migration-faq__list {
    padding: 0 20px;
  }

  .migration-faq__question {
    padding: 16px 20px;
  }

  .migration-faq__question span {
    font-size: 14px;
  }

  .section-features {
    padding: 80px 0;
  }

  .section-features__grid {
    grid-template-columns: 1fr;
  }

  .section-features__title {
    font-size: 24px;
  }

  .smart-payment-cta {
    padding: 80px 20px;
  }

  .smart-payment-cta__banner {
    padding: 60px 24px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
  }

  .cta-info-list {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

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


}