
/* 기본 스타일 */
* { margin:0; padding:0; box-sizing:border-box;text-decoration:none; list-style:none;}

h1, h2, h3, h4, h5, h6, p, span, a {  margin: 0; padding: 0; font-size: 100%; font-weight: normal;}

body {
  font-family:'Pretendard', Arial, 'Noto Sans KR', sans-serif;
  background:#f9f9f9;
  color:#333;
  line-height:1.5;
  overflow-x:hidden;
}

/* 네비게이션 */
.navbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0.9rem 2rem;
  border-bottom:1px solid #eaeaea;
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  min-height:60px; /* 상단바 높이 안정화 */
}

.logo {
  display:flex;
  align-items:center;
  flex-shrink:0; /* 로고 크기 유지 */
}
.logo img{vertical-align: middle;}
.logo img:nth-child(1) {width:35px; height:auto; margin-right:8px;}
.logo img:nth-child(2) {width:105px; height:auto; margin-right:15px;}
.login_btn {
  display:flex;
  align-items:center;
  flex-shrink:0; /* 로고 크기 유지 */
  margin-right:15px;
}
.login_btn a{
  border:1px solid #ccc;
  border-radius: 100px;
  font-size:14px;
  color:#555;
  padding:4px 10px;
  font-weight:500;
}
.login_btn a:hover{background:#3171de; color:#fff;}
.brand { font-weight:700; font-size:1.2rem; }

/* nav-container */
.nav-container {
  display:flex;
  align-items:center;
  justify-content:flex-end; /* 메뉴를 오른쪽 끝으로 */
  position:relative;
  overflow:hidden;
  flex:1; /* 남은 공간을 차지 */
}

/* nav-links */
.nav-links {
  display:flex;
  gap:1rem;
  overflow-x:auto;
  white-space:nowrap;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.nav-links::-webkit-scrollbar { display:none; }

.nav-links a {
  font-weight:500;
  color:#555;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0.4rem 0.4rem;
  height:auto;
  border-bottom:3px solid transparent; /* 기본 상태에서 투명 border */
}

/* 화살표 버튼 */
.nav-arrow {
  color:#333;
  font-size:1rem;
  padding:0.3rem 0.5rem;
  border-radius:100px;
  background:rgba(0,0,0,0.1);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.nav-arrow.left { margin-right:0.1rem; }
.nav-arrow.right { margin-left:0.1rem; }

.nav-links a:hover {
  border-bottom:3px solid #96b1e0;     /* hover 시 색상만 변경 */
}
.nav-links a.active {
  border-bottom:3px solid #2f6fde;
  color:#2850d4;
  font-weight:700;
}

.menu-toggle {
  display:none; font-size:1.5rem; background:none; border:none;
  color:#222; cursor:pointer;
  line-height:1;
  align-items:center;
  justify-content:center;
}

/* 히어로 */
.section-wrapper_hero{
 width:100%; height:auto; background:#fff;
}
.hero {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;;
  color:#222; padding:4em 2em;
  box-sizing: border-box;
  max-width:1200px;
  width:100%;
  margin:0 auto;
}
.hero-content { text-align:center; }
.hero h1 {font-size:clamp(2rem,5vw,3rem); font-weight:900; margin:0.7em 0 0.3em 0; max-width:400px; text-align:center; margin:0 auto;}
.hero h2 {font-size:clamp(2rem,5vw,3rem); color:#3070de; font-weight:900; margin:0.7em 0 0.3em 0; max-width:400px; text-align:center; margin:0 auto;}
.hero h3 {font-size:clamp(1rem,2vw,1.1rem); font-weight:500; margin:2em 0 2em 0; color:#666; max-width:700px; text-align:center;}

.hero-content-img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.hero-content-img img {
  width:430px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* 공통 섹션 */
.features, .benefits, .pricing,
.two-column, .four-column, .register {
  width:100%;
  max-width:1200px;        /* 내부는 1200px 제한 */
  padding:3em 2em 6em 2em;
  text-align:center;
  margin:0 auto;
}

.contact {
  width:100%;
  max-width:1200px;        /* 내부는 1200px 제한 */
  padding:3rem 1.2rem 6em 1.2em;
  text-align:center;
  margin:0 auto;
}

/* 공통 섹션2 */
.section-wrapper1 {background:#f4f4f5;}
.section-wrapper2 {background:#fcf4db;}
.section-wrapper3 {background:#f4f4f5;}
.section-wrapper4 {background:#fcf4db; width: 100%; height:auto;}
.section-wrapper5 {background:#f4f4f5;}
.section-wrapper6 {background:#fcf4db;}
.section-wrapper7 {background:#f4f4f5;}

/* 공통 h2 회전 애니메이션*/
.rotate-heading {
  display: block;
  font-size: 2rem;
  text-align: center;
  margin: 1em 0;
  font-weight:700;
  opacity: 0;
  transform: rotateX(0deg);
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform-origin: center;
}

/* h2 회전 모션*/
.rotate-heading.rotateX360-in {
  opacity: 1;
  transform: rotateX(360deg);
}

/* 특징 섹션 */
.features h2 { font-size:2rem; margin-bottom:2rem; }
.features h3 { font-size:1.2rem; margin-bottom:0.3em; font-weight:700;}
.feature-list {
  display:grid; gap:2rem;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  justify-content:center;
}
.feature {
  background:#fff; border-radius:8px; padding:2rem;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}
.feature:hover {
  transform:translateY(-5px);
}

.feature-icon { width:100%; height:auto;  margin:0.5em auto; text-align:center;}
.feature-icon img {width:100px; height:auto;}

/* 효과 섹션 */
.benefits h2 { font-size:2rem; margin-bottom:2rem; }
.benefits h3 { font-size:1.2rem; margin-bottom:0.2em; font-weight:700;}
.benefit-list {
  display:grid; gap:1.7rem;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  justify-content:center;
}
.benefit {
  background:#fff; border-radius:8px; padding:2rem;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
}
.benefit_icon { width:100%; height:auto;  margin:0.5em auto; text-align:center;}
.benefit_icon img {width:100px; height:auto;}

/* 감싸는 부분 */
.pricing-benefits {
  text-align: center;
  margin: 0 0 30px 0;
  background:#e6ecf6;
  padding:20px 0;
  border-radius: 8px;
  box-shadow: 0 3px 7px rgba(0,0,0,0.1);
}

.pricing_benefit-list {
  display: inline-flex;
  justify-content: center;
  gap: 40px;
  padding: 0;
  margin: 0 auto;
  list-style: none; 
}

/* 리스트 아이템 */
.pricing_benefit-list li {
  position: relative;
  padding-left: 1.5em;
  text-align: left;
  font-size:clamp(1rem,4vw,1rem);
  font-weight:700;
}

.pricing_benefit-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2e8b57;
  font-size: 1.2em;
  line-height: 1;
  font-weight:900;
}

/* 강조 문구 */
.benefit-highlight {
  font-size:clamp(1.5rem,4vw,2rem);
  color:#3070de;
  margin: 15px 0 35px 0;
  font-weight: 700;
  padding:0 30px;
  text-align: center;
}

.pricing {
  text-align: center;
}

.pricing-table {
  display: grid;
  gap: 1.7em;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content:center;
}

.price-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 25px;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.price-card::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 4px solid #007bff;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* 이벤트 차단 해제 */
}

.price-card:hover::after {
  opacity: 1;
}

.price_features li span {
  font-weight: 700;
}

.price-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.price_subtitle {
  color: #0056d6;
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.price-box {
  background: #f0f4f8;
  border-radius: 8px;
  padding: 10px;
  display: inline-block;
  width:100%; height:auto;
  margin-bottom: 15px;
}

.price-label {
  font-weight: 500;
  color: #555;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 5px;
}

.price_features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.price_features li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.price-card button {
  width:100%; height:auto;
  border: 0;
}

.price-card button a{
  display:block;
  width:100%; height:auto;
  background: #0056d6;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.price-card button a:hover {
  background: #e65c00;
}


/* 사용 절차 섹션 */
.contact_bg {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0em 0rem;
  box-sizing: border-box;
  width: 100%;
}

.contact p {
  font-size: 1em;
}

.contact .use_btn10 {
  display:block;
  cursor: pointer;
  font-size:clamp(1.5rem,4vw,2rem);
  color: #fff;
  margin-bottom: 1rem;
  background: #3070de;
  padding: 0.5em;
  width: 50%;
  margin: 2em auto 0 auto;
  text-align: center;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.contact .use_btn10:hover {
  background:#e65c00;
}

/* 내부 구조 */
.process-container {
  display: grid;
  grid-template-columns: 4fr 6fr; /* 좌측:우측 비율 4:6 */
  grid-template-rows: auto;       /* 한 행 */
  gap: 2rem;
  width: 100%;
  align-items: center;            /* 두 열 모두 세로 중앙 정렬 */
}

.process-info,
.process-grid {
  height:100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-info.animate,
.process-grid.animate {
  opacity: 1;
  transform: translateY(0);
}

/* 좌측 설명 박스 */
.process-info {
  background: #fff8e6;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;              /* 글자 좌측 정렬 */
  display: flex;                 /* 세로 중앙 정렬을 위해 flex 사용 */
  flex-direction: column;
  justify-content: center;       /* 세로 중앙 정렬 */
}

/* 박스 위에 이미지 추가 */
.process-info::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  background: url("/static/images/landing/process_infoimg.png") no-repeat center top;
  background-size: contain; /* 반응형 크기 조절 */
  aspect-ratio: 3 / 1.4;      /* 이미지 비율 유지 */
  margin-bottom: 1em;
}

.process-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.process-info .highlight {
  color: #3070de;
  font-weight: 900;
}

.process-info ul {
  list-style: none;
  padding: 0;
}

.process-info ul li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.4rem;
  position: relative;
}

/* 오른쪽 카드 */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
}

.process-card {
  display: flex;
  flex-direction: column;
  justify-content: center; /* 세로 가운데 정렬 */
  align-items: center;     /* 가로 가운데 정렬 */
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
}

.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -19px;          /* 카드 오른쪽에 배치 */
  top: 50%;
  transform: translateY(-50%);
  border-left: 12px solid #aaa; /* 삼각형 색상 */
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.process-card:nth-child(3)::after,
.process-card:nth-child(6)::after {
  content: none;
}

.process-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.3rem;
}

.process-card p {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}


/* 모달 배경 (전체 화면 덮기) */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8); /* 진한 검정 */
  z-index: 3000; /* 모달: 핸들 등 UI(~1000)보다 위, 로딩(8000)보다 아래 */
  overflow: hidden; /* 외부는 스크롤 막기 */
}

/* 닫기 버튼 (화면 오른쪽 상단 고정) */
.modal .close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 4000; /* 닫기 버튼: 모달 오버레이보다 위 */
}

/* 모달 내용 (내부만 스크롤 가능) */
.modal-content {
  background: #fff;
  margin: 80px auto;
  padding: 30px;
  border-radius: 8px;
  max-width: 1200px;
  width: 90%;             /* 반응형: 화면 줄어들면 자동 축소 */
  height: 80vh;           /* 고정 높이: 화면 높이의 80% */
  overflow-y: auto;       /* 세로 스크롤 허용 */
  overflow-x: hidden;     /* 가로 스크롤 제거 */
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);

  -webkit-overflow-scrolling: touch; /* iOS에서 부드러운 터치 스크롤 */
}

/* 이미지 반응형 */
.modal-content img {
  max-width: 100%;  /* 가로 크기 자동 축소 */
  height: auto;
  display: block;
  margin-bottom: 15px;
}

/* 이미지 반응형 */
.modal-content p {
  margin: 1em 0 3em 0;
}

/* 모달별 스타일 */
.modal1-content { border: 0px solid #007bff; }


/*화면보기 섹션 시작*/
.two-col-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  justify-content: center;
}

.two-col-item {
  border-radius: 8px;
  padding: 0rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.two-col-item.show {
  opacity: 1;
  transform: translateY(0);
}

.two-col-item span {
  font-size: 30px;
  font-weight: 700;
  color: #3070de;
}

/* 1행 중앙 정렬 */
.text-center {
  text-align: center;
}

.text-center h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.text-center .sub-text {
  font-size:clamp(1rem,3vw,1.1rem);
  font-weight: 400;
  color: #3070de;
  margin-bottom: 1.1rem;
}

.ai-plus-bubble {
  background: #fff;
  border-radius: 100px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  font-size: 1rem;
  color: #333;
  text-align: left;
  line-height: 1.5em;
}

/* 2행 아이플러스 섹션 */
.ai-plus-section {
  padding: 0rem 0rem;
  border-radius: 8px;
  text-align: center;
}

.ai-plus-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 0rem 0.5rem 0rem;
  margin-bottom: 2rem;
}

.ai-plus-text {
  text-align: center;
}

.ai-plus-recommend {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 0.3rem;
}

.ai-plus-highlight {
  font-weight: 500;
  font-size: 1.4rem;
  color: #333;
}

.ai-plus-blue {
  font-weight: 700;
  font-size: 1.7rem;
  color: #3070de;
}

.ai-plus-character {
  width: 220px;
  height: auto;
  flex-shrink: 0;
}

.ai-plus-character img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 버튼 박스 */
.ai-plus-btn-box {
  display: flex;
  justify-content: center;
}

.ai-plus-btn {
  width:100%;
  height:auto;
  background: #3070de;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 1.2rem 2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.ai-plus-btn:hover {
  background: #e65c00;
}

.ai-plus-btn-box .btn-top {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.ai-plus-btn-box .btn-bottom {
  font-size: 1.4rem;
  font-weight: 700;
}


/* 갤러리모달 배경 */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 3000; /* 모달: 핸들 등 UI(~1000)보다 위, 로딩(8000)보다 아래 */
  overflow: hidden;
}

/* 닫기 버튼 */
.gallery-close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 4000; /* 닫기 버튼: 모달 오버레이보다 위 */
}

/* 갤러리 컨텐츠 (하얀색 박스) */
.gallery-content {
  position: relative;
  margin: 60px auto;
  max-width: 1200px;   /* 최대 가로 1200px */
  width: 95%;         /* 화면 줄어들면 자동 축소 */
  height: 85vh;        /* 화면 높이의 80% */
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center; /* 세로 가운데 정렬 */
  justify-content: center;
}

/* 슬라이드 트랙 */
.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
}

/* 슬라이드 */
.gallery-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 갤러리 슬라이드 이미지 */
.gallery-slide img {
  max-width: 100%;     /* 가로 폭에 맞춰 반응형 */
  max-height: 100%;    /* 세로 높이에 맞춰 잘리지 않게 */
  object-fit: contain; /* 이미지 전체 표시 */
  display: block;
  margin: 0 auto;
}

/* 좌우 화살표 버튼 */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #eaeaea;          /* 흰색 바탕 */
  color: #000;               /* 화살표 색상 (검정) */
  border: none;
  font-size: 30px;           /* 화살표 크기 */
  cursor: pointer;
  width: 48px;               /* 버튼 가로 */
  height: 48px;              /* 버튼 세로 */
  border-radius: 50%;        /* 원형으로 만들기 */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  z-index: 4000; /* 갤러리 화살표: 모달 오버레이보다 위 */
}

.gallery-arrow:hover {
  color: #fff;
  background: #666; 
}

.gallery-left { left: 15px; }
.gallery-right { right: 15px; }

/* 하단 인디케이터 */
.gallery-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
}
.gallery-dots button {
  width: 24px;
  height: 24px;
  margin: 0 5px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}
.gallery-dots button.active {
  background: #3070de;
}

.two-col-item.animate { opacity:1; transform:translateY(0); }

/* 4단 섹션 */
.four-col-list {
  display:grid; gap:1.7rem;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  justify-content:center;
}
.four-col-item {
  background:#fff; border-radius:8px; padding:2rem;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
  opacity:0; transform:translateY(30px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}
.four-col-item h3{
  font-size:1.2em; font-weight:700; margin-bottom:0.2em;
}
.four-col-item.animate { opacity:1; transform:translateY(0); }

.four-column-icon { width:100%; height:auto;  margin:0.5em auto; text-align:center;}
.four-column-icon img {width:100px; height:auto;}

.register-col-item.animate { opacity:1; transform:translateY(0); }


/* 신청하기 섹션 */
.register {
  text-align: center;
}

.register h2 {
  font-size: 2rem;
}

/* 컬럼 리스트 */
.register-col-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}


/* 공통 카드 스타일 */
.register-col-item {
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 2.5rem 2rem;
  transition: transform 0.6s ease, box-shadow 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.register-col-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* hover 효과 유지 */
.register-col-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* 1행 */
.register_text-center {
  text-align: left;
}

.register-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
}

.register-title:first-child {
  color: #3070de;
}

.register-desc {
  font-size: 1rem;
  color: #333;
  margin: 1.2em 0;
}

.register-desc span {
  font-weight: 700;
  color: #3070de;
}

/* 전화 안내 */
.register-phone-box,
.register-account-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 8px;
  padding: 1.2em;
  background: #e5ebf7;
  margin-bottom: 1rem;
}

.phone-highlight {
  font-size:1.5rem;
  font-weight:700;
}

.icon-placeholder img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* 계좌 안내 */
.account-title {
  font-weight: 700;
  color: #222;
  margin-bottom: 0.3em;
}

/* 2행 */
.register-plus-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.register-plus-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.register-plus-text {
  flex: 1;
  min-width: 220px;
  text-align: left;
}

.register-plus-text p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  margin: 0.3rem 0;
}

.register-plus-text p:nth-child(1) {
  color: #3070de;
  font-weight: 700;
  text-align:center;
}
.register-plus-text p:nth-child(2) {
  color: #666;
  font-weight: 400;
  text-align:center;
}
.register-plus-text p:last-child {
  color: #222;
  font-weight: 700;
  text-align:center;
}

/* 캐릭터 이미지 */
.register-plus-character {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}
.register-plus-character img {
  width:400px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* 버튼 */
.register-btn-box {
  display: flex;
  justify-content: center;
  width: 100%;
}

.register-plus-btn {
  background-color: #3070de;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 1em 2em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width:100%;
}

.register-plus-btn:hover {
  background-color: #e65c00;
}

.btn-bottom a {
  color: #fff;
  text-decoration: none;
}


/* 푸터 */
footer {
  background: #222222;
  color: #c9c9c9;
  padding: 3rem 1rem 1.5rem 1rem;
  display: flex;
  flex-direction: column; /* 위아래 배치 */
  gap: 1rem;
}

/* 위쪽 블록 영역 */
.footer-block-bg {
  display: flex;
  flex-wrap: wrap; /* 줄바꿈 허용 */
  justify-content: space-between;
  gap: 1rem;
}

/* 각 블록 */
.footer-block {
  flex: 1;                /* 동일한 너비 */
  min-width: 200px;       /* 최소 너비 */
  padding: 0;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-block p{
  line-height:24px;
}

.footer-customer p a{
  color:#c9c9c9;
}


/* 텍스트 크기 */
.footer-adress,
.footer-customer,
.footer-links {
  font-size: 14px;
}

.footer-links {
  width:100%;
  height:auto;
  margin:0 auto;
  text-align:center;
}

.footer-links img {
 display:inline-block;
 padding:10px 0;
 width:40%;
 max-width:160px;
 height:auto;
}

/* 아래쪽 저작권 영역 */
.footer-copyright {
  font-size: 14px;
  padding: 20px;
  text-align: center;
  border-top:1px solid #414141;
  margin-top:20px;
}

.credits {padding-top:4px;}
.credits a{font-size: 14px; color:#c9c9c9;}

/* 애니메이션 */
@keyframes float {
  0% { transform:translateY(0); }
  50% { transform:translateY(-15px); }
  100% { transform:translateY(0); }
}
.feature, .benefit, .price-card {
  opacity:0; transform:translateY(30px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}
.feature.animate, .benefit.animate, .price-card.animate {
  opacity:1; transform:translateY(0);
}

/* 반응형 */
@media screen and (max-width:768px) {
  .navbar {
    padding:1.18rem 1rem;
  }

  .nav-container {
    overflow:visible; /* 드롭다운이 잘리지 않도록 */
    flex:1;
  }

  .nav-links { 
    display:none;
    flex-direction:column;
    background:#3b5ded;
    position:fixed;   /* 화면 전체 덮기 */
    top:70px; left:0; right:0;
    width:100%;
    height:100vh;
    padding:2rem 1rem;
    z-index:1000;

    /* 가운데 정렬 추가 */
    align-items:center;   /* flex 항목 가운데 */
    text-align:center;    /* 텍스트 가운데 */
  }

  .nav-links.show { display:flex; }

  .nav-links a {
    width:100%;           /* 버튼 전체 너비 */
    padding:1rem 0;
    color:#fff;
    border:1px solid #6486ee; /* 기본 상태에서 투명 border */
	border-radius: 100px;
  }

  .nav-links a:hover {
    border:1px solid #6486ee;
	background:#4280ea;/* hover 시 색상만 변경 */
  }
  .nav-links a.active {
    border:1px solid #6486ee;
    color:#fff;
	background:#1554c1;
    font-weight:700;
  }

  .menu-toggle { display:flex;
  }
  .nav-arrow { display:none; }

  .feature-list, .benefit-list, .pricing-table, .four-col-list {
    grid-template-columns:1fr;
  }
  .section-wrapper_hero {
    background-image: none;
  }
  .hero {
    padding:4em 2em;
  }
  .hero h4 {max-width:300px;}

  .hero-content-img img {
    max-width: 80%;
    height: auto;
  }

  /* 공통 섹션 */
  .features, .benefits, .pricing, .contact,
  .two-column, .four-column, .register {
    padding:2rem 1rem;
  }

  .modal-content {
    width: 95%;
    margin: 60px auto;
    height: 85vh; /* 모바일에서는 조금 더 크게 */
  }

  .process-container {
    grid-template-columns: 1fr;     /* 한 열 */
    grid-template-rows: auto auto;  /* 두 행 */
    align-items: start;             /* 위아래 배치 */
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr); /* 카드 2열 배치 */
	gap: 1em;
  }

  .process-card:not(:last-child)::after {
    content: none;
    border: none; /* 삼각형 테두리도 제거 */
  }

  .pricing_benefit-list {
    flex-direction: column;
    align-items: center; /* li 박스 중앙 배치 */
    gap: 15px;
  }
  .pricing_benefit-list li {
    flex: none;
    text-align: left; /* 텍스트는 좌측 정렬 유지 */
    width: 100%;      /* li가 넓이를 가지도록 */
    max-width: 300px; /* 중앙에 위치하면서 좌측 정렬 효과 */
  }

  .contact .use_btn10 {
    display:block;
    width: 100%;
    margin: 1.5em auto 1em;
  }

  .gallery-arrow { display: none; } /* 모바일에서는 좌우 버튼 숨김 */
  .footer-links img {
    width:40%;
    max-width:120px;
  }
  .ai-plus-character img {
    width: 85%;
  }
  .register-plus-character img {
    max-width: 90%;
  }

}

@media screen and (min-width:769px) and (max-width:1024px) {
  .hero {text-align:center; }
  .section-wrapper_hero{
  background-size: 300px auto;
  }
  .feature-list, .benefit-list, .pricing-table, .four-col-list {
    grid-template-columns:repeat(2,1fr); /* 태블릿은 2단 */
  }

  .process-container {
    grid-template-columns: 1fr;     /* 한 열 */
    grid-template-rows: auto auto;  /* 두 행 */
    align-items: start;             /* 위아래 배치 */
  }

  .process-info::before {
    width: 70%;
    height: auto;
    margin:0 auto;
  }

  .pricing_benefit-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .pricing_benefit-list li {
    flex: 0 0 45%; /* 가로 2단 */
    text-align: left;
  }
  .register-col-list {
    grid-template-columns:repeat(1,1fr);
    gap:3rem;
    justify-content:center;
  }
  footer { grid-template-columns:repeat(3,1fr); }
}
@media screen and (min-width:1025px) {
  .hero {
    text-align:center;
  }

  .benefit-list {
    grid-template-columns:repeat(4,1fr); /* 데스크탑은 3단 */
  }
  .feature-list {
    grid-template-columns:repeat(2,1fr);
  }
  .pricing-table {
    grid-template-columns:repeat(4,1fr);
  }
  .two-col-list {
    grid-template-columns:repeat(2,1fr);
    gap:3rem;
    justify-content:center;
  }
  .register-col-list {
    grid-template-columns:repeat(2,1fr);
    gap:3rem;
    justify-content:center;
  }
  footer { grid-template-columns:repeat(3,1fr); }
}

@media screen and (min-width:1441px) {
  .hero {
    padding:6em 0;
  }

  /* 특징, 효과, 가격 섹션은 4단 */
  .benefit-list {
    grid-template-columns:repeat(4,1fr);
    justify-content:center;
  }
  .feature-list {
    grid-template-columns:repeat(2,1fr);
  }
  .pricing-table {
    grid-template-columns:repeat(4,1fr);
    justify-content:center;
  }
  .two-col-list {
    grid-template-columns:repeat(2,1fr);
    gap:3rem;
    justify-content:center;
  }
  .register-col-list {
    grid-template-columns:repeat(2,1fr);
    gap:3rem;
    justify-content:center;
  }

  .four-col-list {
    grid-template-columns:repeat(4,1fr);
    justify-content:center;
  }
  footer { grid-template-columns:repeat(3,1fr); }
}