/* ============================================================
   home.css — Page-specific styles for the home/landing page
   ============================================================ */

/* ── Hero ── */
@font-face {
  font-family: "SCoreDream1";
  src: url("/assets/fonts/SCDream1.otf") format("opentype");
  font-size: normal;
}

@font-face {
  font-family: "SCoreDream3";
  src: url("/assets/fonts/SCDream3.otf") format("opentype");
  font-size: normal;
}

@font-face {
  font-family: "SCoreDream6";
  src: url("/assets/fonts/SCDream6.otf") format("opentype");
  font-size: normal;
}

.hero {
  background: linear-gradient(135deg, #1e40af 0%, #0369a1 60%, #0891b2 100%);
  padding: 96px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero h1 em {
  color: #93c5fd;
  font-style: normal;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-cta-primary {
  padding: 16px 32px;
  background: white;
  color: var(--primary);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-cta-secondary {
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ── Mockup ── */
.hero-mockup {
  display: flex;
  justify-content: center;
}

.mockup-phone {
  background: white;
  border-radius: 28px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  color: var(--gray-800);
}

.mockup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mockup-logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}

.mockup-greeting {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.mockup-balance {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 16px;
  padding: 20px;
  color: white;
  margin-bottom: 16px;
}

.mockup-balance-label {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 4px;
}

.mockup-balance-amount {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.mockup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.mockup-action-btn {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
}

.mockup-action-btn .icon {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.mockup-list-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.mockup-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.8rem;
}

.mockup-item:last-child {
  border-bottom: none;
}

.mockup-item-name {
  color: var(--gray-700);
  font-weight: 500;
}

.mockup-item-date {
  font-size: 0.7rem;
  color: var(--gray-400);
}

.mockup-item-right {
  text-align: right;
}

.mockup-item-amount {
  font-weight: 700;
  color: var(--primary);
}

.mockup-badge {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 999px;
  background: #d1fae5;
  color: #065f46;
  font-weight: 600;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.feature-icon.blue {
  background: #eff6ff;
}

.feature-icon.green {
  background: #d1fae5;
}

.feature-icon.orange {
  background: #fef3c7;
}

.feature-icon.purple {
  background: #ede9fe;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── Process ── */
.process-section {
  background: var(--gray-50);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.process-step {
  text-align: center;
  padding: 0 8px;
  position: relative;
}

.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.process-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl);

  text-align: center;
  color: white;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-white {
  padding: 14px 32px;
  background: white;
  color: var(--primary);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
}

.cta-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
}

.cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.swiper-button-lock {
  display: block !important;
}

/* ── Home Responsive ── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-steps::before {
    display: none;
  }
}

.hero-new {
  padding: 0;
  min-height: 960px;
}

.hero-new .container {
  display: flex;
  justify-content: space-between;
  border-radius: 63px;
  background-color: #ffffff;
  padding: 0;
  position: relative;
  max-width: 100%;
}

.hero-new-right {
  overflow: hidden;
  height: 100%;
  width: 100%;
  padding-top: 150px;
  background: #f6f8fe;
  position: relative;
}

.hero-new-right::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 150px;
  background-color: #fff;
  bottom: 0;
}

.hero-new-right img.only_web {
  width: 1400px;
  height: 560px;
  object-fit: cover;
  border-radius: 63px;
}

.hero-swiper-wrapper {
  position: relative;
  width: 100%;
}

.hero-new-left {
  /* position: absolute;
  transform: translateY(-50%);
  top: 58%;
  left: 7%;
  z-index: 50; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-new-left h1,
.hero-new-left h2 {
  font-size: 62px;
  font-weight: 600;
  color: #252525;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 32px;
  text-align: center;
}

.hero-new-left h1 strong,
.hero-new-left h2 strong {
  font-weight: 700;
}

.hero-new-left p {
  font-size: 26px;
  color: #757575;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.hero-new-left p strong {
  font-weight: 800;
}

.hero-new-left .link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-new-left .link p {
  font-size: 16px;
  letter-spacing: -1px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 0;
  font-weight: 700;
}

.hero-slide-nav {
  --notch: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  bottom: -1px;
  right: 0px;
  z-index: 10;
  background: #fff;
  border-top-left-radius: 23px;
  padding: 28px 32px;
  width: 453px;
}

.hero-slide-nav::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--notch));
  bottom: 0;
  width: var(--notch);
  height: var(--notch);
  background: #fff;
  -webkit-mask: radial-gradient(
    circle var(--notch) at top left,
    transparent var(--notch),
    #000 0
  );
  mask: radial-gradient(
    circle var(--notch) at top left,
    transparent var(--notch),
    #000 0
  );
  pointer-events: none;
}

.hero-slide-nav::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(-1 * var(--notch));
  width: var(--notch);
  height: var(--notch);
  background: #fff;
  -webkit-mask: radial-gradient(
    circle var(--notch) at top left,
    transparent var(--notch),
    #000 0
  );
  mask: radial-gradient(
    circle var(--notch) at top left,
    transparent var(--notch),
    #000 0
  );
  pointer-events: none;
}

.hero-counter {
  font-size: 0.85rem;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  min-width: 48px;
  text-align: center;
}

.hero-current {
  color: #222;
  font-weight: 700;
}

.hero-sep {
  color: #aaa;
  margin: 0 1px;
}

.hero-total {
  color: #aaa;
}

.hero-nav-divider {
  width: 120px;
  height: 4px;
  background: #d0d0d0;
  border-radius: 2px;
  margin: 0 50px 0 8px;
  overflow: hidden;
}

.hero-nav-progress {
  height: 100%;
  background: #222;
  border-radius: 2px;
  width: 0%;
  transition: width 0.4s ease;
}

.hero-arrow-btn {
  all: unset;
  box-sizing: border-box;
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333333;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.hero-arrow-btn:hover {
  background: #f5f5f5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.hero-arrow-btn:active {
  transform: translateY(-50%) scale(0.94);
}

.hero-arrow-btn svg {
  display: block;
  pointer-events: none;
}

.hero-arrow-btn.hero-prev {
  left: 15%;
}

.hero-arrow-btn.hero-next {
  right: 15%;
}

.hero-arrow-btn.is-disabled,
.hero-arrow-btn:disabled,
.hero-arrow-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  display: flex !important;
}

.heroSwiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-slide-content {
  flex: 1;
  z-index: 2;
  position: relative;
  border-radius: 63px;
  display: flex;
  justify-content: center;
  /* padding: 175px 0 60px; */
}

.hero-slide-content img.only_web {
  width: 100%;
  height: 100%;
  max-height: 600px;
  max-width: 750px;
  object-fit: cover;
  border-radius: 63px;
  display: block;
}

.hero-slide-content .bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 63px;
  z-index: -1;
}

.hero-slide-content .bg img {
  border-radius: 63px;
}

.hero-slide-badge {
  font-size: 18px;
  letter-spacing: -1px;
  color: #333333;
  font-weight: bold;
  font-family: "SCoreDream3";
  margin-bottom: 16px;
  text-decoration: none;
}

.hero-slide-badge,
.hero-slide-badge span {
  text-underline-offset: 1px;
}

.hero-slide-badge {
  display: inline;
  background-image: linear-gradient(#333333, #333333);
  background-repeat: no-repeat;
  background-size: 100% 1.5px;
  background-position: 0 100%;
  padding-bottom: 0px;
}

.hero-slide-badge span {
  color: #ce502a;
  font-weight: 300;
  background-image: linear-gradient(#ce502a, #ce502a);
  background-repeat: no-repeat;
  background-size: 100% 1.5px;
  background-position: 0 100%;
  padding-bottom: 0px;
}

.hero-slide h2 {
  font-size: 49px;
  letter-spacing: -1px;
  color: #333333;
  font-weight: bold;
  font-family: "SCoreDream6";
  line-height: 1.2;
  margin-bottom: 35px;
}

.hero-slide-1 h2 span {
  font-weight: 300;
  font-family: "SCoreDream1";
}

.hero-slide-2 h2,
.hero-slide-3 h2 {
  font-size: 1.7rem;
}

.hero-slide-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 18px;
}

.hero-slide-bg-icon {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 110px;
  opacity: 0.15;
  z-index: 1;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 380px;
}

.hero-tag {
  border-radius: 17px;
  background-color: #159fd2;
  font-size: 15px;
  letter-spacing: 0px;
  color: #ffffff;
  font-weight: 300;
  font-family: "Pretendard";
  padding: 7px 15px;
}

.hero-cta-strip {
  background: white;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid #e4eaf6;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hero-cta-strip-text {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
}

.hero-cta-strip-btn {
  background: #2d6be4;
  color: white;
  padding: 11px 30px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(45, 107, 228, 0.3);
}

.hero-cta-strip-btn:hover {
  background: #1a55c8;
  transform: translateY(-1px);
}

.only_web {
  display: block !important;
}

.only_mo {
  display: none !important;
}

.payment_sect {
  padding: 65px 0;
}

.payment_sect .main3 {
  padding: 100px 0 20px;
  background-color: #fff;
}

.tongpay-cost-section {
  padding: 90px 0 100px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 로그인 박스 */
.login_sect {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 70px;
  padding: 28px 34px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.22);
}

.login_sect p {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.login_sect a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #fff;
  color: #1d4ed8;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.login_sect a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

/* 타이틀 */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  color: #757575;
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}

.section-label-container {
  display: inline-block;
}

.btn-floating-service {
  display: none;
}

@media (max-width: 767px) {
  .section-label-container {
    min-height: 38px;
  }

  .btn-floating-service {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 500px;
    box-sizing: border-box;
    padding: 12px 16px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    transition:
      opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.3s;
    opacity: 1;
    visibility: visible;
  }

  .btn-floating-service.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) translateX(-50%);
  }

  #sideDrawer.open ~ #main-content .btn-floating-service,
  #drawerOverlay.open ~ #main-content .btn-floating-service {
    display: none !important;
  }
}

.section-title {
  color: #252525;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 30px;
}

.section-subtitle {
  margin: 18px 0 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: -0.035em;
}

/* 카드 그리드 */
.cost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* 카드 */
.cost-card {
  position: relative;
  min-height: 230px;
  padding: 38px 28px 32px;
  border: 1px solid #e1e6ef;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  overflow: hidden;
  transition: all 0.28s ease;
}

.cost-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 4px;
  background: #2563eb;
  transform: translateX(-50%);
  transition: width 0.28s ease;
}

.cost-card:hover {
  transform: translateY(-7px);
  border-color: #2563eb;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.cost-card:hover::before {
  width: 100%;
}

/* 아이콘 위치 */
.cost-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e5eaf2;
}

.cost-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

/* 카드 텍스트 */
.cost-card h3 {
  margin: 0;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.cost-card p {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.only_mo {
  display: none;
}

/* 태블릿 */
@media (max-width: 1024px) {
  .tongpay-cost-section {
    padding: 76px 0 86px;
  }

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

  .login_sect {
    margin-bottom: 58px;
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .tongpay-cost-section {
    padding: 58px 0 70px;
  }

  .container {
    padding: 0 16px;
  }

  .login_sect {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 46px;
    padding: 24px 22px;
    border-radius: 16px;
  }

  .login_sect p {
    font-size: 21px;
  }

  .login_sect a {
    width: 100%;
    height: 46px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-subtitle {
    font-size: 15px;
  }

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

  .cost-card {
    min-height: auto;
    padding: 22px 0 18px;
  }

  .cost-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
  }

  .cost-icon img {
    width: 30px;
    height: 30px;
  }

  .cost-card h3 {
    font-size: 17px;
  }

  .cost-card p {
    font-size: 14px;
  }

  .only_mo {
    display: block;
  }
}

/* PRICING (수수료 안내) */
.pricing-section {
  padding: 40px 0 140px 0;
  background: #ffffff;
}

/* highlighted word in the title */
.section-title .point {
  color: var(--primary);
}

/* main visual row: chart + rate badge + phone */
.pricing-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.pricing-visual {
  flex: 1 1 0;
  min-width: 0;
}

/* right column: phone image (top) + description (bottom) split into rows */
.pricing-right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.pricing-right .pricing-visual {
  flex: 0 0 auto;
}

.pricing-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* "수수료율 DOWN" label over the chart */
.pricing-chart {
  position: relative;
}

.pricing-phone {
  display: flex;
  justify-content: center;
}

.pricing-chart-label {
  position: absolute;
  top: 19%;
  right: 19%;
  transform: translateX(-50%);
  color: #1f2937;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.pricing-chart-label .text-light {
  font-weight: 300;
}

/* blue rate badge overlapping between the two visuals */
.pricing-rate {
  position: absolute;
  left: 50%;
  top: 33%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 163px;
  height: 163px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1357c4;
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.35);
}

.pricing-rate span {
  color: #ffffff;
  font-size: 47px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  letter-spacing: -0.03em;
}

/* description below the phone image */
.pricing-desc {
  margin-top: 20px;
  text-align: center;
}

.pricing-desc p {
  margin: 6px 0;
  color: #374151;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.03em;
}

.pricing-desc strong {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-weight: 600 !important;
}

.pricing-desc strong::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 4px;
  width: 100%;
  height: 15px;
  background-color: #f9d93b;
  z-index: -1;
}

.highlight-tag {
  /* display: inline-block;
  background-color: #f9d93b; 
  color: #222222;                           
  padding: 4px 12px;         
  border-radius: 8px;        
  line-height: 1.4; */
}

/* 혜택 */
.benefit-section.blue-bg {
  position: relative;
  padding: 110px 20px;
  background-image: url("/assets/img/benefit_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* 배경 어둡게 */
.benefit-section.blue-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 65, 0.72);
  z-index: 1;
}

/* 블루 그라데이션 오버레이 */
.benefit-section.blue-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 168, 184, 0.78) 0%,
    rgba(36, 47, 193, 0.58) 45%,
    rgba(47, 128, 237, 0.42) 100%
  );
  z-index: 1;
}

/* 내부 컨테이너 */
.benefit-container {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
}

/* 상단 제목 */
.benefit-header {
  margin-bottom: 54px;
  text-align: center;
}

.benefit-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}

.benefit-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.benefit-header p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: -0.035em;
}

/* 카드 리스트 */
.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* 카드 */
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-height: 138px;
  padding: 30px 32px;
  border-radius: 22px;

  /* 투명도 적용 */
  background: rgba(255, 255, 255, 1);

  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 42px rgba(5, 32, 82, 0.24);
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.benefit-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 54px rgba(5, 32, 82, 0.34);
}

/* 아이콘 */
.benefit-icon {
  flex: 0 0 86px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eaf2ff, #f7fbff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon span {
  color: #1557c0;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

/* 이미지 아이콘 사용 시 */
.benefit-icon img {
  object-fit: contain;
  display: block;
}

/* 텍스트 */
.benefit-text {
  flex: 1;
}

.benefit-text h3 {
  margin: 0 0 10px;
  color: #102033;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.benefit-text p {
  margin: 0;
  color: #4b5563;
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: -0.035em;
}

/* 태블릿 */
@media (max-width: 900px) {
  .benefit-section.blue-bg {
    padding: 82px 20px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .benefit-section.blue-bg {
    padding: 66px 16px;
  }

  .benefit-header {
    margin-bottom: 36px;
    text-align: center;
  }

  .benefit-label {
    font-size: 12px;
    padding: 7px 15px;
  }

  .benefit-header h2 {
    font-size: 30px;
  }

  .benefit-header p {
    font-size: 16px;
  }

  .benefit-header p br {
    display: none;
  }

  .benefit-card {
    gap: 16px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .benefit-icon span {
    font-size: 23px;
  }

  .benefit-text h3 {
    font-size: 17px;
  }

  .benefit-text p {
    font-size: 14px;
  }
}

/* 혜택 끝 */

/* 하단 뉴스 및 카드혜택 */
.news-info-section {
  padding: 110px 20px 120px;
  background: #ffffff;
}

.news-info-container {
  max-width: 980px;
  margin: 0 auto;
}

.news-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.ni-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  text-decoration: none;
}

.ni-head h2 {
  margin: 0;
  color: #1c2333;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ni-head-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #1c2333;
  border-bottom: 2px solid #1c2333;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}

.ni-head:hover .ni-head-arrow {
  transform: rotate(-45deg) translate(2px, 2px);
}

.ni-faq-box {
  padding: 14px 12px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #eef1f6;
}

.ni-faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ni-faq-list li + li {
  border-top: 1px solid #f2f4f8;
}

.ni-faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 12px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.ni-faq-q:hover {
  background: #f7f9fd;
}

.ni-faq-item.is-open .ni-faq-q {
  background: #f7f9fd;
}

.ni-faq-item.is-open .ni-faq-txt {
  color: #2f6bf3;
  font-weight: 700;
  white-space: normal;
}

.ni-arrow {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-right: 1.6px solid #b9c0cd;
  border-bottom: 1.6px solid #b9c0cd;
  transform: rotate(-45deg);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease;
}

.ni-faq-item.is-open .ni-arrow {
  transform: rotate(45deg) translate(-2px, -2px);
  border-color: #2f6bf3;
}

.ni-faq-a {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.ni-faq-a-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 12px 18px 12px;
}

.ni-a {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e8effd;
  color: #2f6bf3;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ni-faq-a-body {
  flex: 1;
  min-width: 0;
  color: #5d6470;
  font-size: 13.5px;
  line-height: 1.75;
  letter-spacing: -0.03em;
  word-break: break-word;
}

.ni-faq-a-body p {
  margin: 0 0 8px;
}

.ni-faq-a-body p:last-child {
  margin-bottom: 0;
}

.ni-faq-a-body img {
  max-width: 100%;
  height: auto;
}

.ni-q {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2f6bf3;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ni-faq-txt {
  flex: 1;
  min-width: 0;
  color: #3d4453;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
  word-break: auto-phrase;
}

.ni-arrow {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-right: 1.6px solid #b9c0cd;
  border-bottom: 1.6px solid #b9c0cd;
  transform: rotate(-45deg);
}

.ni-notice-list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.ni-notice-list li {
  border-bottom: 1px solid #eef1f6;
}

.ni-notice-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 4px;
  text-decoration: none;
}

.ni-notice-txt {
  flex: 1;
  min-width: 0;
  color: #3d4453;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ni-notice-list a:hover .ni-notice-txt {
  color: #2f6bf3;
}

.ni-notice-date {
  flex: 0 0 auto;
  color: #a8b0be;
  font-size: 12px;
  font-weight: 500;
}

/* 무이자 할부 테이블 */
.installment-table-wrap {
  width: 100%;
  overflow: hidden;
}

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

.installment-table tr {
  border-bottom: 1px solid #edf1f7;
}

.installment-table tr:nth-child(even) {
  background: #f4f7fb;
}

.installment-table th,
.installment-table td {
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.04em;
  text-align: left;
  vertical-align: middle;
}

.installment-table th {
  color: #111827;
  font-weight: 700;
}

.installment-table td {
  color: #2563eb;
  font-weight: 700;
}

/* 공지사항: bullet list style (titles only, no dates/borders) */
.notice-table {
  table-layout: fixed;
}

/* cancel the shared table borders and zebra background */
.notice-table tr,
.notice-table tr:nth-child(even) {
  border-bottom: none;
  background: transparent;
}

.notice-table th {
  position: relative;
  width: 100%;
  max-width: 0;
  height: auto;
  padding: 9px 0 9px 18px;
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* bullet marker before each title */
.notice-table th::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2b2b2b;
}

/* hide the date column (design shows titles only); keeps the empty-state row visible */
.notice-table th + td {
  display: none;
}

.notice-table tr:hover th {
  color: #2563eb;
}

.notice-pin {
  display: inline-flex;
  align-items: center;
  height: 20px;
  margin-right: 6px;
  padding: 0 8px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.02em;
  vertical-align: middle;
}

/* 태블릿 */
@media (max-width: 1024px) {
  .news-info-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-height: auto;
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .news-info-section {
    padding: 64px 16px 72px;
  }

  .news-info-header {
    /* text-align: left; */
    margin-bottom: 34px;
  }

  .section-badge {
    height: 30px;
    padding: 0 14px;
    font-size: 12px;
  }

  .news-info-header h2 {
    font-size: 30px;
  }

  .news-info-header p {
    margin-top: 14px;
    font-size: 15px;
  }

  .news-card {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .news-card-head h3 {
    font-size: 21px;
  }

  .news-arrow {
    width: 36px;
    height: 36px;
    /* font-size: 36px;
    line-height: 28px; */
  }

  .news-intro-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-thumb {
    width: 100%;
    height: 180px;
  }

  .news-text p {
    font-size: 14.5px;
  }

  .installment-table {
    /* min-width: 520px; */
  }

  .installment-table-wrap {
    overflow-x: auto;
  }

  .installment-table th,
  .installment-table td {
    height: 38px;
    font-size: 13.5px;
  }
}

/* 뉴스 & 카드 끝 */

/* 온라인 문의 */
.cta-form-section {
  padding: 120px 20px 130px;
  background: #f6f8fc;
}

.cta-form-container {
  max-width: 1030px;
  margin: 0 auto;
}

.cta-form-title {
  margin: 0 0 60px;
  color: #252525;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.045em;
  text-align: center;
}

.cta-form-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.cta-form-left {
  min-width: 0;
}

.online-form {
  width: 100%;
  max-width: 480px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  color: #252525;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: left;
}

.form-group label em {
  margin-left: 2px;
  color: #477eec;
  font-style: normal;
}

.form-group input,
.form-group textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e4e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: #1c2333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  box-sizing: border-box;
}

.form-group textarea {
  height: 92px;
  padding: 15px 16px;
  resize: none;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
  font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2f6bf3;
  box-shadow: 0 0 0 3px rgba(47, 107, 243, 0.12);
}

.cta-submit-btn {
  width: 100%;
  height: 52px;
  margin-top: 38px;
  border: 0;
  border-radius: 999px;
  background: #4a7dfb;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-submit-btn::after {
  content: none;
}

.cta-submit-btn:hover {
  background: #2f6bf3;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(47, 107, 243, 0.26);
}

.cta-submit-btn:disabled {
  background: #b6c6ee;
  transform: none;
  box-shadow: none;
  cursor: default;
}

.agree-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.agree-box label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #5d6470;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.03em;
  cursor: pointer;
}

.agree-box input {
  width: 15px;
  height: 15px;
  accent-color: #2f6bf3;
}

.agree-box a {
  color: #9aa2b1;
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.agree-box a:hover {
  color: #2f6bf3;
}

.cta-form-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cta-form-right img {
  display: block;
  width: 100%;
  max-width: 430px;
  height: auto;
}

/* 개인정보 동의 */
.agree-box {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 12px;
  margin: 6px 0 20px;
  padding: 14px 16px;
  border-radius: 12px;
  /* background: #f1f5f9; */
}

.agree-box label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.035em;
  cursor: pointer;
}

.agree-box input {
  width: 16px;
  height: 16px;
  accent-color: #2563eb;
}

.agree-box a {
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

/* 버튼 */
.cta-submit-btn {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 500px;
  background: #477eec;
  box-shadow: 0 10px 20px 0 rgba(71, 126, 236, 0.2);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cta-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

/* 태블릿 */
@media (max-width: 1024px) {
  .cta-form-box {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 42px;
  }

  .cta-form-left {
    text-align: center;
  }

  .cta-info-list {
    justify-content: center;
  }
}

/* 온라인 문의 끝 */

.main-tit {
  color: rgb(0, 13, 54);
  font-size: 36px;
  font-weight: 800;
  text-align: center;
}

.main-txt {
  margin-top: 30px;
  color: rgb(76, 76, 76);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.main3-grp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 80px auto;
}

.main3-grp > li {
  color: rgb(0, 13, 54);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.main3-grp > li .imgbx.main {
  width: 100px;
}

/* "결제" step with overlapping check badge */
.main3-grp > li.pay-step {
  gap: 42px;
}

.main3-grp > li.pay-step .imgbx.main {
  position: relative;
}

.pay-check {
  position: absolute;
  top: 33px;
  right: -11px;
}

.cont {
  padding: 0px 0px 150px;
}

.main2-grp {
  margin-top: 80px;
  display: flex;
  gap: 30px;
}

.main2-grp > li {
  position: relative;
  width: 10%;
  cursor: pointer;
  height: 485px;
  transition: 0.3s;
  border-radius: 60px;
  padding: 60px;
}

.main2-grp > li {
  background: rgb(240, 246, 249);
}

.main2-grp > li.on {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.main2-grp > li.on {
  aspect-ratio: 1100 / 500;
  width: calc(80% - 60px);
  border-radius: 30px;
}

.main2-grp > li.on:nth-child(1) {
  background-image: url(/assets/img/main2_back1.png);
}

.main2-grp > li.on:nth-child(2) {
  background-image: url(/assets/img/main2_back2.png);
}

.main2-grp > li.on:nth-child(3) {
  background-image: url(/assets/img/main2_back3.png);
}

.main2-grp > li .showBox {
  flex-direction: column;
  display: none;
  gap: 40px;
}

.main2-grp > li.on .showBox {
  display: flex;
}

.main2-grp .main2Tit {
  font-size: 32px;
  color: rgb(255, 255, 255);
  font-weight: 800;
  line-height: 1.5;
}

.main2-grp .mo_br {
  display: none;
}

.main2-grp .main2Detail {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.main2-grp .hiddenBox {
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
}

.main2-grp > li.on .hiddenBox {
  display: none;
}

.main2-grp > li .coumnTxt {
  writing-mode: sideways-lr;
  color: rgb(138, 163, 181);
  z-index: 2;
  position: relative;
  font-size: 20px;
  letter-spacing: 1px;
  text-orientation: sideways;
  transition: 0.3s;
}

.main2-grp .hiddenBox > img {
  max-height: 30px;
  width: 30px;
  max-width: unset;
}

.white_bg {
  background-color: #fff;
  overflow: hidden;
}

.newMain3_2 {
  background: #3159e5;
  padding: 100px 0 80px;
  margin: 0;
  overflow: hidden;
}

.newMain3_2 .container {
  display: block;
  max-width: 1240px;
  margin: 0 auto 55px;
}

.newMain3_2 .main-tit {
  color: #ffffff;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  letter-spacing: -0.04em;
  margin: 0;
}

.review_swiper {
  width: 100%;
  padding: 10px 0 0;
  overflow: visible;
}

.review_swiper .swiper-wrapper {
  align-items: stretch;
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

.review_swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  width: 265px;
  /* min-height: 300px;
  height: auto; */
  box-sizing: border-box;
  padding: 30px;
  border-radius: 14px;
  background: #ffffff;
  border: none;
  margin: 0;
  opacity: 0.28;
  transition:
    opacity 0.45s ease,
    box-shadow 0.45s ease;
  flex-shrink: 0;
}

.review_swiper .swiper-slide img {
  max-width: none;
}

.review_swiper .swiper-slide-visible {
  opacity: 0.55;
}

.review_swiper .swiper-slide-prev,
.review_swiper .swiper-slide-next {
  opacity: 1;
}

.review_swiper .swiper-slide-active {
  opacity: 1;
  box-shadow: 0 20px 44px rgba(8, 26, 90, 0.28);
}

.review_swiper .hLine {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.review_swiper .reviewName {
  font-size: 14px;
  color: #757575;
  font-weight: 600;
  margin: 0;
}

.review_swiper .reviewRating {
  display: flex;
  gap: 2px;
}

.review_swiper .reviewRating img {
  width: 12px;
  height: 12px;
  display: block;
}

.review_swiper .reviewCont {
  font-size: 14px;
  line-height: 1.7;
  color: #454545;
  margin: 0 0 54px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
}

.review_swiper .reviewPrice {
  display: block;
  margin-top: auto;
}

.review_swiper .priceTxt {
  font-size: 12px;
  color: #757575;
}

.review_swiper .priceNum {
  color: #252525;
  font-size: 16px;
  font-weight: 800;
  margin: 0;
}

.review_swiper .review_pagination {
  position: static;
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.review_swiper .review_pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  background: #ffffff;
  opacity: 0.4;
  transition:
    width 0.3s ease,
    opacity 0.3s ease;
}

.review_swiper .review_pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 22px;
  border-radius: 4px;
}

.review_swiper .review_pagination {
  position: static;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.review_swiper .rv-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0.4;
  cursor: pointer;
  transition:
    width 0.3s ease,
    opacity 0.3s ease;
}

.review_swiper .rv-bullet.is-active {
  opacity: 1;
}

/* 하단 마지막 정보 */
.cta-white-section {
  padding: 90px 0;
  background: #ffffff;
}

.cta-banner-white {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 58px 64px;
  border-radius: 28px;
}

.cta-banner-white::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  display: none;
}

.cta-banner-white::after {
  content: "";
  position: absolute;
  right: 110px;
  bottom: -120px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.1);
  display: none;
}

.cta-text {
  position: relative;
  z-index: 2;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  margin-bottom: 18px;
  padding: 0 18px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.cta-banner-white h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.065em;
}

.cta-banner-white p {
  margin: 18px 0 0;
  color: #52657f;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cta-btn-primary,
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-btn-primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.cta-btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.3);
}

.cta-btn-outline {
  background: #ffffff;
  color: #2563eb;
  border: 1px solid #bfd3ff;
}

.cta-btn-outline:hover {
  background: #eff6ff;
  transform: translateY(-2px);
}

.hero-new-left .link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  .hero-new-right {
    /* width: calc(100% - 30vw); */
  }

  .hero-new-left {
    padding: 75px 0px 70px 1vw;
  }

  .hero-new-left h1 {
    font-size: 30px;
  }

  .main2-grp > li.on {
    width: calc(71% - 60px);
  }

  .hero-new {
    background: #fff;
  }

  .hero-new-left p {
    margin-bottom: 35px;
  }

  .pricing-desc p {
    font-size: 26px;
  }
}

/* 태블릿 */
@media (max-width: 1024px) {
  .cta-banner-white {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 42px;
  }

  .cta-actions {
    width: 100%;
  }
}

.hero-mo {
  padding: 16px;
}

/* Single background image — swap the URL here. No other background colors. */
.hero-mo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  padding: 30px 0 0 30px;
  border-radius: 24px;
  overflow: hidden;
  background: url("/assets/img/hero-mo.png") center center / cover no-repeat;
}

/* text block (kept on the left, above the graphic) */
.hero-mo-text {
  position: relative;
  z-index: 2;
  width: 62%;
}

.hero-mo-text h1 {
  margin: 0 0 18px;
  color: #1f2430;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.04em;
  font-size: 28px;
}

.hero-mo-text h1 .sm {
  font-size: 0.62em;
}

.hero-mo-text h1 strong {
  color: #6f30ee;
  font-weight: 800;
}

.hero-mo-text p {
  margin: 0;
  color: #5d6470;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.03em;
  font-size: 14px;
}

/* bottom row: start button (left) + nav (right) */
.hero-mo-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 12px;
  flex-wrap: nowrap;
}

.hero-mo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;
  max-width: 283px;

  padding: 13px 24px;
  border-radius: 999px;
  background: #2f6bf3;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(47, 107, 243, 0.32);
}

.hero-mo-btn img {
  width: 14px;
  height: 14px;
}

/* nav — mirrors the desktop .hero-slide-nav details, scaled down for mobile */
.hero-mo-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-around;
}

/* counter (current / total) — same as desktop .hero-counter */
.hero-mo-counter {
  font-size: 12px;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  min-width: 36px;
  text-align: center;
  white-space: nowrap;
}

.hero-mo-current {
  color: #222;
  font-weight: 700;
}

.hero-mo-sep {
  color: #aaa;
  margin: 0 1px;
}

.hero-mo-total {
  color: #aaa;
}

.hero-mo-controls {
  display: flex;
  gap: 10px;
}

/* progress bar — same colors as desktop .hero-nav-divider / .hero-nav-progress */
.hero-mo-divider {
  width: 120px;
  height: 3px;
  background: #d0d0d0;
  border-radius: 2px;
  margin: 0 14px 0 6px;
  overflow: hidden;
}

.hero-mo-progress {
  height: 100%;
  background: #222;
  border-radius: 2px;
  width: 60%;
  /* static for now; set to 0% and let JS drive it once the mobile slider is wired */
  transition: width 0.4s ease;
}

/* circular buttons — same as desktop .hero-nav-arrow / .hero-nav-pause */
.hero-mo-arrow,
.hero-mo-pause {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.hero-mo-arrow:hover,
.hero-mo-pause:hover {
  background: #f0f0f0;
}

#main-content {
  background: #fff;
}

:root {
  --mgmt-w-start: 770px;
  --mgmt-h: 600px;
  --mgmt-pin-distance: 700px;
  --mgmt-top-offset: 100px;
}

.management_sect {
  position: relative;
  height: calc(var(--mgmt-h) + var(--mgmt-pin-distance));
  margin: 100px 0;
}

.managemnt_detail {
  width: var(--mgmt-w-start);
  max-width: 95vw;
  height: var(--mgmt-h);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.managemnt_detail.is-pinned {
  position: fixed;
  top: var(--mgmt-top-offset);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 5;
  border-radius: 0;
}

.managemnt_detail.is-done {
  position: absolute;
  top: var(--mgmt-pin-distance);
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  border-radius: 0;
}

.managemnt_detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.management_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.text-sub {
  display: inline-block;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition:
    max-width 0.5s ease,
    opacity 0.4s ease;
}

.text-sub.is-visible {
  max-width: 400px;
  opacity: 1;
}

.feature_sect {
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 20px;
}

.feature_sect .inner {
  max-width: 940px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 180px;
  align-items: center;
  margin: 0 auto;
}

.feature_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.feature_row.reverse {
  flex-direction: row-reverse;
}

.feature_text {
  flex: 1;
  max-width: 420px;
}

.feature_label {
  display: block;
  font-size: 26px;
  font-weight: 400;
  color: #757575;
  margin-bottom: 14px;
}

.feature_title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  color: #252525;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}

.feature_title .point {
  color: #477eec;
}

.feature_desc {
  font-size: 20px;
  line-height: 1.7;
  color: #454545;
  font-weight: 500;
}

.feature_visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.cost2_sect {
  padding: 70px 0;
  background: #ffffff;
}

.cost2_sect .container {
  max-width: 970px;
}

.cost2_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 130px;
}

.cost2_grid:not(.is-swiper) .cost2_track {
  display: contents;
}

.cost2_card {
  position: relative;
  min-height: 315px;
  padding: 28px 26px;
  border-radius: 18px;
  background: #f6f7fa;
  transition: all 0.28s ease;
}

.cost2_card:hover {
  transform: translateY(-6px);
  background: #eef1f7;
}

.cost2_tag {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #757575;
  margin-bottom: 10px;
}

.cost2_desc {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  color: #252525;
  letter-spacing: -0.03em;
}

.cost2_icon {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 52px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cost2_feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cost2_feature_text {
  flex: 1;
  max-width: 420px;
}

.cost2_feature_text .feature_label {
  display: block;
  font-size: 26px;
  color: #757575;
  margin-bottom: 35px;
}

.cost2_feature_text .feature_title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #252525;
  letter-spacing: -0.03em;
  margin: 0 0 35px;
}

.cost2_feature_text .feature_title .point {
  color: #477eec;
}

.cost2_feature_text .feature_desc {
  font-size: 20px;
  line-height: 1.7;
  color: #454545;
}

.cost2_feature_visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.pricing2_sect {
  padding: 130px 0 0px;
  background: #f7f9fd;
}

.pricing2_sect .section-header {
  margin-bottom: 45px;
}

.pricing2_visual {
  display: flex;
  justify-content: center;
}

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

.process2_sect {
  padding: 100px 0;
  background: #ffffff;
}

.process2_row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.process2_visual {
  flex: 0 0 auto;
}

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

.process2_text {
  flex: 0 0 auto;
  max-width: 480px;
}

.process2_text .feature_label {
  display: block;
  font-size: 26px;
  color: #757575;
  margin-bottom: 30px;
}

.process2_text .feature_title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #252525;
  letter-spacing: -0.03em;
  margin: 0 0 35px;
}

.process2_text .feature_title .point {
  color: #477eec;
}

.process2_text .feature_desc {
  font-size: 20px;
  line-height: 1.4;
  color: #454545;
  font-weight: 500;
}

.apply_sect {
  position: relative;
  padding: 100px 0 375px;
  background: #ffffff;
  overflow: hidden;
}

.apply_container {
  position: relative;
  z-index: 2;
}

.apply_text {
  max-width: 380px;
  margin-top: 70px;
}

.apply_text .feature_label {
  display: block;
  font-size: 26px;
  color: #757575;
  margin-bottom: 14px;
}

.apply_text .feature_title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #252525;
  letter-spacing: -0.03em;
  margin: 0 0 35px;
}

.apply_text .feature_title .point {
  color: #477eec;
}

.apply_text .feature_desc {
  font-size: 20px;
  line-height: 1.4;
  color: #454545;
}

.apply_visual {
  position: absolute;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
  width: 50%;
  z-index: 1;
  overflow: hidden;
}

.apply_swiper {
  width: 100%;
  overflow: visible;
}

.apply_visual .apply_pagination {
  display: none;
}

.apply_swiper .apply_track {
  display: flex;
  align-items: center;
}

.apply_swiper .apply_slide {
  position: relative;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  flex: 0 0 400px;
  height: 580px;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  opacity: 0.5;
  transform: scale(0.85);
}

.apply_swiper .apply_slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.apply_swiper .apply_slide .apply_on,
.apply_swiper .apply_slide .apply_off {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.45s ease;
}

.apply_swiper .apply_slide .apply_off {
  opacity: 1;
  z-index: 1;
}

.apply_swiper .apply_slide .apply_on {
  opacity: 0;
  z-index: 2;
}

.apply_swiper .apply_slide.swiper-slide-active .apply_on {
  opacity: 1;
}

.apply_swiper .apply_slide.swiper-slide-active .apply_off {
  opacity: 0;
}

@media (max-width: 768px) {
  :root {
    --mgmt-w-start: 320px;
    --mgmt-h: 520px;
    --mgmt-pin-distance: 480px;
    --mgmt-top-offset: 80px;
  }

  .only_web {
    display: none !important;
  }

  .only_mo {
    display: block !important;
  }

  .management_sect {
    margin: 40px 0;
  }

  .managemnt_detail {
    max-width: calc(100% - 32px);
    border-radius: 20px;
  }

  .managemnt_detail.is-done {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
  }

  .management_text {
    font-size: 24px;
    line-height: 1.4;
  }

  .hero-new {
    min-height: auto;
  }

  .hero-new-right {
    /* padding-top: 90px; */
    padding-top: 0px;
  }

  .hero-new-left h1 {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero-new-left p {
    font-size: 20px;
    line-height: 1.5;
  }

  .feature_sect {
    padding: 64px 20px;
  }

  .feature_sect .inner {
    gap: 90px;
  }

  .feature_row,
  .feature_row.reverse {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .feature_text {
    max-width: 100%;
    order: 1;
  }

  .feature_visual {
    order: 2;
  }

  .feature_visual img {
    max-width: 280px;
    margin-left: 55px;
  }

  .feature_visual.spe img {
    max-width: 380px;
    margin-left: 0px;
  }

  .feature_label {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .feature_title {
    font-size: 30px;
    line-height: 1.35;
    margin-bottom: 16px;
  }

  .feature_desc {
    font-size: 16px;
    line-height: 1.65;
  }

  .cost2_sect {
    padding: 50px 0;
  }

  .cost2_sect .container {
    max-width: 100%;
    padding: 0;
  }

  .cost2_sect .section-header {
    padding: 0 16px;
  }

  .section-label {
    font-size: 18px;
  }

  .section-title {
    font-size: 30px;
  }

  .cost2_grid {
    display: block;
    grid-template-columns: none;
    margin-bottom: 60px;
    padding: 0 0 0 16px;
  }

  .cost2_grid.is-swiper {
    overflow: hidden;
  }

  .cost2_grid.is-swiper .cost2_track {
    display: flex;
    align-items: stretch;
    box-sizing: content-box;
  }

  .cost2_card {
    flex-shrink: 0;
    width: 280px;
    min-height: 315px;
    height: auto;
    margin: 0;
    padding: 30px;
  }

  .cost2_card:hover {
    transform: none;
    background: #f6f7fa;
  }

  .cost2_tag {
    font-size: 18px;
  }

  .cost2_desc {
    font-size: 24px;
    line-height: 1.4;
  }

  .cost2_icon {
    right: 20px;
    bottom: 18px;
    width: 52px;
    height: 60px;
  }

  .cost2_feature {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .cost2_feature_text {
    max-width: 100%;
    order: 1;
  }

  .cost2_feature_visual {
    order: 2;
  }

  .cost2_feature_visual img {
    max-width: 380px;
    margin-left: 20px;
  }

  .cost2_feature_text .feature_label {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .cost2_feature_text .feature_title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .cost2_feature_text .feature_desc {
    font-size: 16px;
  }

  .pricing2_sect {
    padding: 100px 0 0;
    position: relative;
  }

  .pricing2_sect::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 27vw;
    background-color: #fff;
    z-index: 1;
  }

  .pricing2_sect .container {
    padding: 0;
  }

  .pricing2_sect .section-header {
    margin-bottom: 28px;
  }

  .pricing2_visual img {
    width: 380px;
    position: relative;
    z-index: 2;
  }

  .process2_sect {
    padding: 60px 0;
  }

  .process2_row {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .process2_text {
    max-width: 100%;
    order: 1;
  }

  .process2_visual {
    order: 2;
  }

  .process2_visual img {
    max-width: 380px;
  }

  .process2_text .feature_label {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .process2_text .feature_title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .process2_text .feature_desc {
    font-size: 16px;
  }

  .apply_sect {
    padding: 60px 0 100px;
  }

  .apply_text {
    max-width: 100%;
    text-align: center;
    margin-top: 0;
  }

  .apply_text .feature_label {
    font-size: 18px;
  }

  .apply_text .feature_title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .apply_text .feature_desc {
    font-size: 16px;
  }

  .apply_visual {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 32px;
    overflow: hidden;
  }

  .apply_swiper {
    overflow: hidden;
  }

  .apply_swiper .apply_slide,
  .apply_swiper .apply_slide.swiper-slide-active {
    width: 360px;
    min-width: 360px;
    max-width: 360px;
    flex: 0 0 360px;
    height: 480px;
  }

  .apply_visual .apply_pagination {
    display: block;
    bottom: 50px !important;
  }

  .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
  }

  .newMain3_2 {
    padding: 60px 0;
    margin: 0;
  }

  .newMain3_2 .container {
    display: block;
    margin: 0 auto 34px;
    padding: 0 16px;
  }

  .newMain3_2 .main-tit {
    font-size: 30px;
    text-align: center;
  }

  .review_swiper .swiper-slide {
    width: 300px;
    padding: 24px;
    border-radius: 14px;
    border: none;
    margin-top: 0;
    opacity: 0.35;
  }

  .review_swiper .swiper-slide-active {
    opacity: 1;
  }

  .review_swiper .hLine {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .review_swiper .reviewName {
    font-size: 14px;
  }

  .review_swiper .reviewCont {
    font-size: 14px;
    line-height: 1.65;
    margin: 16px 0 30px;
    -webkit-line-clamp: 6;
    min-height: auto;
  }

  .review_swiper .priceTxt {
    font-size: 12px;
  }

  .review_swiper .priceNum {
    font-size: 16px;
  }

  .news-info-section {
    padding: 120px 16px 120px;
  }

  .ni-head h2 {
    font-size: 28px;
  }

  .news-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ni-banner-visual img {
    width: 100%;
  }

  .ni-notice-txt {
    max-width: 100%;
  }

  .ni-notice-list {
    margin: 0 0 40px;
  }

  .ni-notice-list a {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cta-form-section {
    padding: 80px 16px 70px;
  }

  .cta-form-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
  }

  .cta-form-left {
    order: 2;
    text-align: left;
  }

  .cta-form-right {
    order: 1;
    padding: 0;
  }

  .cta-form-title {
    font-size: 30px;
    margin-bottom: 28px;
    text-align: center;
  }

  .online-form {
    max-width: 100%;
    margin: 0 auto;
  }

  .cta-form-right img {
    max-width: 300px;
  }

  .cta-white-section {
    padding: 60px 0;
  }

  .cta-banner-white {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 34px 24px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .cta-btn-primary,
  .cta-btn-outline {
    width: 100%;
  }

  .hero-arrow-btn {
    width: 38px;
    height: 38px;
  }

  .hero-arrow-btn.hero-prev {
    left: 14px;
  }

  .hero-arrow-btn.hero-next {
    right: 14px;
  }
}

@media (max-width: 400px) {
  .managemnt_detail {
    max-width: calc(100% - 24px);
  }

  :root {
    --mgmt-w-start: 280px;
  }
}

@media screen and (max-width: 381px) {
  .feature_visual.spe img {
    max-width: 100%;
    margin-left: 0px;
  }

  .cost2_feature_visual img {
    max-width: 95%;
    margin-left: 20px;
  }

  .apply_swiper .apply_slide,
  .apply_swiper .apply_slide.swiper-slide-active {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    flex: 0 0 320px;
    height: 440px;
  }

  .user-menu .user-avatar-1 {
    display: none !important;
  }

  .process2_visual img {
    max-width: 100%;
  }

  .pricing2_visual img {
    width: 100%;
    position: relative;
    z-index: 2;
  }
}
