/* ============================================================
   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);
  padding: 56px;
  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); }

/* ── 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; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-mockup { display: none; }
  .hero h1 { font-size: 2.25rem; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { padding: 40px 24px; }
  .cta-banner h2 { font-size: 1.5rem; }
}

.hero-new {
  background: #fff;
  padding: 0 48px 44px;
}

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

.hero-new-left {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 7%;
  z-index: 2;
}
 
.hero-new-left h1 {
  font-size: 50px;
  font-weight: 700;
  color: #252525;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 26px;
}
.hero-new-left h1 strong { 
  font-weight: 700;
}
 
.hero-new-left p {
  font-size: 20px;
  color: #5b5b5b;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 42px;
}
.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: #0096ff;
  margin-bottom: 0;
}
 
.hero-slide-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  bottom: -1px;
  right: 0px;
  z-index: 10;
  background: #fff;
  border-top-left-radius: 32px;
  padding: 28px 32px;
}

.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: 3px;
  background: #d0d0d0;
  border-radius: 2px;
  margin: 0 8px;
  overflow: hidden;
}

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

.hero-nav-arrow,
.hero-nav-pause {
  width: 30px;
  height: 30px;
  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-nav-arrow:hover,
.hero-nav-pause:hover {
  background: #f0f0f0;
}

.hero-nav-arrow img,
.hero-nav-pause img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

 
.hero-new-right {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.heroSwiper {
  width: 100%;
  height: 100%;
}
 
.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;
  /* padding: 175px 0 60px; */
}

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



.eumpay-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: 46px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.section-title {
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.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(3, 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) {
  .eumpay-cost-section {
    padding: 76px 0 86px;
  }

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

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

/* 모바일 */
@media (max-width: 640px) {
  .eumpay-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-title {
    font-size: 28px;
  }

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

  .section-subtitle br {
    display: none;
  }

  .cost-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cost-card {
    min-height: auto;
    padding: 32px 22px 28px;
  }

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


/* 혜택 */
.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.0);

  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 56px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  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 {
  width: 28px;
  height: 28px;
  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: left;
  }

  .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 {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

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

  .benefit-icon img {
    width: 26px;
    height: 26px;
  }

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

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

/* 혜택 끝 */

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

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

/* 상단 타이틀 */
.news-info-header {
  text-align: center;
  margin-bottom: 54px;
}

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

.news-info-header h2 {
  margin: 0;
  color: #050b18;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.news-info-header p {
  margin: 20px 0 0;
  color: #52657f;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: -0.04em;
}

/* 2단 카드 */
.news-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* 카드 공통 */
.news-card {
  min-height: 264px;
  padding: 34px 30px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #dde6f2;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.news-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.news-card-head h3 {
  margin: 0;
  color: #050b18;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.06em;
}

/* 뉴스 화살표 */
.news-arrow-box {
  display: flex;
  gap: 4px;
}

.news-arrow {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #c8ced8;
  background: #ffffff;
  color: #555b66;
  font-size: 36px;
  line-height: 28px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s ease;
}

.news-arrow:hover {
  border-color: #2563eb;
  color: #2563eb;
}

/* 뉴스 콘텐츠 */
.news-intro-content {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 22px;
  align-items: center;
}

.news-thumb {
  width: 185px;
  height: 145px;
  border-radius: 10px;
  overflow: hidden;
  background: #e5e7eb;
}

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

.news-text p {
  margin: 0;
  color: #333842;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.04em;
}

/* 더보기 버튼 */
.more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: all 0.2s ease;
}

.more-btn::after {
  content: "→";
  margin-left: 7px;
  font-size: 13px;
}

.more-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* 무이자 할부 테이블 */
.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;
}

/* 태블릿 */
@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: 110px 20px;
  background: linear-gradient(135deg, #0f99b8 0%, #2563eb 55%, #38bdf8 100%);
}

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

.cta-form-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 58px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 28px 70px rgba(5, 32, 82, 0.28);
  backdrop-filter: blur(10px);
}

/* 왼쪽 CTA */
.cta-form-left {
  color: #fff;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.cta-form-left h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.cta-form-left p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.cta-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.cta-info-list li {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.cta-info-list li::before {
  content: "✓";
  margin-right: 7px;
  font-weight: 900;
}

/* 오른쪽 폼 */
.cta-form-right {
  padding: 34px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
}

.online-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #d8e0eb;
  border-radius: 12px;
  background: #f8fafc;
  color: #111827;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.035em;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* 개인정보 동의 */
.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: 14px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cta-submit-btn::after {
  content: " →";
}

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

/* 모바일 */
@media (max-width: 640px) {
  .cta-form-section {
    padding: 70px 16px;
  }

  .cta-form-box {
    padding: 28px 20px;
    border-radius: 24px;
  }

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

  .cta-label {
    height: 30px;
    padding: 0 14px;
    font-size: 12px;
  }

  .cta-form-left h2 {
    font-size: 32px;
  }

  .cta-form-left p {
    font-size: 15px;
  }

  .cta-form-left p br {
    display: none;
  }

  .cta-info-list {
    justify-content: flex-start;
  }

  .cta-info-list li {
    height: 34px;
    padding: 0 13px;
    font-size: 13px;
  }

  .cta-form-right {
    padding: 22px;
    border-radius: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group input,
  .form-group select {
    height: 48px;
  }

  .form-group textarea {
    height: 110px;
  }

  .agree-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-submit-btn {
    height: 52px;
    font-size: 16px;
  }
}
/* 온라인 문의 끝 */

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

.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 .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 100px;
}

.newMain3_2 .container .main-tit,
.newMain3_2 .container .main-txt {
	text-align: left;
}

.newMain3_2 .container .main-txt {
	margin-top: 20px;
}

.newMain3_2 .moreBtn {
	background: var(--main, linear-gradient(90deg, #00abff 0.27%, #0038f1 99.73%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 18px;
}

.review_swiper .swiper-slide {
	padding: 30px;
	border-radius: 30px 30px 0px 30px;
	border: 1px solid #e5f0f5;
	position: relative;
	margin-top: 30px;
}

.review_swiper .swiper-slide .quotesBox {
	top: -35px;
	position: absolute;
	left: 50px;
}

.review_swiper .hLine {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	color: #808080;
}

.review_swiper .hLine .reviewRating {
  display: flex;
  gap: 3px;
}

.review_swiper .reviewCont {
	font-size: 16px;
	line-height: 1.5;
	margin: 25px 0 50px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	overflow: hidden;
	-webkit-box-orient: vertical;
	min-height: 72px;
}

.review_swiper .reviewDate {
	font-size: 12px;
	color: #b3b3b3;
	margin-bottom: 50px;
}

.review_swiper .reviewPrice {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.review_swiper .priceTxt {
	font-size: 14px;
	color: #808080;
}
.review_swiper .priceNum {
	color: #000d36;
	font-size: 14px;
	font-weight: 700;
}

@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);
  }
}

@media screen and (max-width: 768px) {

  .only_web {
    display: none !important;
  }

  .only_mo {
      display: block !important;
  }

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

  .hero-new {
    background: #eef4ff;
    padding: 2.75rem 1rem;
  }

  .hero-new .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    border-radius: 3.9375rem;
    background-color: #ffffff;
    padding: 0;
  }

  .hero-new-left {
    padding: 2.6875rem 0rem 2.375rem 1.8rem;
  }
  
  .hero-new-left h1 {
    font-size: 2.8rem;
    font-weight: 400;
    color: #252525;
    line-height: 1.1;
    letter-spacing: -0.0625rem;
    margin-bottom: 1rem;
    display: none;
  }
  .hero-new-left h1 strong { 
    font-weight: 700;
  }
  
  .hero-new-left p {
    font-size: 1.125rem;
    color: #5b5b5b;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 2.1875rem;
    display: none;
  }
  .hero-new-left p strong { 
    font-weight: 800; 
  }
  
  .hero-slide-nav {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    justify-content: center;
  }
  .hero-nav-arrow {
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    background-color: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.07);
  }

  .hero-nav-arrow:hover {
    background: #f0f6ff;
  }

  .hero-counter {
    font-size: 14px;
    color: #888;
    font-weight: 600;
  }
  
  .hero-new-right {
    overflow: hidden;
    height: 100%;
    width: 100%;
  }
  .heroSwiper {
    width: 100%;
    height: 100%;
  }
  
  .hero-slide {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100%;
  }

  .hero-slide-content {
    flex: 1;
    z-index: 2;
    position: relative;
    /* padding: 10.9375rem 0 3.75rem; */
    border-radius: unset;
    border-top-left-radius: 3.9375rem;
    border-top-right-radius: 3.9375rem;
  }

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

  .hero-slide-content img {
    border-radius: unset;
    border-top-left-radius: 3.9375rem;
    border-top-right-radius: 3.9375rem;
    width: 42.5rem;
  }

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

  .hero-slide-badge,
  .hero-slide-badge span {
    text-underline-offset: 0.0625rem; 
  }

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

  .hero-slide-badge span {
    color: #ce502a;
    font-weight: 300;
    background-image: linear-gradient(#ce502a, #ce502a);
    background-repeat: no-repeat;
    background-size: 100% 0.0938rem;
    background-position: 0 100%;
    padding-bottom: 0rem;
  }
  .hero-slide h2 {
    font-size: 3.0625rem;
    letter-spacing: -0.0625rem;
    color: #333333;
    font-weight: bold;
    font-family: "SCoreDream6";
    line-height: 1.2;
    margin-bottom: 2.1875rem;
    padding-left: 1rem;
  }

  .hero-slide-1 h2 span { 
    font-weight: 300;
    font-family: "SCoreDream1";
  }
  .hero-slide-2 h2,
  .hero-slide-3 h2 { font-size: 27.2px; }
  
  .hero-slide-desc {
    font-size: 14.08px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 1.125rem;
  }
  .hero-slide-bg-icon {
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 6.875rem;
    opacity: 0.15;
    z-index: 1;
  }
  
  .hero-tags { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center;
    gap: 0.625rem; 
    max-width: 23.75rem;
  }
  .hero-tag {
    border-radius: 1.0625rem;
    background-color: #159fd2;
    font-size: 0.9375rem;
    letter-spacing: 0rem;
    color: #ffffff;
    font-weight: 300;
    font-family: "Pretendard";
    padding: 0.4375rem 0.9375rem;
  }

  
  .hero-cta-strip {
    background: white;
    padding: 1.125rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    border-top: 0.0625rem solid #e4eaf6;
    box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.04);
  }
  .hero-cta-strip-text { font-size: 16px; font-weight: 700; color: #333; }
  .hero-cta-strip-btn {
    background: #2D6BE4;
    color: white;
    padding: 0.6875rem 1.875rem;
    border-radius: 0.625rem;
    font-size: 14.72px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 0.25rem 0.875rem rgba(45,107,228,0.3);
  }
  .hero-cta-strip-btn:hover { background: #1a55c8; transform: translateY(-0.0625rem); }

  .payment_sect {
    padding: 4.0625rem 0;
  }

  .payment_sect .main3 {
    padding: 0.25rem 0 1.25rem;
    background-color: #fff;
  }

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

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

  .main3-grp {
      display: none;
      /* align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      width: 100%;
      max-width: 62.5rem;
      margin: 5rem auto; */
  }

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

  .main3-grp > li:not(:nth-child(even)) {
    width: 8rem;
  }

  .main3-grp > li:note

  .main3-grp > li .imgbx.main {
    width: 6.25rem;
  }

  .main3-mo {
    margin: 5rem 0;
  }

  .main3-mo img {
    width: 100%;
  }

  .cont {
      padding: 0rem 0rem 9.375rem;
  }

  .main2-grp
  {
      margin-top: 5rem;
      display: flex;
      gap: 1.875rem;
      flex-direction: column;
  }

  .main2-grp > li {
      position: relative;
      width: 100%;
      cursor: pointer;
      transition: 0.3s;
      border-radius: 3.75rem;
      height: 100%;
      padding: 1rem 1.75rem;
    }
    
    .main2-grp > li.on {
      aspect-ratio: 1100 / 500;
      width: 100%;
      border-radius: 1.875rem;
      height: 30.3125rem;
      padding: 3.75rem;
    }

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

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

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

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

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

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

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

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

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

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

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

  .main2-grp .hiddenBox > img {
      max-height: 1.875rem;
      max-width: unset;
  }

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

  .newMain3_2 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6.25rem;
  }

  .newMain3_2 .container .main-tit,
  .newMain3_2 .container .main-txt {
    text-align: left;
  }

  .newMain3_2 .container .main-txt {
    margin-top: 1.25rem;
  }

  .newMain3_2 .moreBtn {
    background: var(--main, linear-gradient(90deg, #00abff 0.27%, #0038f1 99.73%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.125rem;
  }

  .review_swiper .swiper-slide {
    padding: 1.875rem;
    border-radius: 1.875rem 1.875rem 0rem 1.875rem;
    border: 0.0625rem solid #e5f0f5;
    position: relative;
    margin-top: 1.875rem;
  }

  .review_swiper .swiper-slide .quotesBox {
    top: -2.1875rem;
    position: absolute;
    left: 3.125rem;
  }

  .review_swiper .hLine {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #808080;
  }

  .review_swiper .hLine .reviewRating {
    display: flex;
    gap: 0.1875rem;
  }

  .review_swiper .reviewCont {
    font-size: 1rem;
    line-height: 1.5;
    margin: 1.5625rem 0 3.125rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    min-height: 4.5rem;
  }

  .review_swiper .reviewDate {
    font-size: 0.75rem;
    color: #b3b3b3;
    margin-bottom: 3.125rem;
  }

  .review_swiper .reviewPrice {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .review_swiper .priceTxt {
    font-size: 0.875rem;
    color: #808080;
  }
  .review_swiper .priceNum {
    color: #000d36;
    font-size: 0.875rem;
    font-weight: 700;
  }
}

@media screen and (max-width: 450px) {
  .hero-new-left h1 {
        font-size: 2.2rem;
    }
}

/* 하단 마지막 정보 */
.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);
}

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

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

/* 모바일 */
@media (max-width: 640px) {
  .cta-white-section {
    padding: 64px 0;
  }

  .cta-banner-white {
    padding: 34px 24px;
    border-radius: 22px;
  }

  .cta-label {
    height: 30px;
    padding: 0 14px;
    font-size: 12px;
  }

  .cta-banner-white h2 {
    font-size: 29px;
  }

  .cta-banner-white p {
    font-size: 15px;
  }

  .cta-banner-white p br {
    display: none;
  }

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

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