@charset "UTF-8";

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }
input, textarea { font: inherit; border: none; outline: none; }
img { max-width: 100%; display: block; }
table { border-collapse: collapse; border-spacing: 0; }
html, body { max-width: 100%; overflow-x: hidden; font-family: 'NanumSquareNeo', sans-serif; }
html { scroll-behavior: smooth; font-size: 16px; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0; background: linear-gradient(180deg, var(--bg1), var(--bg2)); min-width: 320px; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px,4vw,60px); }
h1, h2, h3 { word-break: keep-all; }
p { line-height: 1.6; word-break: keep-all; }
button, input, textarea { line-height: normal; }
a, button { -webkit-tap-highlight-color: transparent; }
.hidden { display: none !important; }

/* Root */
:root { 
  --primary-color: #9747FF;
  --text-main: #000; 
  --text-sub: #444; 

  --bg1: #f8f6ff; 
  --bg2: #F4F3F9; 

  --glass_bg:  rgba(255, 255, 255, 0.25); 
  --glass_border: .7px solid rgba(255, 255, 255, 0.3); 
  --glass_filter: blur(4px); 
  --glass_shadow: 0 8px 16px 0 rgba(80, 25, 86, 0.12), 0 -20px 40px 0 rgba(255, 255, 255, 0.35) inset, 0 2px 4px 0 rgba(0, 0, 0, 0.08) inset;
  
  /* Hero (60,28) */
  --font-display: clamp(1.75rem, 5vw, 3.7rem);

  /* Section Heading (28,20),(20,16) */
  --font-h3: clamp(1.25rem, 3vw, 1.75rem); 
  --font-h4: clamp(1rem, 2vw, 1.25rem); 

  /* Emphasis Text (36,15),(32,28),(28,14) */
  --font-lead-lg: clamp(0.9375rem, 3vw, 2.25rem); 
  --font-lead-m: clamp(1.75rem, 3vw, 2rem);
  --font-lead: clamp(0.875rem, 3vw, 1.75rem);

  /* Body (18,14),(16,13) */
  --font-body: clamp(0.875rem, 2.5vw, 1.125rem); 
  --font-body-sm: clamp(0.8125rem, 1.8vw, 1rem); 
}

/* Motion */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.27s; }
.delay-3 { transition-delay: 0.39s; }
.delay-4 { transition-delay: 0.41s; }

/* HEADER */
header { position: fixed; top: 0; left: 0; width: 100%;  background: transparent; z-index: 100; transition: all 0.3s ease; }
header.scrolled { background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.header_inner { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo img { display: block; height: clamp(27px, 4vw, 34px); width: auto; }
nav { display: flex; align-items: center; }
nav ul { display: flex; gap: 60px; list-style: none; font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif; font-size: 16px; font-weight: 500; }
nav ul li a { color: var(--text-sub); text-decoration: none; transition: color 0.3s ease; }
nav ul li a:hover { color: var(--text-main); }

.btn_menu { display: none; width: 20px; height: 16px; position: relative; background: none; border: none; cursor: pointer; }
.btn_menu span { position: absolute; left: 0; width: 100%; height: 1.6px; background: #333; }
.btn_menu span:nth-child(1) { top: 0; }
.btn_menu span:nth-child(2) { top: 7px; }
.btn_menu span:nth-child(3) { bottom: 0; }
.nav.open { display: block; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); }
.nav.open ul { flex-direction: column; gap: 20px; padding: 20px; }
.nav_mobile {display: none;}

.main_btn { display: flex; justify-content: center; align-items: center; line-height: 1.2; width: 140px; height: auto; border-radius: 32px; background:rgba(151, 71, 255, 0.8); box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.10); padding: 8px 20px; font-size: 15px; color: #fff; font-weight: 600; transition: 0.2s ease; }
.main_btn:hover { background: rgb(151, 71, 255); }

/* HERO */
@keyframes floating {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); } 
  100% { transform: translateY(0); }
}
.hero_visual { position: absolute; right: 0%; top: 50%; transform: translateY(-50%); z-index: 1; pointer-events: none; }
.hero_img { animation-name: floating; animation-iteration-count: infinite; animation-timing-function: ease-in-out; will-change: transform; }
.hero_img.main { width: clamp(420px, 48vw, 760px); position: relative; top: 140px; animation-duration: 3s; animation-delay: 0s; }
.hero_img.sub { position: absolute; }
.hero_img.sub.pound { width: 20vw; max-width: 200px; left: -48%; top: 16%; animation-duration: 3.8s; animation-delay: 0.6s; }
.hero_img.sub.yen { width: 22vw; max-width: 340px; left: -130%; bottom: 4%; animation-duration: 3.4s; animation-delay: 0.3s; }

#hero { display: flex; align-items: center; min-height: 100vh; position: relative; z-index: 2;}
.hero_inner { width: 100%; word-break: keep-all; position: relative; z-index: 2; }
.hero_sub { display: flex; gap: 8px; font-size: var(--font-body-sm); color: #44217A; font-weight: 600; padding-bottom: 20px; align-items: center; }
.hero_tit { font-size: var(--font-display); font-weight: 400; }
.hero_tit strong { font-weight: 700; }
.hero_text { font-size: var(--font-lead); font-weight: 400; padding-top: 16px; }
.sub_text { font-size: var(--font-body-sm); font-weight: 400; color: var(--text-sub); line-height: 1.6; position: absolute; bottom: -58%; }

.mobile_only_btn { display: none; }


/* SECTION */
section { padding: clamp(120px, 10vw, 200px) 0; }
.details_block { max-width: 1200px; margin-bottom: 240px; }
.details_block:nth-child(5) { margin-bottom: 0; }
#service_intro { background: url(../img/section01_bg.png) no-repeat center / cover; text-align: center; position: relative; z-index: 0; }
#service_intro h2 { font-weight: 800; font-size: var(--font-body); color: var(--primary-color); padding-bottom: clamp(28px, 4vw, 40px); }
#service_intro .intro_text { font-size: var( --font-lead-lg); font-weight: 400; color: #000; word-break: keep-all; overflow-wrap: break-word; padding-bottom: clamp(40px, 4vw, 48px); }
#service_intro .intro_text .intro_hi { font-weight: 700; background: linear-gradient(90deg, #A743E2 25.48%, #FFCF4C 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
#service_intro .statute { font-size: var(--font-body-sm); color: #9A8D9C; display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 8px; }
#service_intro .statute .stat_text { display: block; text-align: center; word-break: keep-all; word-wrap: break-word; line-height: 1.6; }
#service_intro .statute .icon_goto { display: inline-block; vertical-align: middle; width: 16px; margin-left: 4px; margin-top: -2px; }
#service_intro .statute .icon_goto img { display: block; width: 100%; height: auto; }
.m_br { display: none; }

#service_details { background: url(../img/Section02-2_bg.png) no-repeat center / cover; }

.glass_card { background: var(--glass_bg); box-shadow: var(--glass_shadow); backdrop-filter: var(--glass_filter); border: var(--glass_border); }

/* 특장점 */
.details_block h3 { font-size: var(--font-h3); font-weight: 800; color: var(--text-main); margin-bottom: 8px; }
.eng_title { display: block; font-size: var(--font-body-sm); font-weight: 800; color: var(--primary-color); margin-bottom: clamp(1.75rem, 2vw, 4.5rem); text-transform: uppercase; }

.feature_list { display: flex; flex-direction: column; gap: 160px; }
.feature_item { display: flex; align-items: center; justify-content: space-between; gap: 80px; margin-bottom: 60px; }
.feature_item.reverse { flex-direction: row-reverse; }

.feature_num { grid-area: num; font-size: 24px; font-weight: 800; color: var(--primary-color); }
.feature_item h4 { grid-area: title; font-size: var(--font-h4); font-weight: 800; margin: 0; color: var(--text-main); padding: 8px 0 16px 0; }
.feature_item p { grid-area: desc; font-size: var(--font-body-sm); color: var(--text-sub); margin: 0; }
.text_area { flex: 0.8; }
.feature_img { flex: 1.2; position: relative; }
.feature_img .img_3d { max-width: 100%; height: auto; display: block; border-radius: 30px; box-shadow: var(--glass_shadow); opacity: 0.9; }
.feature_img .icon_feature { max-width: 32px; }

.floating_badge { position: absolute; bottom: 32px; left: -12px; border-radius: clamp(14px, 2vw, 20px); padding: clamp(8px, 2vw, 12px) clamp(12px, 2vw, 20px); display: flex; align-items: center; gap: 8px; font-weight: 400; font-size: var(--font-body-sm); text-align: justify; animation-name: floating; animation-iteration-count: infinite; animation-timing-function: ease-in-out; animation-duration: 3s; animation-delay: 0s; }
.feature_item.reverse .floating_badge { bottom: auto; top: 28px; left: auto; right: -12px; }
.last_badge { bottom: auto; top: 28px; right: auto;  }
.floating_badge i img { width: clamp(24px, 4vw, 32px); }

/* 환급 절차 */
.step_grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4.5rem; }
.step_wrapper { position: relative; display: flex; justify-content: center; align-items: center; }
.step_bg_num { position: absolute; top: -1.75rem; right: 0; font-family: 'pretendard'; font-size: clamp(4.5rem, 6vw, 5rem); font-weight: 900; color: rgba(151, 71, 255, 0.80); z-index: 1; line-height: 1; }
.step_item { position: relative; z-index: 2; width: 100%; aspect-ratio: 1 / 1; border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 1.25rem; }
.step_item h4 { font-size: var(--font-h4); color: var(--text-main); margin-bottom: 0.75rem; font-weight: 700; word-break: keep-all; }
.step_item p { font-size: var(--font-body-sm); color: var(--text-sub); line-height: 1.5; word-break: keep-all; letter-spacing: -0.03rem; }

/* 환급 대상 */
.target_block { position: relative; }
.target_content_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; position: relative; z-index: 2; }
.won_bg_overflow { position: absolute; bottom: -32%; left: -20%; width: clamp(440px, 48vw, 820px); height: auto; z-index: 1; pointer-events: none; }
.won_bg_overflow img { width: 100%; display: block; animation-name: floating; animation-iteration-count: infinite; animation-timing-function: ease-in-out; animation-duration: 3s; animation-delay: 0s; }

.target_list { display: flex; flex-direction: column; gap: 1.5rem; }
.target_item { padding: 2.5rem; border-radius: 1.5rem; }
.target_title { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.target_title h4 { font-size: var(--font-h4); font-weight: 800; color: var(--text-main); margin: 0; }
.icon_circle { width: 2.25rem; height: 2.25rem;}
.target_desc { display: flex; flex-direction: column; gap: 1rem; }
.check_list, .dash_list { list-style: none; margin: 0; padding-left: 46px; }
.target_desc li { font-size: var(--font-body-sm); color: var(--text-sub); line-height: 1.6; word-break: keep-all; padding-left: 28px; background-repeat: no-repeat; background-position: left 0px; background-size: 16px; }
.check_list li { background-image: url(../img/icon_check_s.png); }
.dash_list li { background-image: url(../img/icon_dash_s.png); }


/* 가맹 절차 */
.process_card_wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3.125rem; }
.process_card { position: relative; border-radius: 3rem; padding: 3.8rem 2.5rem; overflow: hidden; background-size: cover; background-position: center; background-repeat: no-repeat; }
.process_card.bg_box1 { background-image: url('../img/process_bg1.png'); }
.process_card.bg_box2 { background-image: url('../img/process_bg2.png'); }

.process_header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 48px; }
.process_header .icon_box { width: 2.5rem; }
.process_header h4 { font-size: var(--font-h3); font-weight: 800; }

.process_timeline { position: relative; padding-left: 20px; }
.process_timeline::before { content: ""; position: absolute; left: 6px; top: 0; bottom: 0; width: 2px; background: rgba(151, 71, 255, 0.20); }

.timeline_item { position: relative; margin-bottom: 32px; }
.timeline_item:last-child { margin-bottom: 0; }
.timeline_item .dot { position: absolute; left: -18px; top: 6px; width: 10px; height: 10px; background: #7c3aed; border-radius: 50%; }
.timeline_item .text { display: flex; flex-direction: column; word-break: keep-all; }
.timeline_item strong { font-size: var(--font-body); color: var(--text-main); }
.timeline_item p { padding-top: 12px; font-size: var(--font-body-sm); color: var(--text-sub); font-weight: 400; }
.timeline_item .text .btn { display: inline-flex; align-items: center; max-width: 100%; width: fit-content; margin-top: 12px; padding: 6px 12px;  gap: 8px; border-radius: 60px; border: 1px solid rgba(151, 71, 255, 0.20); background: rgba(255, 255, 255, 0.2); box-shadow: 0 4px 12px 0 rgba(80, 25, 86, 0.12); color: var(--primary-color); font-size: var(--font-body-sm); font-weight: 700; transition: all 0.2s ease; line-height: 1.4; word-break: keep-all; }
.timeline_item .text .btn:hover { background: rgba(255, 255, 255, 0.5); }

/* 정산 절차 */
.settle_block { position: relative; }
.settle_content_grid { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 3rem; position: relative; z-index: 2; }
.settle_step { display: flex; flex-direction: column; gap: 5rem; position: relative; }
.settle_step::before { content: ''; position: absolute; left: 39px; top: -50px; bottom: -120px; width: 3px; z-index: 0; background: linear-gradient( to bottom, rgba(245, 239, 255, 0.8) 0%, rgba(205, 167, 255, 0.6) 25%, rgba(151, 71, 255, 0.4) 60%, rgba(205, 167, 255, 0.6) 75%, rgba(245, 239, 255, 0.8) ); }
.settle_step_wrapper { position: relative; display: flex; align-items: center; }
.settle_bg_num { position: relative; z-index: 2; width: 80px; height: 80px; aspect-ratio: 1 / 1; border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 1.25rem; font-family: 'pretendard', sans-serif; font-size: var(--font-lead-m); font-weight: 900; color: var(--primary-color); }
.step_item_s { padding-left: clamp(0.85rem, 4vw, 6rem); }
.step_item_s h4 { font-size: var(--font-body); font-weight: 800; color: var(--text-main); margin: 0; min-width: 6rem; }
.dot_list { padding: 12px 0 8px 0; line-height: 1.6; list-style: disc;  padding-inline-start: 1.15em; }
.step_item_s li { font-size: var(--font-body-sm); color: var(--text-sub); font-weight: 700; margin: 0; line-height: 1.8; word-break: keep-all; }
.step_item_s p { font-size: var(--font-body-sm); color: rgba(151, 71, 255, 0.60); font-weight: 700; line-height: 1.6; word-break: keep-all; padding-bottom: 4px; }

/* FAQ */
#faq { position: relative; overflow: hidden; }
#faq .details_block { margin-bottom: 0; }
.faq_card { border-radius: 24px; width: 100%; margin-bottom: 20px; overflow: hidden; background: rgba(255, 255, 255, 0.4); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); transition: background-color 0.3s ease; }
.faq_card summary { display: flex; justify-content: flex-start; align-items: center; padding: 28px; cursor: pointer; font-size: var(--font-body); font-weight: 700; list-style: none; word-break: keep-all; }
.faq_card summary::-webkit-details-marker { display: none; }
.faq_card summary::before { content: "Q."; color: var(--primary-color); font-weight: 800; flex-basis: 20px; padding-right: 8px; flex-shrink: 0; }
.faq_card summary::after { content: ''; display: block; width: 22px; height: 22px; background: url('../img/icon_down.png') no-repeat center; margin-left: auto; background-size: contain; flex-shrink: 0; transition: transform 0.3s ease; }
.faq_card.is-open summary::after {    transform: rotate(180deg);
}
.faq_content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.faq_card.is-open .faq_content { grid-template-rows: 1fr; }
.faq_inner { overflow: hidden; }
.faq_inner p { margin: 0; padding: 0 28px 28px; opacity: 0; transform: translateY(-10px); transition: opacity 0.3s ease, transform 0.3s ease; font-size: var(--font-body-sm);  }
.faq_card.is-open .faq_inner p { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }

.euro_bg_overflow { position: absolute; top: 0%; right: -20%; z-index: -1; opacity: 0.8; width: clamp(540px, 70vw, 1200px);  }
.euro_bg_overflow img { width: 100%; display: block; animation-name: floating; animation-iteration-count: infinite; animation-timing-function: ease-in-out; animation-duration: 3s; animation-delay: 0s; } 

/* Footer */
.footer { background: #ffffff; padding: clamp(2.5rem, 4vw, 2.75rem) 0; }
.footer_in { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); grid-template-columns: 1fr auto; align-items: end; }
.footer_txt { color: #7D7D7D; font-family: 'pretendard'; font-size: clamp(0.8125rem, 2vw, 0.875rem); font-weight: 400; line-height: 1.6; }
.footer_line { margin: 0; text-wrap: balance; word-break: keep-all; }
.f_inline_block { display: inline-block; }
.footer_copy { margin: 0.5rem 0 0; }
.footer_logo img { display: block; height: clamp(0.9375rem, 3vw, 1.125rem); width: auto; }

/* 반응형 */
@media (max-width:1024px) and (min-width:769px) {
  .step_grid { gap: 1.5vw; }
  .step_item { padding: clamp(0.625rem, 1.5vw, 1.25rem); }
}

@media (max-width:768px) {
  .nav { display: none; }
  .main_btn { display: none; }
  .header_inner { position: relative; display: flex; justify-content: space-between; align-items: center; }
  .btn_menu { display: block; z-index: 1001; position: relative; }
  .btn_menu.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
  .btn_menu.active span:nth-child(2) { opacity: 0; }
  .btn_menu.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }  
  header.active { background: #fff !important; transition: background 0.3s ease; }

  .nav_mobile { position: absolute; top: 100%; left: 0; width: 100%; height: 0; overflow: hidden; background: #ffffff; transition: all 0.4s ease-in-out; z-index: 999; display: block; box-shadow: 0 10px 15px rgba(0,0,0,0.05); opacity: 0; pointer-events: none; }
  .nav_mobile.active { height: auto; opacity: 1; pointer-events: auto; padding-bottom: 8px; }
  .nav_mobile ul { display: flex; flex-direction: column; padding: 0; margin: 0; list-style: none; gap: 8px; }
  .nav_mobile ul li { width: 100%; }
  .nav_mobile ul li a { display: block; width: 100%; padding: 12px 16px; text-align: center; font-size: var(--font-body); font-weight: 700; color: var(--text-sub); transition: background 0.2s; text-decoration: none; }

  #hero { align-items: flex-start; position: relative; z-index: 2; overflow: visible; }
  .hero_inner { padding-top: 3.75rem; z-index: 50;  display: flex; flex-direction: column; align-items: flex-start; }

  .mobile_only_btn { display: inline-block; margin-top: 24px; position: relative; z-index: 51; }

  .hero_visual { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
  .hero_img { position: absolute; }
  .hero_img.main { width: clamp(11.5rem, 85vw, 25rem); top: 100%; left: 40%; }
  .hero_img.sub { transform: translate(50%, 50%); }
  .hero_img.sub.pound { width: clamp(8.5rem, 28vw, 12.5rem); left: 60%; top: 58%; }
  .hero_img.sub.yen { width: clamp(15rem, 55vw, 20rem); left: -20%; top: 96%; }

  #service_intro .statute { flex-direction: column; }
  .intro_list, .feature_list, .target_list { grid-template-columns: 1fr; }
  .pc_br { display: none; }
  .m_br { display: inherit; }

  .details_block { max-width: 480px; width: 100%; margin-inline: auto; margin-bottom: 160px; }

  .feature_list { gap: 3.75rem; }
  .feature_item, .feature_item.reverse { flex-direction: column; align-items: flex-start; gap: 1.25rem; margin-bottom: 0; }
  .text_area, .feature_img { width: 100%; }

  .step_grid { grid-template-columns: 1fr; gap: 5rem; padding: 0 1.25rem; }
  .step_grid::before { display: none; }
  .step_wrapper { max-width: 13rem; width: 100%; margin: 0 auto; }

  .target_content_grid { grid-template-columns: 1fr; gap: 0; }
  .target_item { padding: 1.5rem; }
  .won_bg_overflow { bottom: -18%; left: -33%; width: 90%; z-index: 1; transform: rotate(-9.511deg); }

  .process_card_wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .process_card { padding: 2rem 1.2rem; border-radius: 3rem; }
  .timeline_item .text .btn img { width: 18px; flex-shrink: 0; }

  .settle_content_grid { grid-template-columns: 1fr; gap: 2rem; }
  .settle_step::before { left: 29px; }
  .settle_bg_num { width: 60px; height: 60px; }
  .euro_bg_overflow {top: 0%; right: -60%; }
  .faq_card summary::after { width: 18px; height: 18px; }
  .footer_in { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width:400px) {
  .t_br { display: none;}
}