@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');

/* =========================================================
   만능맨 파트너스 v2 — Design System
   포인트 컬러: #2EA0D2
   ========================================================= */

/* 이미지 무단 복사 방지(드래그·선택 차단) — 완전한 보안 수단이 아니라
   단순 복사 방지 수준의 보조 장치. 텍스트 선택은 전혀 막지 않음(이미지에만 적용) */
img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

:root {
  /* Brand */
  --brand:      #2EA0D2;
  --brand-dk:   #1d87b8;
  --brand-ink:  #0f4a6b;

  /* Blue tones */
  --blue-50:    #f0f8fd;
  --blue-100:   #d9eef8;
  --blue-200:   #add9ef;
  --blue-300:   #7ac2e4;
  --blue-500:   #2EA0D2;

  /* Navy */
  --navy-900:   #0b1e2d;
  --navy-800:   #122a3e;
  --navy-700:   #1a3a52;

  /* Neutrals */
  --ink:        #18243a;
  --ink-2:      #4a5568;
  --ink-3:      #8393a7;
  --line:       #e8edf3;
  --line-2:     #f1f4f8;
  --surface:    #ffffff;
  --surface-2:  #f6f9fc;
  --surface-3:  #eef2f7;
  --white:      #ffffff;

  --ok:         #27ae60;
  --amber:      #e6a817;
  --amber-bg:   #fdf6e3;

  /* Radii */
  --radius:     16px;
  --radius-lg:  24px;
  --radius-sm:  10px;

  /* Shadows */
  --shadow-s:   0 1px 3px rgba(15,30,50,.05), 0 4px 12px rgba(15,30,50,.06);
  --shadow-m:   0 2px 8px rgba(15,30,50,.06), 0 14px 32px rgba(15,30,50,.09);
  --shadow-l:   0 6px 20px rgba(15,30,50,.07), 0 30px 64px rgba(15,30,50,.13);
  --shadow-blue: 0 6px 18px rgba(46,160,210,.30), 0 1px 4px rgba(46,160,210,.22);

  --grad-brand: linear-gradient(135deg, #2EA0D2, #1d87b8);

  --container:  1180px;
  --font: 'Pretendard Variable','Pretendard',-apple-system,system-ui,'Apple SD Gothic Neo','Malgun Gothic',sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--blue-100); }

/* ===== LAYOUT ===== */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.bg-soft { background: var(--surface-2); }
.bg-soft2 { background: linear-gradient(180deg, var(--surface-2), var(--white)); }
.bg-navy {
  background: radial-gradient(120% 130% at 80% 0%, var(--navy-800), var(--navy-900) 60%);
  color: #fff;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1.5px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
}
.bg-navy .eyebrow { color: var(--blue-300); }
.bg-navy .eyebrow::before { background: var(--blue-300); }

h1, h2, h3 { letter-spacing: -.03em; line-height: 1.18; font-weight: 800; color: var(--ink); word-break: keep-all; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
h2 { font-size: clamp(26px, 3.4vw, 42px); }
.sec-head { max-width: 700px; margin-bottom: 52px; }
.sec-head p { margin-top: 18px; font-size: clamp(15px, 1.3vw, 17px); color: var(--ink-2); line-height: 1.8; }
.bg-navy .sec-head p { color: var(--blue-100); }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.hl { color: var(--brand); }
.bg-navy .hl { color: var(--blue-300); }
.lede { font-size: clamp(15px, 1.35vw, 17px); color: var(--ink-2); line-height: 1.82; opacity: .85; }
.lede + .lede { margin-top: 18px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; border-radius: 999px; letter-spacing: -.01em;
  padding: 13px 26px;
  transition: transform .18s ease, box-shadow .22s ease, background .22s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(0) !important; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(46,160,210,.36); }
.btn--ghost { background: #fff; color: var(--brand); box-shadow: inset 0 0 0 1.5px var(--blue-200); }
.btn--ghost:hover { background: var(--blue-50); transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--brand); }
.btn--lg { padding: 16px 34px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--soft { background: var(--surface-3); color: var(--ink-2); }
.btn--soft:hover { background: var(--line); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ===== EVENT BANNER ===== */
.event-banner {
  position: relative;
  background: url('assets/event-banner-bg.png') center center / cover no-repeat;
  color: #fff; padding: 13px 16px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 13.5px; font-weight: 600;
  overflow: hidden;
}
.event-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,15,40,.72) 0%, rgba(8,24,65,.55) 50%, rgba(5,15,40,.72) 100%);
  pointer-events: none;
}
.event-banner > * { position: relative; z-index: 1; }
.event-banner.hidden { display: none; }
.event-banner-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.event-banner-badge {
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .05em;
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 0 0 2px rgba(255,255,255,.2);
}
.event-banner-msg {
  display: inline-flex; align-items: center; gap: 10px;
  flex-wrap: wrap; justify-content: center;
  color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.eb-tag {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.38);
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .02em;
  padding: 3px 11px; border-radius: 20px; white-space: nowrap;
}
.eb-benefit {
  color: #ffe866; font-size: 15px; font-weight: 800;
  letter-spacing: -.01em;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
  white-space: nowrap;
}

/* ===== BOTTOM STICKY EVENT BAR ===== */
.event-banner--bottom {
  position: fixed;
  bottom: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  z-index: 65;
  max-width: 1180px;
  width: calc(100% - 32px);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.38), 0 2px 8px rgba(0,0,0,.18);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease, visibility 0s .3s;
}
.event-banner--bottom.visible {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: opacity .3s ease, transform .3s ease, visibility 0s 0s;
}
@media (max-width: 640px) {
  .event-banner--bottom {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: calc(100% - 24px);
    border-radius: 14px;
    font-size: 12.5px;
  }
  .event-banner--bottom .event-banner-inner { gap: 7px; }
  .event-banner--bottom .event-banner-msg {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.8); backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.header.scrolled { border-color: var(--line); box-shadow: var(--shadow-s); }
.header .wrap { display: flex; align-items: center; gap: 16px; height: 66px; }

.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 17px; flex: none; }
.brand-logo { height: 34px; width: auto; display: block; }
.brand-logo--ftr { height: 26px; background: #fff; padding: 5px 10px; border-radius: 9px; box-sizing: content-box; }
.brand-txt { font-weight: 800; font-size: 16px; letter-spacing: -.02em; color: var(--brand); }
.footer .brand { display: flex; align-items: center; gap: 10px; }

/* 헤더 탭 네비게이션 — 탭 진입 시에만 표시 */
.nav { display: none; gap: 2px; margin-left: auto; }
@media (min-width: 769px) {
  body:has(#tabViewContainer.active) .nav { display: flex; }
}
.nav-tab {
  padding: 8px 14px; border-radius: 10px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  transition: color .15s, background .15s;
  position: relative;
  white-space: nowrap;
}
.nav-tab:hover { color: var(--brand); background: var(--blue-50); }
.nav-tab.active {
  color: var(--brand); font-weight: 800;
}
.nav-tab.active::after {
  content: "";
  position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px;
  background: var(--brand); border-radius: 2px;
}

.header-tel {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--ink);
  white-space: nowrap; padding: 8px 10px;
  transition: color .15s;
}
.header-tel svg { flex: none; color: var(--brand); }
.header-tel:hover { color: var(--brand); }

.header .cta { margin-left: 4px; }
.header .btn { padding: 9px 18px; font-size: 14px; }

.menu-toggle {
  display: none; margin-left: auto;
  width: 40px; height: 40px; border-radius: 10px;
  align-items: center; justify-content: center; color: var(--ink);
}
.menu-toggle svg { width: 22px; height: 22px; }

/* ===== 모바일 빠른 탭 메뉴 — 탭 진입 시에만 표시 ===== */
.mobile-quick-tabs { display: none; }
@media (max-width: 768px) {
  body:has(#tabViewContainer.active) .mobile-quick-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 14px 9px;
    background: #ffffff;
    border-top: 1px solid rgba(215,236,250,0.8);
    border-bottom: 1px solid rgba(215,236,250,0.8);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: sticky;
    top: 66px;
    z-index: 40;
  }
  .mobile-quick-tabs::-webkit-scrollbar { display: none; }
  .mqt-btn {
    flex: 0 0 auto;
    border: 1px solid #bfe7fa;
    background: #ffffff;
    color: #31445b;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap;
  }
  .mqt-btn.active,
  .mqt-btn:hover,
  .mqt-btn:focus-visible {
    background: #eef8ff;
    color: #1597d3;
    border-color: #8ed4f8;
  }
}

/* ===== MOBILE MENU ===== */
.mob-overlay {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(10,20,35,.45); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.mob-overlay.open { opacity: 1; pointer-events: auto; }
.mob-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 80;
  width: min(320px, 88vw); background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.2,.8,.3,1);
  box-shadow: var(--shadow-l);
  max-height: 100vh;
}
.mob-menu.open { transform: translateX(0); }
.mob-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 16px; border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.mob-menu-scroll {
  flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: 28px;
}
.mob-menu-scroll::-webkit-scrollbar { width: 3px; }
.mob-menu-scroll::-webkit-scrollbar-thumb { background: #d7ecfa; border-radius: 3px; }
.mob-close {
  width: 36px; height: 36px; border-radius: 9px;
  display: grid; place-items: center; color: var(--ink-2);
}
.mob-close svg { width: 20px; height: 20px; }
.mob-nav { display: flex; flex-direction: column; padding: 12px 12px 0; }
.mob-tab-btn {
  text-align: left; padding: 13px 12px; border-radius: 10px;
  font-size: 16px; font-weight: 600; color: var(--ink-2);
  transition: color .15s, background .15s;
}
.mob-tab-btn:hover, .mob-tab-btn.active { color: var(--brand); background: var(--blue-50); }
.mob-divider { height: 1px; background: var(--line); margin: 14px 20px; }
/* 신청하기 CTA (햄버거 메뉴 내부) */
.mob-cta-wrap { padding: 0 20px; }
.mob-cta-primary {
  display: block; width: 100%;
  background: linear-gradient(135deg, #1597d3 0%, #0057b0 100%);
  color: #fff; border-radius: 999px;
  padding: 14px 20px; font-size: 15px; font-weight: 800;
  text-align: center; cursor: pointer;
  transition: opacity .15s, transform .15s;
  border: none; letter-spacing: .01em;
}
.mob-cta-primary:hover, .mob-cta-primary:focus-visible {
  opacity: .88; transform: translateY(-1px);
}
.mob-tel {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 700; color: var(--ink);
  padding: 14px 20px 4px;
}
.mob-tel svg { color: var(--brand); }
/* 운영시간 카드 */
.mobile-menu-hours {
  margin: 10px 20px 0;
  background: #f0f8ff;
  border: 1px solid #d7ecfa;
  border-radius: 12px;
  padding: 13px 16px;
}
.mobile-menu-hours strong {
  display: block; font-size: 12px; font-weight: 800;
  color: #1597d3; margin-bottom: 7px; letter-spacing: .03em;
}
.mobile-menu-hours p {
  font-size: 12px; color: #31445b; margin: 0; line-height: 1.9;
}
/* 정책 버튼 2열 그리드 */
.mobile-policy-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 20px;
}
.mobile-policy-buttons button {
  border: 1px solid #d7ecfa;
  background: #ffffff;
  color: #31445b;
  border-radius: 12px;
  padding: 11px 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  line-height: 1.35;
  word-break: keep-all;
}
.mobile-policy-buttons button:hover,
.mobile-policy-buttons button:focus-visible {
  background: #eef8ff;
  color: #1597d3;
  border-color: #8ed4f8;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, var(--blue-50) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: var(--container); margin: 0 auto; padding: 32px 24px 0; }

/* 슬라이더 */
.hero-slider {
  position: relative;
  background: transparent;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.slider-viewport {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-l);
}

.slider-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.slide {
  flex: 0 0 100%; min-width: 0;
  display: block;
}

.slide-img-wrap {
  width: 100%;
  overflow: hidden;
}
.slide-img {
  width: 100%; height: auto;
  display: block;
}

.slide-content {
  padding: 48px 52px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  height: 100%;
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}

.slide-badge {
  display: inline-flex; align-items: center;
  background: rgba(46,160,210,.2); border: 1px solid rgba(46,160,210,.35);
  color: var(--blue-300); font-size: 12px; font-weight: 700; letter-spacing: .06em;
  padding: 5px 12px; border-radius: 999px;
  width: fit-content;
}

.slide-title {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800; color: #fff;
  letter-spacing: -.03em; line-height: 1.22;
}

.slide-desc {
  font-size: clamp(14px, 1.2vw, 15.5px);
  color: rgba(255,255,255,.75);
  line-height: 1.75;
}

.slide-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff;
  font-size: 14.5px; font-weight: 700;
  padding: 12px 22px; border-radius: 999px;
  box-shadow: var(--shadow-blue);
  width: fit-content;
  transition: transform .18s, box-shadow .22s;
}
.slide-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(46,160,210,.38); }

/* 슬라이더 화살표 — 카드 가장자리에 걸치는 형태 (데스크탑 기준) */
.slider-arrow {
  position: absolute; top: 50%;
  z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.78); backdrop-filter: blur(8px);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(15,30,50,.18), 0 0 0 1px rgba(255,255,255,.45);
  display: grid; place-items: center;
  transition: background .15s, box-shadow .15s, transform .15s;
}
.slider-arrow:hover {
  background: rgba(255,255,255,.97);
  box-shadow: 0 4px 16px rgba(15,30,50,.20), 0 0 0 1px rgba(255,255,255,.8);
}
/* 데스크탑: 카드 좌우 가장자리에 반쪽 걸치는 배치 */
.slider-arrow--prev {
  left: 0;
  transform: translateY(-50%) translateX(-50%);
}
.slider-arrow--prev:hover {
  transform: translateY(-50%) translateX(-50%) scale(1.08);
}
.slider-arrow--next {
  right: 0;
  transform: translateY(-50%) translateX(50%);
}
.slider-arrow--next:hover {
  transform: translateY(-50%) translateX(50%) scale(1.08);
}

/* 점 인디케이터 */
.slider-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background .25s, width .25s;
}
.slider-dot.active {
  background: var(--brand); width: 22px; border-radius: 4px;
}

/* 히어로 하단 배너 */
.hero-footer {
  padding: 24px 0 36px;
}
.hero-banner-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow-m);
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-lg);
}
.hero-banner-btn {
  position: absolute;
  left: 89.5%;
  top: 91.5%;
  transform: translate(-50%, -50%);
  padding: 10px 22px;
  font-size: 13px;
  border-radius: 8px;
  white-space: nowrap;
}
.hero-banner-btn:hover {
  transform: translate(-50%, calc(-50% - 2px));
}
.hero-banner-btn:active {
  transform: translate(-50%, -50%) !important;
}

/* ===== SPA VIEW SYSTEM ===== */

/* 홈 뷰: 기본 표시, .hidden 시 숨김 */
#homeView { display: block; }
#homeView.hidden { display: none; }

/* 탭 뷰 컨테이너: 기본 숨김, .active 시 표시 */
.tab-view-container { display: none; }
.tab-view-container.active { display: block; animation: viewFadeIn .3s ease; }

/* 개별 탭 뷰: 기본 숨김, .active 시 표시 */
.tab-view { display: none; }
.tab-view.active { display: block; }

@keyframes viewFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ===== 탭 뷰 히어로 헤더 ===== */
.view-hero {
  background: linear-gradient(160deg, var(--blue-50) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 56px;
}
.view-hero-inner { max-width: 760px; }
.view-badge {
  display: inline-flex; align-items: center;
  background: var(--blue-50); border: 1px solid var(--blue-200);
  color: var(--brand); font-size: 12px; font-weight: 800; letter-spacing: .08em;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 20px;
  width: fit-content;
}
.view-hero-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; color: var(--ink); letter-spacing: -.04em;
  line-height: 1.18; margin-bottom: 16px;
  text-shadow: 0 1px 8px rgba(255,255,255,0.75);
}
.view-hero-desc {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink); font-weight: 500; line-height: 1.8; margin-bottom: 20px;
  max-width: 600px;
  text-shadow: 0 1px 6px rgba(255,255,255,0.85);
}

/* ===== 탭 히어로 — Grid 겹침 구조 ===== */
/*
  image + content 를 같은 grid-area(1/1)에 겹침 →
  행 높이 = max(이미지 자연 높이, 텍스트 높이)
  → 이미지 가로세로 짤림 없음 + 텍스트 사라짐 없음
*/
.tab-view .view-hero {
  position: relative;
  display: grid;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: var(--blue-50);
  isolation: isolate;
}
/* 텍스트 가독성을 위한 왼쪽 그라디언트 오버레이 */
.tab-view .view-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(255,255,255,0.78) 0%,
    rgba(255,255,255,0.55) 40%,
    rgba(255,255,255,0.10) 68%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* 이미지: 그리드 셀을 stretch로 채움 → 빈 공간 없음
   이미지가 텍스트보다 클 때(큰 화면)는 자연 비율 = 잘림 없음
   텍스트가 더 클 때(작은 화면)는 cover로 채워서 빈공간·텍스트 사라짐 모두 없음 */
.view-hero-img {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: 100%;
  align-self: stretch;
  object-fit: cover;
  object-position: center top;
}
/* 텍스트: 이미지와 같은 grid 셀에 겹쳐서 항상 완전히 표시 */
.view-hero-content {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  padding: clamp(48px, 5.5vw, 72px) 0 clamp(56px, 5.5vw, 80px);
}

/* ===== 탭 뷰 준비중 박스 ===== */
.view-wip-box {
  background: #fff; border: 2px dashed var(--blue-200);
  border-radius: var(--radius-lg); padding: 60px 40px;
  text-align: center; max-width: 560px; margin: 0 auto;
}
.wip-icon { font-size: 52px; margin-bottom: 20px; line-height: 1; }
.view-wip-box h3 { font-size: 22px; font-weight: 800; margin-bottom: 13px; color: var(--ink); }
.view-wip-box p { font-size: 15px; color: var(--ink-2); line-height: 1.78; }

/* ===== TRUST GRID ===== */
.trust-sec { padding-top: 64px; padding-bottom: 72px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow-s);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.trust-card:hover { border-color: var(--blue-200); transform: translateY(-3px); box-shadow: var(--shadow-m); }
.tc-icon { flex: none; width: 48px; height: 48px; object-fit: contain; }
.trust-card b { display: block; font-size: 15px; font-weight: 800; line-height: 1.3; }
.trust-card span { display: block; font-size: 13px; color: var(--ink-2); margin-top: 4px; line-height: 1.5; }

/* ===== BENEFIT CARDS ===== */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.benefit-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow-s);
  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s, color .25s;
  overflow: hidden; display: flex; flex-direction: column;
}
.benefit-card:hover {
  transform: translateY(-4px); background: var(--grad-brand);
  border-color: transparent; box-shadow: var(--shadow-blue); color: #fff;
}
.benefit-card:hover h3 { color: #fff; }
.benefit-card:hover p { color: rgba(255,255,255,.82); }
.benefit-card:hover .bic { background: rgba(255,255,255,.18); }
.benefit-card:hover .tagno span { background: rgba(255,255,255,.18); color: #fff; }
.benefit-card .bic {
  width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center; font-size: 23px;
  background: var(--blue-50); margin-bottom: 18px;
  transition: background .25s;
}
.benefit-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 9px; line-height: 1.35; transition: color .25s; }
.benefit-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.72; transition: color .25s; }
.benefit-card.feature .tagno { display: inline-flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; }
.benefit-card.feature .tagno span {
  background: var(--blue-50); color: var(--brand-ink);
  border-radius: 7px; padding: 4px 10px; font-size: 12px; font-weight: 700;
  transition: background .25s, color .25s;
}

/* ===== NOTE BAR ===== */
.note-bar {
  margin-top: 24px; display: flex; gap: 13px; align-items: flex-start;
  background: var(--amber-bg); border: 1px solid #e8d48a;
  border-radius: 12px; padding: 16px 20px; font-size: 14px; color: #7a5a0a; line-height: 1.6;
}
.note-bar .ni { flex: none; font-size: 17px; }

/* ===== SPLIT (2컬럼) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .media { order: 2; }
.split h2 { margin-bottom: 22px; }
.media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-m), inset 0 0 0 1px rgba(0,0,0,.05);
  background: var(--surface-3);
}
.media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; display: block; }

/* ===== MINI GRID ===== */
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px; }
.mini {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 13px;
  padding: 18px; box-shadow: var(--shadow-s); transition: .22s;
}
.mini:hover { border-color: var(--blue-200); transform: translateY(-3px); box-shadow: var(--shadow-m); }
.mini .mic {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  background: var(--blue-50); display: grid; place-items: center; font-size: 19px;
}
.mini b { display: block; font-size: 14.5px; font-weight: 700; line-height: 1.45; }

/* ===== SERVICE CARDS ===== */
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.svc-card {
  display: flex; align-items: center; gap: 13px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 15px 17px; box-shadow: var(--shadow-s);
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.svc-card:hover { border-color: var(--brand); background: var(--blue-50); transform: translateY(-2px); box-shadow: var(--shadow-m); }
.svc-card .sc-ic {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  background: var(--blue-50); display: grid; place-items: center; font-size: 21px;
  transition: background .2s;
}
.svc-card:hover .sc-ic { background: #fff; }
.svc-card b { font-size: 15px; font-weight: 700; line-height: 1.35; }

/* ===== APP GRID ===== */
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.app-card {
  background: var(--navy-800); border: 1px solid var(--navy-700);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-l);
}
.app-card .shot { background: var(--navy-900); padding: 20px 20px 0; }
.app-card .shot img { width: 100%; border-radius: 10px 10px 0 0; }
.app-card .meta { padding: 20px 22px 24px; }
.app-card .step-no {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--blue-300); font-weight: 800; font-size: 12px; letter-spacing: .1em; margin-bottom: 9px;
}
.app-card .step-no i {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255,255,255,.1); display: grid; place-items: center; font-style: normal;
}
.app-card h3 { font-size: 18px; margin-bottom: 8px; color: #fff; }
.app-card p { font-size: 14px; color: var(--blue-100); line-height: 1.65; }

/* ===== FLOW STEPS ===== */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.flow-step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 18px 18px 20px;
  box-shadow: var(--shadow-s); transition: .22s;
  display: flex; flex-direction: column;
}
.flow-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: var(--blue-200); }
.fs-header { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
.fs-ico {
  flex: none; width: 34px; height: 34px; border-radius: 9px;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  display: grid; place-items: center; font-size: 16px;
}
.flow-step h3 { font-size: 15px; font-weight: 800; line-height: 1.3; color: var(--ink); }
.flow-step p { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; flex: 1; }
.flow-step--cta {
  background: linear-gradient(160deg, var(--brand), var(--brand-dk));
  border: none; padding-top: 20px;
}
.flow-step--cta:hover { box-shadow: var(--shadow-blue); }
.flow-step--cta h3 { color: #fff; }
.flow-step--cta p { color: rgba(255,255,255,.82); }
.fs-ico--white { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.22); }
.fs-header--cta { margin-bottom: 11px; }
.flow-cta-btn {
  margin-top: 13px; align-self: flex-start;
  background: #fff; color: var(--brand);
  font-size: 13.5px; font-weight: 800;
  padding: 8px 18px; border-radius: 999px;
  display: inline-flex; align-items: center;
  transition: transform .18s, background .18s;
  white-space: nowrap;
}
.flow-cta-btn:hover { background: var(--blue-50); transform: translateY(-1px); }

/* ===== ROLES ===== */
.roles { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.role { border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-m); }
.role.platform { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: #fff; border: 1px solid var(--navy-700); }
.role.partner { background: #fff; border: 1px solid var(--blue-200); }
.role .tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .12em;
  padding: 5px 11px; border-radius: 999px; margin-bottom: 13px;
}
.role.platform .tag { background: rgba(255,255,255,.14); color: #fff; }
.role.partner .tag { background: var(--blue-50); color: var(--brand); }
.role h3 { font-size: 21px; margin-bottom: 18px; }
.role.platform h3 { color: #fff; }
.role ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.role li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; font-weight: 600; line-height: 1.45; }
.role li .ck {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 12px; font-weight: 900;
}
.role.platform li { color: rgba(255,255,255,.92); }
.role.platform .ck { background: var(--blue-500); color: #fff; }
.role.partner li { color: var(--ink); }
.role.partner .ck { background: var(--blue-50); color: var(--brand); }

/* ===== SETTLEMENT ===== */
/* Settlement — 3-column horizontal layout */
.settle-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.settle-item { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px 26px; box-shadow: var(--shadow-s); }
.si-icon { font-size: 30px; margin-bottom: 14px; }
.si-lab { font-size: 11.5px; font-weight: 800; color: var(--brand); letter-spacing: .07em; text-transform: uppercase; margin-bottom: 8px; }
.si-big { font-size: 18px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; color: var(--ink); }
.si-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.si-list li { font-size: 13.5px; color: var(--ink-2); padding-left: 18px; position: relative; line-height: 1.55; }
.si-list li::before { content: "•"; position: absolute; left: 4px; color: var(--brand); }
.si-free { background: var(--grad-brand); color: #fff; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; border: none; box-shadow: var(--shadow-blue); }
.si-free .si-icon { font-size: 36px; }
.si-free .si-lab { color: rgba(255,255,255,.75); }
.si-free .si-big { color: #fff; font-size: 20px; }
.si-sub { font-size: 13.5px; color: rgba(255,255,255,.8); margin-top: 6px; }

/* ===== CHECKLIST ===== */
.check-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.check-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 14px; text-align: center; box-shadow: var(--shadow-s); transition: .22s;
}
.check-item:hover { border-color: var(--blue-200); transform: translateY(-3px); box-shadow: var(--shadow-m); }
.check-item .n {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue-50); color: var(--brand); font-weight: 800;
  display: grid; place-items: center; margin: 0 auto 11px; font-size: 14px;
}
.check-item b { font-size: 13.5px; font-weight: 700; line-height: 1.45; }

/* ===== EVENT CARD (새 디자인) ===== */
.ev-card {
  position: relative;
  border-radius: 32px;
  border: 1px solid rgba(100, 200, 240, 0.38);
  box-shadow: 0 8px 40px rgba(13,74,120,0.10), 0 2px 8px rgba(46,160,210,0.07);
  overflow: hidden;
  min-height: 600px;
  background-image: url('이벤트박스/이벤트%20박스.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.ev-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.70) 42%, rgba(255,255,255,0.22) 65%, transparent 80%);
  z-index: 1;
  pointer-events: none;
}
.ev-card-content {
  position: relative;
  z-index: 2;
  padding: 60px 60px 52px;
  max-width: 54%;
}

/* 뱃지 */
.ev-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #1b80aa;
  background: rgba(255,255,255,0.93);
  border: 1.5px solid #2EA0D2;
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.ev-badge-icon { width: 15px; height: 15px; flex-shrink: 0; }

/* 메인 타이틀 */
.ev-main-title {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 900;
  color: #0d2a45;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

/* 핵심 혜택 */
.ev-benefit {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: #1b80aa;
  margin: 0 0 18px;
  line-height: 1.3;
}
.ev-benefit-em { color: #0a5f8a; font-weight: 900; }

/* 설명 */
.ev-desc {
  font-size: clamp(15px, 1.4vw, 18px);
  color: #344054;
  line-height: 1.80;
  margin: 0 0 28px;
}

/* CTA 버튼 */
.ev-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(135deg, #2EA0D2 0%, #1b7faa 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  padding: 0 30px;
  height: 56px;
  min-width: 210px;
  cursor: pointer;
  margin-bottom: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 18px rgba(46,160,210,0.32);
  letter-spacing: 0.01em;
}
.ev-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,160,210,0.42);
}
.ev-cta-btn:active { transform: translateY(0); }
.ev-cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* 정보 카드 행 */
.ev-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.ev-info-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(46,160,210,0.22);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(13,74,120,0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ev-info-card-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46,160,210,0.10);
  border-radius: 8px;
  color: #2EA0D2;
  margin-top: 1px;
}
.ev-info-card-icon svg { width: 16px; height: 16px; }
.ev-info-card-text { display: flex; flex-direction: column; gap: 3px; }
.ev-info-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #2EA0D2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ev-info-value {
  font-size: 13px;
  font-weight: 600;
  color: #1a3045;
  line-height: 1.45;
}

/* 하단 안내 박스 */
.ev-notice-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 16px;
  padding: 12px 16px;
}
.ev-notice-badge {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fbbf24;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-top: 1px;
  line-height: 1;
}
.ev-notice-body strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #92600a;
  margin-bottom: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ev-notice-body p {
  font-size: 12.5px;
  color: #78600a;
  margin: 0;
  line-height: 1.65;
}

/* ===== 메인 페이지 이벤트 카드: 컴팩트 오버라이드 ===== */
#event-promo .ev-card {
  min-height: 300px;
}
#event-promo .ev-card-content {
  padding: 32px 44px 28px;
  max-width: 56%;
}
#event-promo .ev-badge {
  font-size: 11.5px;
  padding: 5px 12px 5px 9px;
  margin-bottom: 14px;
}
#event-promo .ev-main-title {
  font-size: clamp(26px, 2.6vw, 38px);
  margin-bottom: 6px;
}
#event-promo .ev-benefit {
  font-size: clamp(16px, 1.6vw, 20px);
  margin-bottom: 10px;
}
#event-promo .ev-desc {
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}
#event-promo .ev-cta-btn {
  height: 44px;
  font-size: 14px;
  padding: 0 20px;
  min-width: 170px;
  margin-bottom: 18px;
}
/* 정보 박스: 예시처럼 2열 나란히, 왼쪽 정렬, 텍스트 줄바꿈 없음 */
#event-promo .ev-info-row {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
#event-promo .ev-info-card {
  padding: 10px 14px;
  gap: 9px;
}
#event-promo .ev-info-card-icon {
  width: 28px;
  height: 28px;
}
#event-promo .ev-info-card-icon svg {
  width: 14px;
  height: 14px;
}
#event-promo .ev-info-label {
  font-size: 9.5px;
}
#event-promo .ev-info-value {
  font-size: 12px;
  white-space: nowrap;
}
#event-promo .ev-notice-box {
  padding: 10px 14px;
}
#event-promo .ev-notice-body p {
  font-size: 11.5px;
}

/* ===== FAQ ===== */
.faq-tabs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.faq-tab {
  padding: 9px 17px; border-radius: 999px;
  font-size: 14px; font-weight: 700; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line); transition: .16s;
}
.faq-tab:hover { border-color: var(--blue-200); color: var(--brand); }
.faq-tab.active { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: var(--shadow-blue); }
.faq-search { position: relative; margin-bottom: 24px; max-width: 400px; }
.faq-search input {
  width: 100%; border: 1px solid var(--line); border-radius: 11px;
  padding: 12px 15px 12px 42px; font-size: 14.5px; font-family: inherit;
  background: #fff; box-shadow: var(--shadow-s);
}
.faq-search input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(46,160,210,.15); }
.faq-search .si { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-3); }
.faq-group { margin-bottom: 28px; }
.faq-group-head { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 800; color: var(--brand-ink); margin-bottom: 11px; }
.faq-group-head .gi { font-size: 18px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 9px; overflow: hidden; transition: border-color .18s, box-shadow .18s; }
.faq-item.open { border-color: var(--blue-200); box-shadow: var(--shadow-m); }
.faq-q { display: flex; align-items: center; gap: 13px; width: 100%; text-align: left; padding: 17px 20px; font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.faq-q .qm { flex: none; width: 24px; height: 24px; border-radius: 7px; background: var(--blue-50); color: var(--brand); display: grid; place-items: center; font-weight: 900; font-size: 13px; }
.faq-q .chev { margin-left: auto; flex: none; transition: transform .25s; color: var(--ink-3); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 20px 18px 57px; font-size: 14.5px; color: var(--ink-2); line-height: 1.72; }
.faq-a-inner strong { color: var(--brand); }
.faq-empty { display: none; text-align: center; padding: 40px; color: var(--ink-3); }

/* ===== FINAL CTA ===== */
.final-cta { position: relative; overflow: hidden; }
.final-cta .inner { max-width: 740px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(28px, 3.8vw, 44px); margin-bottom: 18px; }
.final-cta p { font-size: clamp(15px, 1.4vw, 18px); color: var(--blue-100); line-height: 1.75; margin-bottom: 30px; }
.final-cta .note { font-size: 13px; color: var(--blue-300); margin-top: 20px; }
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 15% 20%, rgba(46,160,210,.4), transparent 60%),
              radial-gradient(50% 60% at 85% 80%, rgba(13,74,120,.35), transparent 60%);
}

/* ===== FOOTER ===== */
.footer { background: var(--navy-900); color: #fff; padding: 56px 0 36px; }
.footer-top { display: flex; justify-content: space-between; gap: 36px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; }
.footer .phone { font-size: 28px; font-weight: 800; letter-spacing: -.02em; }
.footer .hours { font-size: 13px; color: var(--blue-200); margin-top: 5px; line-height: 1.6; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; margin: 22px 0; font-size: 13.5px; color: var(--blue-100); }
.footer-links a:hover { color: #fff; }
.footer .biz { font-size: 12px; color: var(--blue-300); line-height: 1.85; }
.footer .biz b { color: var(--blue-100); }

/* ===== MODAL / FORM ===== */
.overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,20,35,.55); backdrop-filter: blur(4px);
  display: none; flex-direction: column; align-items: center;
  padding: 20px 16px; overflow-y: auto;
}
.overlay.show { display: flex; }
.modal {
  width: 100%; max-width: 540px; background: #fff; border-radius: 22px;
  box-shadow: var(--shadow-l); overflow: hidden;
  animation: pop .28s cubic-bezier(.2,.8,.3,1);
  display: flex; flex-direction: column;
  max-height: calc(100vh - 40px); max-height: calc(100dvh - 40px); margin: auto 0;
}
@keyframes pop { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-head { display: flex; align-items: center; gap: 11px; padding: 16px 22px 0; flex-shrink: 0; }
.modal-head .mh-t { font-size: 11.5px; font-weight: 800; color: var(--brand); letter-spacing: .1em; text-transform: uppercase; }
.modal-head h3 { font-size: 17px; margin-top: 2px; }
.modal-close { margin-left: auto; width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; color: var(--ink-3); font-size: 19px; }
.modal-close:hover { background: var(--surface-3); color: var(--ink); }
.steps { display: flex; gap: 7px; padding: 11px 22px 3px; flex-shrink: 0; }
.steps .st { flex: 1; display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--ink-3); }
.steps .st .sn { width: 24px; height: 24px; border-radius: 50%; background: var(--surface-3); color: var(--ink-3); display: grid; place-items: center; font-size: 12px; flex: none; transition: .2s; }
.steps .st.active .sn { background: var(--brand); color: #fff; }
.steps .st.active { color: var(--ink); }
.steps .st.done .sn { background: var(--ok); color: #fff; }
#formArea { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.modal-body { padding: 11px 22px 14px; overflow-y: auto; flex: 1; min-height: 0; }
.fstep { display: none; }
.fstep.active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
.field-row { margin-bottom: 10px; }
.field-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
label.fl { display: block; font-size: 13px; font-weight: 700; margin-bottom: 5px; color: var(--ink); }
label.fl .req { color: var(--brand); margin-left: 2px; }
.inp, select.inp, textarea.inp {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 12px; font-size: 14px; font-family: inherit;
  background: #fff; transition: .15s; color: var(--ink);
}
.inp:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(46,160,210,.12); }
textarea.inp { resize: vertical; min-height: 58px; }
.email-wrap { position: relative; }
.email-suggest {
  position: absolute; left: 0; right: 0; top: calc(100% + 4px);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 10px 26px rgba(15,23,42,.12); list-style: none;
  margin: 0; padding: 4px; z-index: 20; max-height: 210px; overflow-y: auto;
}
.email-suggest[hidden] { display: none; }
.email-suggest li {
  padding: 8px 10px; border-radius: 8px; font-size: 13.5px; color: var(--ink-2);
  cursor: pointer; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.email-suggest li mark { background: none; color: var(--brand); font-weight: 700; }
.email-suggest li:hover, .email-suggest li.active { background: var(--blue-50); color: var(--brand); }
.seg { display: flex; gap: 9px; }
.seg label { flex: 1; border: 1px solid var(--line); border-radius: 10px; padding: 9px; text-align: center; font-size: 13.5px; font-weight: 700; cursor: pointer; transition: .15s; color: var(--ink-2); }
.seg input { display: none; }
.seg label:has(input:checked) { border-color: var(--brand); background: var(--blue-50); color: var(--brand); }
.dispatch-seg { display: flex; gap: 8px; flex-wrap: wrap; }
.dispatch-seg label { border: 1px solid var(--line); border-radius: 10px; padding: 8px 14px; font-size: 13.5px; font-weight: 700; cursor: pointer; transition: .15s; color: var(--ink-2); }
.dispatch-seg input { display: none; }
.dispatch-seg label:has(input:checked) { border-color: var(--brand); background: var(--blue-50); color: var(--brand); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.svc { border: 1px solid var(--line); border-radius: 11px; padding: 8px 5px; text-align: center; font-size: 12.5px; font-weight: 700; cursor: pointer; transition: .15s; color: var(--ink-2); user-select: none; }
.svc .e { display: block; font-size: 17px; margin-bottom: 3px; }
.svc.on { border-color: var(--brand); background: var(--blue-50); color: var(--brand); box-shadow: inset 0 0 0 1px var(--brand); }
.etc-row[hidden] { display: none; }
.etc-row { background: var(--blue-50); border: 1px dashed var(--blue-200); border-radius: 11px; padding: 12px 14px; }
.ref-etc-row[hidden] { display: none; }
.ref-etc-row { background: var(--blue-50); border: 1px dashed var(--blue-200); border-radius: 11px; padding: 12px 14px; }
.referral-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.ref-opt { display: flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 10px; padding: 7px 10px; font-size: 12.5px; font-weight: 700; cursor: pointer; color: var(--ink-2); transition: .15s; user-select: none; word-break: keep-all; line-height: 1.4; }
.ref-opt input[type="radio"] { flex: none; width: 14px; height: 14px; accent-color: var(--brand); cursor: pointer; margin: 0; }
.ref-opt:has(input:checked) { border-color: var(--brand); background: var(--blue-50); color: var(--brand); }
.ref-opt--wide { grid-column: span 2; }
.consent { display: flex; gap: 9px; align-items: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-radius: 11px; padding: 11px; }
.consent input { margin-top: 2px; width: 17px; height: 17px; accent-color: var(--brand); flex: none; }
.consent .ctxt { font-size: 12.5px; color: var(--ink-2); line-height: 1.6; }
.consent .ctxt b { color: var(--ink); font-size: 13.5px; }
.form-nav { display: flex; gap: 11px; margin-top: 13px; position: sticky; bottom: 0; background: #fff; padding: 7px 0 3px; border-top: 1px solid var(--line); z-index: 1; }
.form-nav .btn { flex: 1; }
.err-msg { color: #c0392b; font-size: 12.5px; font-weight: 600; margin-top: 5px; display: none; }
/* 폼 스팸봇 방지용 허니팟 필드 — 실제 사용자에게는 보이지 않아야 하므로 화면 밖으로 배치 (완전한 봇 차단은 아니며 단순 자동 스팸 감소용) */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field-row.invalid .inp { border-color: #c0392b; }
.field-row.invalid .err-msg { display: block; }
.success { text-align: center; padding: 38px 28px; }
.success .sc { width: 80px; height: 80px; border-radius: 50%; background: var(--blue-50); display: grid; place-items: center; margin: 0 auto 20px; animation: pop .4s; }
.success .sc svg { width: 42px; height: 42px; color: var(--ok); }
.success h3 { font-size: 22px; margin-bottom: 12px; }
.success p { font-size: 15px; color: var(--ink-2); line-height: 1.7; }
.success p strong { color: var(--brand); }
.dup .dc { width: 60px; height: 60px; border-radius: 50%; background: var(--amber-bg); display: grid; place-items: center; margin: 0 auto 16px; font-size: 28px; }
.dupcheck-actions { display: flex; gap: 11px; margin-top: 22px; }
.dupcheck-actions .btn { flex: 1; }
@media (max-width: 480px) { .dupcheck-actions { flex-direction: column; } }

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.93); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); display: none; box-shadow: 0 -6px 24px rgba(15,30,50,.07);
}
.sticky-cta .btn { width: 100%; }

/* ===== SCROLL TO TOP ===== */
.scroll-top-btn {
  position: fixed; right: 24px; bottom: 28px; z-index: 70;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-brand); color: #fff; border: none;
  display: grid; place-items: center;
  box-shadow: var(--shadow-blue);
  opacity: 0; transform: translateY(14px) scale(.88);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .18s, bottom .25s ease;
}
.scroll-top-btn.visible {
  opacity: 1; transform: none; pointer-events: auto;
}
.scroll-top-btn.above-banner { bottom: 90px; }
@media (max-width: 640px) { .scroll-top-btn.above-banner { bottom: 84px; } }
.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(46,160,210,.45), 0 2px 6px rgba(46,160,210,.3);
}
.scroll-top-btn:active { transform: scale(.94); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) and (min-width: 769px) {
  .header .wrap { gap: 6px; padding: 0 14px; }
  .nav-tab { padding: 7px 9px; font-size: 13px; }
  .header-tel { font-size: 13px; padding: 7px 8px; }
  .header .btn { padding: 8px 13px; font-size: 13px; }
}

@media (max-width: 960px) and (min-width: 769px) {
  .nav-tab { padding: 6px 8px; font-size: 12.5px; }
  .header-tel { display: none; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; margin-left: 6px; }
  .header .wrap { gap: 0; padding: 0 14px; }
  .header-tel { font-size: 12.5px; padding: 6px 9px; gap: 4px; margin-left: auto; }
  .header-tel svg { width: 13px; height: 13px; }
  .header .cta {
    padding: 8px 14px; font-size: 13px; font-weight: 700; margin-left: 6px;
    background: var(--brand); color: #fff;
    box-shadow: none; border-radius: 10px;
  }
}
@media (max-width: 420px) {
  .header-tel { font-size: 11.5px; padding: 5px 7px; }
  .header-tel svg { display: none; }
  .header .cta { padding: 7px 10px; font-size: 12px; }
}

@media (max-width: 1024px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid, .svc-cards { grid-template-columns: repeat(2, 1fr); }
  .check-grid { grid-template-columns: repeat(3, 1fr); }
  .app-grid { gap: 16px; }
  .ev-card-content { padding: 52px 44px 44px; max-width: 62%; }
}

@media (max-width: 860px) {
  /* 히어로 하단 배너 */
  /* hero-banner-btn: 크기 고정이므로 별도 오버라이드 없음 */

  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.rev .media { order: 0; }
  .split h2 { margin-bottom: 14px; }
  .roles { grid-template-columns: 1fr; }
  .ev-card { min-height: auto; background-position: right bottom; border-radius: 22px; }
  .ev-card::before { background: rgba(255,255,255,0.88); }
  .ev-card-content { max-width: 100%; padding: 36px 24px 32px; }
  .ev-info-row { grid-template-columns: 1fr; }
  .ev-cta-btn { width: 100%; justify-content: center; min-width: unset; }
  .settle-row { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .view-hero { padding: 44px 0 36px; }
  /* 탭 히어로 모바일: 배경 이미지 위에 텍스트 오버레이 유지, 가독성 강화 */
  .tab-view .view-hero::before {
    background: rgba(255,255,255,0.70);
  }
  .view-hero-content { padding: 36px 0 32px; }
  .view-wip-box { padding: 40px 24px; }
  .wrap { padding: 0 16px; }
  .section { padding: 64px 0; }
  .section--tight { padding: 48px 0; }
  .benefit-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; gap: 11px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cards { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row.two { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { padding: 20px 16px 0; }
  .slider-arrow--prev { left: 10px; transform: translateY(-50%); }
  .slider-arrow--prev:hover { transform: translateY(-50%) scale(1.06); }
  .slider-arrow--next { right: 10px; transform: translateY(-50%); }
  .slider-arrow--next:hover { transform: translateY(-50%) scale(1.06); }
  /* 모바일 슬라이더 확대 */
  .hero-inner { padding-left: 10px; padding-right: 10px; }
  .hero-slider { width: calc(100% - 0px); }
  .slider-viewport { border-radius: 18px; }
  .slide-img-wrap { min-height: unset; }
  .slide-img { width: 100%; height: auto; object-fit: unset; min-height: unset; }
  /* 빠른 이동 버튼 768px 이하 */
  .quick-section-buttons { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .quick-section-btn { padding: 16px 8px 14px; }
  .quick-section-btn .qsb-label { font-size: 13px; }
  .quick-cta-btn { min-width: 0; width: 100%; height: 58px; font-size: 16px; }
  .footer-top { flex-direction: column; gap: 20px; }
  .modal { border-radius: 18px; max-height: calc(100vh - 16px); max-height: calc(100dvh - 16px); }
  .overlay { padding: 14px 10px; }
  .app-grid { grid-template-columns: 1fr; gap: 18px; }
  .ev-card { border-radius: 16px; }
  .ev-card-content { padding: 28px 16px 24px; }
  .flow { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-banner-wrap { border-radius: 12px; overflow: visible; }
  .hero-banner-img { border-radius: 12px; }
  .hero-banner-btn { position: static; display: flex; width: 100%; margin-top: 12px; padding: 13px 0; border-radius: 12px; font-size: 15px; }
  /* 480px 이하 슬라이더 */
  .slide-img-wrap { min-height: unset; }
  .slide-img { min-height: unset; }
  .hero-inner { padding-left: 8px; padding-right: 8px; }
  /* 480px 이하 CTA 카드 */
  .quick-cta-card { padding: 22px 18px 20px; }
  .quick-cta-top { flex-direction: column; align-items: stretch; gap: 18px; }
  .quick-cta-left { gap: 14px; }
  .quick-cta-divider { margin: 20px 0 18px; }
  .quick-section-buttons { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .quick-section-btn { padding: 14px 8px 12px; }
  .quick-section-btn .qsb-label { font-size: 12.5px; }
}

/* ===== 파트너 신청 알림 토스트 ===== */
.partner-toast {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 28px;
  width: min(400px, calc(100vw - 40px));
  background: #fff;
  border: 2px solid #1597D3;
  border-radius: 24px;
  box-shadow:
    0 12px 28px rgba(21, 151, 211, 0.16),
    10px 12px 0 rgba(21, 151, 211, 0.10);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(.16,1,.3,1);
}
.partner-toast.is-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* 닫기 버튼 */
.partner-toast__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: transparent;
  color: #98A2B3;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
}
.partner-toast__close:hover {
  color: #475467;
}

/* 프로필 원형 */
.partner-toast__avatar {
  position: relative;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0E77D8 0%, #1597D3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-toast__initial {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: var(--font);
}

/* 초록 체크 뱃지 */
.partner-toast__check {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #23C16B;
  color: #fff;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

/* 본문 */
.partner-toast__body {
  flex: 1;
  min-width: 0;
  padding-right: 22px;
}
.partner-toast__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}
.partner-toast__name {
  color: #1A2433;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font);
}
.partner-toast__field {
  color: #1597D3;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font);
}
.partner-toast__live {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: #1E88E5;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-family: var(--font);
}
.partner-toast__bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}
.partner-toast__time {
  color: #6B7280;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  font-family: var(--font);
}

/* 초록 점 + pulse 애니메이션 */
.partner-toast__dot {
  position: relative;
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34C759;
}
.partner-toast__dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(52, 199, 89, 0.30);
  animation: partnerToastPulse 1.5s ease-in-out infinite;
}
@keyframes partnerToastPulse {
  0%   { transform: scale(0.8); opacity: 0.75; }
  60%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

@media (max-width: 768px) {
  .partner-toast {
    left: 12px;
    right: 12px;
    bottom: 16px;
    width: auto;
    border-radius: 22px;
    padding: 18px 18px;
    gap: 14px;
    transform: translateY(14px);
  }
  .partner-toast.is-visible {
    transform: translateY(0);
  }
  .partner-toast__avatar {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }
  .partner-toast__initial {
    font-size: 26px;
  }
  .partner-toast__name {
    font-size: 16px;
  }
  .partner-toast__field {
    font-size: 14px;
  }
  .partner-toast__time {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .trust-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .slider-arrow { width: 32px; height: 32px; }
  .slider-arrow--prev { left: 8px; transform: translateY(-50%); }
  .slider-arrow--next { right: 8px; transform: translateY(-50%); }
}
@media (max-width: 360px) {
  .quick-cta-card { padding: 18px 14px 16px; }
  .quick-section-btn { padding: 12px 6px 10px; }
  .quick-section-btn .qsb-label { font-size: 12px; }
  .quick-section-btn .qsb-icon svg { width: 19px; height: 19px; }
  .slide-img-wrap { min-height: unset; }
  .slide-img { min-height: unset; }
}

/* ===== 운영 흐름 7단계 프로세스 이미지 영역 ===== */
.process-image-area {
  width: 188px;
  height: 188px;
  margin: 10px auto 14px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eef8ff 0%, #f5fcff 55%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  padding: 8px;
  flex-shrink: 0;
}
.process-image-area img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.process-image-area--cta {
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 768px) {
  .process-image-area { width: 160px; height: 160px; border-radius: 18px; }
}
@media (max-width: 480px) {
  .process-image-area { width: 140px; height: 140px; border-radius: 16px; }
}
@media (max-width: 360px) {
  .process-image-area { width: 120px; height: 120px; border-radius: 14px; }
}

/* ===== 혜택 탭 STEP 이미지 래퍼 ===== */
.step-img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef8ff 0%, #f5fcff 60%, #ffffff 100%);
  margin: 12px 0 16px;
  padding: 14px 10px;
  box-sizing: border-box;
  min-height: 200px;
}
.step-img-wrap img {
  max-width: 90%;
  max-height: 220px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ===== 카드 이미지 반응형 오버라이드 ===== */
@media (max-width: 1024px) {
  .tab-v2-card-art { height: 220px; }
  .tab-v2-card img { max-height: 195px; }
}

@media (max-width: 768px) {
  .tab-v2-card-art { height: 200px; padding: 10px; }
  .tab-v2-card img { max-height: 178px; }
  .tab-v2-icon-card { min-height: 175px; }
  .icon-img-box { width: 110px; height: 110px; border-radius: 18px; padding: 7px; }
  .step-img-wrap { min-height: 175px; padding: 12px 10px; }
  .step-img-wrap img { max-height: 195px; max-width: 88%; }
  .tab-v2-promise-item img { width: 90px; height: 90px; padding: 5px; }
  .tab-v2-handshake img { max-width: 140px; max-height: 140px; }
  .tab-v2-art { min-height: 290px; padding: 10px; }
}

@media (max-width: 480px) {
  .tab-v2-card-art { height: 180px; padding: 10px; }
  .tab-v2-card img { max-height: 158px; }
  .tab-v2-icon-card { min-height: 158px; }
  .icon-img-box { width: 95px; height: 95px; border-radius: 16px; padding: 6px; }
  .step-img-wrap { min-height: 155px; padding: 10px 8px; }
  .step-img-wrap img { max-height: 170px; }
  .tab-v2-promise-item img { width: 80px; height: 80px; padding: 5px; }
  .tab-v2-art { min-height: 240px; }
}

@media (max-width: 390px) {
  .tab-v2-card-art { height: 165px; }
  .tab-v2-card img { max-height: 142px; }
  .icon-img-box { width: 84px; height: 84px; border-radius: 14px; }
  .step-img-wrap { min-height: 135px; }
  .step-img-wrap img { max-height: 148px; }
}

.tab-v2-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 860px) { .tab-v2-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .tab-v2-grid--3 { grid-template-columns: 1fr; } }

/* ===== TAB V2 DETAIL PAGES ===== */
.tab-v2-page { background: #fff; color: var(--ink); }
.tab-v2-page .reveal { opacity: 1; transform: none; }
.tab-v2-hero { background: linear-gradient(160deg, #f3faff 0%, #fff 100%); border-bottom: 1px solid var(--line); overflow: hidden; }
.tab-v2-hero-inner { min-height: 560px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 36px; padding-top: 52px; padding-bottom: 52px; }
.tab-v2-hero h1 { font-size: clamp(36px, 4.4vw, 62px); line-height: 1.12; letter-spacing: 0; margin: 22px 0 18px; word-break: keep-all; }
.tab-v2-hero-lead { font-size: clamp(18px, 2vw, 24px); line-height: 1.45; color: var(--brand); font-weight: 850; word-break: keep-all; }
.tab-v2-hero-body { margin: 20px 0 30px; font-size: 17px; line-height: 1.85; color: var(--ink-2); max-width: 560px; word-break: keep-all; }
.tab-v2-hero-art { min-height: 360px; display: grid; place-items: center; }
.tab-v2-hero-img { width: min(100%, 680px); height: auto; filter: drop-shadow(0 24px 40px rgba(46, 126, 210, .16)); }
.tab-v2-section { padding: 72px 0; }
.tab-v2-section--soft { background: linear-gradient(180deg, #f7fbff, #fff); }
.tab-v2-section-title { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.tab-v2-section-title h2 { font-size: clamp(26px, 3vw, 38px); letter-spacing: 0; }
.tab-v2-section-title p { margin-top: 10px; color: var(--ink-2); line-height: 1.75; word-break: keep-all; }
.tab-v2-grid { display: grid; gap: 20px; }
.tab-v2-grid--cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tab-v2-grid--icons { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.tab-v2-grid--faq-cats { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.tab-v2-card, .tab-v2-icon-card, .tab-v2-step, .tab-v2-role, .tab-v2-contact-card { background: rgba(255,255,255,.94); border: 1px solid #dbe9f8; border-radius: 18px; box-shadow: 0 16px 36px rgba(20, 80, 150, .08); }
.tab-v2-card { padding: 24px 20px 26px; text-align: center; min-height: 100%; }
.tab-v2-pill, .tab-v2-kicker { display: inline-flex; align-items: center; justify-content: center; padding: 7px 14px; border-radius: 999px; background: linear-gradient(135deg, #0b8ff0, #086fd4); color: #fff; font-size: 13px; font-weight: 800; margin-bottom: 14px; }
.tab-v2-card-art {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef8ff 0%, #f5fcff 55%, #ffffff 100%);
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
}
.tab-v2-card img {
  max-width: 93%;
  max-height: 225px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.tab-v2-card h3, .tab-v2-step h3 { font-size: 19px; margin: 10px 0 10px; letter-spacing: 0; word-break: keep-all; }
.tab-v2-card p, .tab-v2-step p, .tab-v2-role li { color: var(--ink-2); line-height: 1.65; font-size: 14px; word-break: keep-all; }
.tab-v2-icon-card { min-height: 200px; padding: 18px 12px; display: grid; place-items: center; gap: 12px; text-align: center; }
.tab-v2-icon-card img { object-fit: contain; display: block; }
.icon-img-box {
  width: 130px;
  height: 130px;
  margin: 0 auto 2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eef8ff 0%, #f5fcff 60%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  padding: 8px;
  flex-shrink: 0;
}
.icon-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.tab-v2-icon-card strong { font-size: 16px; word-break: keep-all; }
.tab-v2-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: center; padding: 34px; border-radius: 26px; background: linear-gradient(135deg, #eef8ff, #fff); border: 1px solid #dbe9f8; }
.tab-v2-copy h2 { margin: 18px 0 14px; letter-spacing: 0; }
.tab-v2-copy p { color: var(--ink-2); line-height: 1.8; font-size: 16px; word-break: keep-all; }
.tab-v2-checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 22px; }
.tab-v2-checks span { border-radius: 999px; padding: 10px 14px; background: #fff; border: 1px solid #dbe9f8; color: var(--brand-ink); font-weight: 750; font-size: 14px; }
.tab-v2-checks span::before { content: "✓"; display: inline-flex; width: 20px; height: 20px; margin-right: 8px; align-items: center; justify-content: center; border-radius: 50%; color: #fff; background: var(--brand); font-size: 12px; }
.tab-v2-art {
  min-height: 380px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef8ff 0%, #f5fcff 60%, #ffffff 100%);
  padding: 10px;
  box-sizing: border-box;
}
.tab-v2-art img { max-width: min(100%, 600px); max-height: 440px; object-fit: contain; display: block; }
.tab-v2-flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.tab-v2-step { position: relative; padding: 20px 16px 22px; text-align: center; }
.tab-v2-step img {
  object-fit: contain;
  margin: 10px auto;
  display: block;
}
.tab-v2-step-no { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 28px; padding: 0 10px; border-radius: 9px; background: var(--brand); color: #fff; font-size: 13px; font-weight: 900; }
.tab-v2-roles { display: grid; grid-template-columns: 1fr 200px 1fr; align-items: center; gap: 22px; }
.tab-v2-role { padding: 26px; }
.tab-v2-role h3 { color: var(--brand); letter-spacing: 0; margin-bottom: 14px; }
.tab-v2-role img { width: 130px; height: 130px; object-fit: contain; float: right; margin: 0 0 10px 16px; }
.tab-v2-role ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tab-v2-role li { background: #f7fbff; border: 1px solid #dbe9f8; border-radius: 12px; padding: 11px 12px; font-weight: 700; }
.tab-v2-handshake { display: grid; place-items: center; }
.tab-v2-handshake img { max-width: 186px; max-height: 186px; width: auto; height: auto; object-fit: contain; display: block; }
.tab-v2-cta { padding: 34px 0 22px; }
.tab-v2-cta-box { min-height: 150px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 22px; padding: 30px 46px; border-radius: 20px; background: linear-gradient(135deg, #0479dd, #005fcb); color: #fff; overflow: hidden; box-shadow: 0 20px 42px rgba(0, 112, 210, .22); }
.tab-v2-cta h2 { color: #fff; letter-spacing: 0; font-size: clamp(24px, 2.4vw, 34px); }
.tab-v2-cta p { color: rgba(255,255,255,.88); margin-top: 8px; font-size: 16px; }
.tab-v2-cta .btn { background: #fff; color: var(--brand); min-width: 210px; box-shadow: 0 12px 28px rgba(0,0,0,.14); }
.tab-v2-cta-art img { width: 170px; height: 110px; object-fit: contain; }
.tab-v2-promise { padding: 12px 0 44px; }
.tab-v2-promise h2 { text-align: center; color: var(--brand); font-size: 28px; letter-spacing: 0; margin-bottom: 18px; }
.tab-v2-promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #e4eef9; border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 14px 30px rgba(20, 80, 150, .06); }
.tab-v2-promise-item { display: flex; gap: 14px; align-items: center; padding: 22px 24px; border-right: 1px solid #e4eef9; }
.tab-v2-promise-item:last-child { border-right: 0; }
.tab-v2-promise-item img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  flex: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef8ff 0%, #f5fcff 60%, #ffffff 100%);
  padding: 6px;
  box-sizing: border-box;
}
.tab-v2-promise-item strong { display: block; font-size: 15px; }
.tab-v2-promise-item p { margin-top: 4px; color: var(--ink-2); font-size: 13px; line-height: 1.55; }
.tab-v2-faq-search { border: 1px solid #dbe9f8; border-radius: 20px; padding: 22px; box-shadow: 0 14px 32px rgba(20,80,150,.06); margin-bottom: 28px; }
.tab-v2-faq-search { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; }
.tab-v2-faq-search input { border: 1px solid #dbe9f8; border-radius: 999px; padding: 14px 18px; min-width: 0; font: inherit; }
.tab-v2-faq-search button { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid #dbe9f8; color: var(--brand); font-size: 24px; }
.tab-v2-tags { grid-column: 1 / -1; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; justify-content: center; }
.tab-v2-tags em { font-style: normal; border: 1px solid #dbe9f8; border-radius: 999px; padding: 7px 14px; color: var(--brand-ink); background: #f7fbff; font-size: 13px; }
.tab-v2-top-faq { display: grid; gap: 8px; margin-bottom: 42px; }
.tab-v2-faq-item { border: 1px solid #dbe9f8; border-radius: 14px; background: #fff; box-shadow: 0 10px 24px rgba(20,80,150,.05); }
.tab-v2-faq-item summary { cursor: pointer; padding: 16px 20px; font-weight: 800; list-style: none; }
.tab-v2-faq-item summary span { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 26px; border-radius: 9px; color: #fff; background: var(--brand); margin-right: 12px; }
.tab-v2-faq-item p { padding: 0 20px 16px 70px; color: var(--ink-2); line-height: 1.7; }
.tab-v2-faq-layout { display: grid; grid-template-columns: 210px 1fr; gap: 18px; align-items: start; }
.tab-v2-faq-tabs { border: 1px solid #dbe9f8; border-radius: 16px; padding: 8px; background: #fff; position: sticky; top: 96px; }
.tab-v2-faq-tabs .faq-tab { width: 100%; justify-content: flex-start; border-radius: 10px; border: 0; background: transparent; }
.tab-v2-faq-tabs .faq-tab.active { background: var(--brand); color: #fff; }
.tab-v2-contact { margin-top: 34px; border-radius: 22px; padding: 26px; background: linear-gradient(135deg, #eef8ff, #fff); display: grid; grid-template-columns: 1fr 230px 260px 180px; gap: 18px; align-items: center; }
.tab-v2-contact-card { padding: 16px; display: grid; grid-template-columns: 56px 1fr; gap: 10px; align-items: center; }
.tab-v2-contact-card img { width: 54px; height: 54px; object-fit: contain; grid-row: span 2; }
.tab-v2-contact-card span { color: var(--ink-2); font-size: 13px; }
.tab-v2-contact-card .contact-icon-circle { grid-row: span 2; }
.contact-icon-circle {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, #eef8ff 0%, #f5fcff 60%, #ffffff 100%);
  border: 1px solid #dbe9f8;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.tab-v2-contact-card.is-disabled { opacity: .55; }
.tab-v2-contact-card.is-disabled .contact-icon-circle { filter: grayscale(.4); }
.tab-v2-contact-art img { width: 170px; height: 120px; object-fit: contain; }
.is-fallback::after { content: attr(aria-label); display: grid; place-items: center; min-height: 96px; border-radius: 16px; background: linear-gradient(135deg,#edf8ff,#fff); color: var(--brand); font-weight: 800; border: 1px dashed #b9dbf7; }
/* 운영흐름 정산 카드 */
.settle-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.settle-card { background: #fff; border: 1px solid #dbe9f8; border-radius: 18px; padding: 30px 24px; text-align: center; box-shadow: 0 10px 24px rgba(20,80,150,.06); }
.settle-ic { font-size: 32px; display: block; margin-bottom: 12px; }
.settle-card b { display: block; font-size: 16px; margin-bottom: 8px; }
.settle-card p { font-size: 14px; color: var(--ink-2); }
@media (max-width: 768px) { .settle-cards { grid-template-columns: 1fr; } }

/* 이벤트 탭 - 타임라인 */
.ev2-timeline { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }
.ev2-tl-item { display: grid; grid-template-columns: 28px 1fr; gap: 18px; padding-bottom: 32px; position: relative; }
.ev2-tl-item::before { content: ''; position: absolute; left: 13px; top: 28px; bottom: 0; width: 2px; background: #dbe9f8; }
.ev2-tl-item:last-child::before { display: none; }
.ev2-tl-dot { width: 28px; height: 28px; border-radius: 50%; background: #dbe9f8; border: 3px solid #fff; box-shadow: 0 0 0 2px #dbe9f8; flex: none; margin-top: 2px; }
.ev2-tl-done .ev2-tl-dot { background: #b0d4ea; }
.ev2-tl-active .ev2-tl-dot { background: var(--brand); box-shadow: 0 0 0 4px rgba(0,95,210,.2); }
.ev2-tl-body { padding-top: 2px; }
.ev2-tl-date { font-size: 12px; font-weight: 700; color: var(--brand); letter-spacing: .04em; }
.ev2-tl-body strong { display: block; font-size: 16px; margin: 4px 0 4px; }
.ev2-tl-body p { color: var(--ink-2); font-size: 14px; }
/* 이벤트 탭 - 유의사항 */
.ev2-notices { display: grid; gap: 12px; }
.ev2-notice { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid #dbe9f8; border-radius: 14px; padding: 16px 20px; }
.ev2-notice-ic { font-size: 18px; flex: none; margin-top: 1px; }
.ev2-notice p { font-size: 14px; color: var(--ink-2); line-height: 1.65; }

/* ── 초기 파트너 4가지 혜택 — 가로형 배너 카드 ── */
.benefit-banner-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.benefit-banner-card {
  display: grid;
  grid-template-columns: minmax(200px, 38%) 1fr;
  align-items: stretch;
  min-height: 180px;
  border: 1px solid #D7ECFA;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbff 100%);
  box-shadow: 0 14px 35px rgba(19, 87, 147, 0.08);
  overflow: hidden;
  box-sizing: border-box;
}

.benefit-image-area {
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #dff0fb 0%, #eef8ff 60%, #f5fcff 100%);
}

.benefit-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 170px;
}

.benefit-text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 2.5vw, 38px) clamp(24px, 3.5vw, 48px) clamp(20px, 2.5vw, 38px) clamp(20px, 2.5vw, 36px);
  text-align: left;
  min-width: 0;
}

.benefit-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.benefit-icon-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  line-height: 1;
}

.benefit-icon-badge--blue {
  background: linear-gradient(135deg, #1565C0 0%, #42A5F5 100%);
}

.benefit-icon-badge--gold {
  background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
}

.benefit-icon-badge--amber {
  background: linear-gradient(135deg, #E65100 0%, #FFA726 100%);
}

.benefit-text-area h3 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  color: #142033;
  line-height: 1.25;
  margin: 0;
  word-break: keep-all;
}

.benefit-text-area p {
  font-size: clamp(13.5px, 1.2vw, 16px);
  line-height: 1.68;
  color: #4f5f73;
  margin: 0;
  word-break: keep-all;
}

@media (max-width: 1024px) {
  .benefit-banner-card {
    grid-template-columns: 34% 66%;
  }
}

@media (max-width: 768px) {
  .benefit-banner-list {
    gap: 18px;
  }
  .benefit-banner-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .benefit-image-area {
    min-height: 160px;
  }
  .benefit-image-area img {
    min-height: 160px;
  }
  .benefit-text-area {
    padding: 18px 22px 24px;
    text-align: left;
  }
  .benefit-title-row {
    gap: 10px;
    margin-bottom: 8px;
  }
  .benefit-icon-badge {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .benefit-text-area h3 {
    font-size: 20px;
  }
  .benefit-text-area p {
    font-size: 13.5px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .benefit-banner-card {
    border-radius: 18px;
  }
  .benefit-image-area {
    min-height: 140px;
  }
  .benefit-image-area img {
    min-height: 140px;
  }
  .benefit-text-area {
    padding: 14px 18px 20px;
  }
  .benefit-title-row {
    gap: 8px;
    margin-bottom: 8px;
  }
  .benefit-icon-badge {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .benefit-text-area h3 {
    font-size: 18px;
  }
  .benefit-text-area p {
    font-size: 13px;
  }
}

@media (max-width: 1280px) { .tab-v2-grid--cards { grid-template-columns: repeat(3, 1fr); } .tab-v2-grid--icons { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 1024px) { .tab-v2-hero-inner, .tab-v2-split { grid-template-columns: 1fr; } .tab-v2-hero-inner { min-height: auto; } .tab-v2-hero-copy { order: 0; } .tab-v2-hero-art { order: 1; min-height: 280px; } .tab-v2-grid--cards, .tab-v2-flow { grid-template-columns: repeat(2, 1fr); } .tab-v2-grid--icons, .tab-v2-grid--faq-cats { grid-template-columns: repeat(3, 1fr); } .tab-v2-promise-grid { grid-template-columns: repeat(2, 1fr); } .tab-v2-promise-item:nth-child(2) { border-right: 0; } .tab-v2-cta-box { grid-template-columns: 1fr auto; } .tab-v2-cta-art { display: none; } .tab-v2-contact { grid-template-columns: 1fr 1fr; } .tab-v2-contact-art { display: none; } }
@media (max-width: 768px) { .tab-v2-hero-inner { padding-top: 38px; padding-bottom: 38px; gap: 22px; } .tab-v2-section { padding: 56px 0; } .tab-v2-grid--cards, .tab-v2-grid--icons, .tab-v2-flow, .tab-v2-grid--faq-cats, .tab-v2-promise-grid, .tab-v2-contact { grid-template-columns: 1fr; } .tab-v2-split { padding: 22px; border-radius: 18px; } .tab-v2-checks, .tab-v2-faq-layout { grid-template-columns: 1fr; } .tab-v2-faq-tabs { position: static; display: flex; overflow-x: auto; gap: 8px; } .tab-v2-faq-tabs .faq-tab { width: auto; white-space: nowrap; } .tab-v2-roles { grid-template-columns: 1fr; } .tab-v2-handshake { display: none; } .tab-v2-cta-box { grid-template-columns: 1fr; padding: 24px; text-align: left; } .tab-v2-cta .btn { width: 100%; min-width: 0; } .tab-v2-faq-search { grid-template-columns: 1fr; } .tab-v2-faq-search button { width: 100%; border-radius: 12px; } .tab-v2-faq-item p { padding-left: 20px; } }

/* =========================================================
   파트너 앱 사용 흐름 카드 슬라이더
   ========================================================= */
.app-flow-section {
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  box-sizing: border-box;
  overflow: hidden;
}

.app-flow-slider {
  position: relative;
  max-width: 1120px;
  margin: 44px auto 0;
  padding: 0 24px;
  box-sizing: border-box;
}

.app-flow-viewport {
  overflow: hidden;
  border-radius: 28px;
}

.app-flow-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.app-flow-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 0.52fr);
  align-items: center;
  gap: 48px;
  min-height: 640px;
  padding: 46px 64px;
  border: 1px solid #d7ecfa;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f2fbff 100%);
  box-shadow: 0 18px 45px rgba(20, 95, 150, 0.10);
  box-sizing: border-box;
}

.app-flow-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

.app-flow-phone img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 580px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(20, 70, 120, 0.12));
}

.app-flow-content {
  text-align: left;
}

.app-flow-step {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: #1597d3;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.app-flow-content h3 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 900;
  color: #142033;
}

.app-flow-content p {
  margin-top: 20px;
  color: #40566f;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7;
  word-break: keep-all;
}

.app-flow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 1px solid #d7ecfa;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1597d3;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20, 95, 150, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, box-shadow 0.2s;
}

.app-flow-arrow:hover {
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(20, 95, 150, 0.18);
}

.app-flow-prev { left: 0; }
.app-flow-next { right: 0; }

.app-flow-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.app-flow-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #c8e8f8;
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}

.app-flow-dots button.active {
  width: 28px;
  background: #1597d3;
}

.app-flow-notice {
  max-width: 1120px;
  margin: 28px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid #d7ecfa;
  border-radius: 18px;
  background: rgba(238, 248, 255, 0.85);
  color: #40566f;
  box-sizing: border-box;
}

.notice-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #1597d3;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  font-weight: 800;
  font-size: 14px;
}

.app-flow-notice strong {
  display: block;
  color: #142033;
  font-size: 14px;
  margin-bottom: 4px;
}

.app-flow-notice p {
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .app-flow-slide {
    grid-template-columns: 0.46fr 0.54fr;
    gap: 34px;
    min-height: 580px;
    padding: 38px 44px;
  }
  .app-flow-phone {
    min-height: 500px;
  }
  .app-flow-phone img {
    max-height: 520px;
  }
}

@media (max-width: 768px) {
  .app-flow-section {
    padding: 64px 0;
  }
  .app-flow-slider {
    margin-top: 32px;
    padding: 0 16px;
  }
  .app-flow-slide {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: 28px 20px 30px;
    text-align: center;
    border-radius: 24px;
  }
  .app-flow-phone {
    min-height: 460px;
    order: 1;
  }
  .app-flow-phone img {
    max-height: 470px;
    max-width: 100%;
  }
  .app-flow-content {
    order: 2;
    text-align: center;
  }
  .app-flow-content h3 {
    font-size: 30px;
  }
  .app-flow-content p {
    font-size: 15px;
    line-height: 1.65;
  }
  .app-flow-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .app-flow-prev { left: -4px; }
  .app-flow-next { right: -4px; }
  .app-flow-notice {
    margin: 22px 16px 0;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .app-flow-slide {
    padding: 24px 16px 28px;
  }
  .app-flow-phone {
    min-height: 420px;
  }
  .app-flow-phone img {
    max-height: 430px;
  }
  .app-flow-content h3 {
    font-size: 26px;
  }
  .app-flow-content p {
    font-size: 14px;
  }
  .app-flow-arrow {
    top: 44%;
  }
  .app-flow-notice {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 390px) {
  .app-flow-phone {
    min-height: 390px;
  }
  .app-flow-phone img {
    max-height: 400px;
  }
}

/* =========================================================
   정책 페이지 뷰 — 푸터 링크 클릭 시 표시 (이용약관 등)
   ========================================================= */
#policyView { display: none; min-height: 60vh; background: var(--white); }
#policyView.active { display: block; }

.policy-wrap { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* 브레드크럼 */
.policy-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 28px 0 0; font-size: 13px; color: var(--ink-3);
}
.policy-back-link {
  background: none; border: none; cursor: pointer;
  color: var(--brand); font-size: 13px; font-family: inherit;
  padding: 0; text-decoration: underline; text-underline-offset: 2px;
}
.policy-back-link:hover { color: var(--brand-dk); }
.policy-bc-sep { color: var(--ink-3); }
.policy-bc-current { color: var(--ink); font-weight: 600; }

/* 정책 페이지 공통 */
.policy-page { display: none; padding: 36px 0 80px; }
.policy-page.active { display: block; }

.policy-header {
  margin-bottom: 36px; padding-bottom: 24px;
  border-bottom: 2px solid var(--line);
}
.policy-header h1 {
  font-size: 28px; font-weight: 800;
  color: var(--navy-800); margin-bottom: 8px; line-height: 1.3;
}
.policy-subtitle { font-size: 15px; color: var(--ink-2); }

/* 뒤로가기 버튼 */
.policy-back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border: 1.5px solid var(--brand);
  border-radius: var(--radius-sm); background: var(--white);
  color: var(--brand); font-size: 14px; font-weight: 600;
  cursor: pointer; margin-bottom: 28px;
  transition: background .18s, color .18s; font-family: inherit;
}
.policy-back-btn:hover { background: var(--brand); color: #fff; }
.policy-back-btn svg { flex: none; }

/* 섹션 박스 */
.policy-section-box {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 32px;
  margin-bottom: 16px; box-shadow: var(--shadow-s);
}
.policy-section-box h2 {
  font-size: 15px; font-weight: 700; color: var(--navy-800);
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.psec-no {
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 4px; letter-spacing: .04em;
}
.policy-section-box p,
.policy-section-box li { font-size: 14px; color: var(--ink-2); line-height: 1.85; }
.policy-section-box ul, .policy-section-box ol { padding-left: 20px; margin-top: 8px; }
.policy-section-box ul li { margin-bottom: 5px; }
.policy-section-box p + ul { margin-top: 10px; }

/* 강조 박스 */
.policy-info-notice {
  background: var(--blue-50); border: 1px solid var(--blue-200);
  border-radius: var(--radius-sm); padding: 16px 20px;
  font-size: 14px; color: var(--brand-ink); margin-top: 16px; line-height: 1.8;
}

/* 사업자 정보 카드 */
.biz-info-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  margin-bottom: 20px; box-shadow: var(--shadow-s);
}
.biz-info-table { width: 100%; border-collapse: collapse; }
.biz-info-table tr { border-bottom: 1px solid var(--line-2); }
.biz-info-table tr:last-child { border-bottom: none; }
.biz-info-table th {
  text-align: left; font-size: 13px; font-weight: 600;
  color: var(--ink-3); padding: 13px 16px 13px 0;
  width: 160px; vertical-align: top; white-space: nowrap;
}
.biz-info-table td {
  font-size: 14px; color: var(--ink); font-weight: 500;
  padding: 13px 0; vertical-align: top; line-height: 1.65;
}

/* FTC 확인 버튼 */
.ftc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; background: var(--brand); color: #fff;
  border: none; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: background .18s;
  font-family: inherit; margin-top: 20px;
}
.ftc-btn:hover { background: var(--brand-dk); }
.ftc-btn svg { flex: none; }

/* 정책 페이지 하단 복귀 영역 */
.policy-footer-nav {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: center;
}
.policy-footer-nav .policy-back-btn { margin-bottom: 0; }

/* 반응형 */
@media (max-width: 640px) {
  .policy-section-box { padding: 18px 16px; }
  .policy-header h1 { font-size: 22px; }
  .biz-info-card { padding: 20px 16px; }
  .biz-info-table th { width: 100px; font-size: 12px; white-space: normal; }
  .biz-info-table td { font-size: 13px; }
  .policy-back-btn { font-size: 13px; padding: 8px 14px; }
}

/* ===================================================
   신규 섹션 — 카드 슬라이더 하단 영역
   =================================================== */

/* ----- 간편 신청 CTA 카드 ----- */
.quick-cta-sec { padding-top: 40px; padding-bottom: 40px; }
.quick-cta-card {
  display: flex; flex-direction: column; gap: 0;
  background: linear-gradient(145deg, #f8fcff 0%, #edf5fc 100%);
  border: 1px solid #C4E4F6;
  border-radius: 24px;
  padding: 32px 40px 28px;
  box-shadow: 0 12px 40px rgba(19,87,147,.09), 0 1px 4px rgba(46,160,210,.06);
}
.quick-cta-top {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.quick-cta-left {
  display: flex; align-items: center; gap: 18px; flex: 1; min-width: 0;
}
.quick-cta-icon {
  flex: none; width: 60px; height: 60px;
  background: linear-gradient(135deg, #dff0fa 0%, #c8e4f5 100%);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  border: 1px solid #b8ddf2;
  box-shadow: 0 2px 8px rgba(46,160,210,.14);
}
.quick-cta-body { flex: 1; min-width: 0; }
.quick-cta-title {
  font-size: clamp(15px, 1.55vw, 20px);
  font-weight: 800; color: var(--ink); line-height: 1.4;
}
.quick-cta-sub {
  margin-top: 6px;
  font-size: clamp(13px, 1.1vw, 14.5px);
  color: var(--ink-2); line-height: 1.65;
}

/* ----- 대형 CTA 버튼 ----- */
.quick-cta-btn {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-width: 300px;
  height: 68px;
  padding: 0 36px;
  background: linear-gradient(135deg, #1d87b8 0%, #0d5d9e 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  letter-spacing: -.01em;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(13,93,158,.30), 0 2px 6px rgba(13,93,158,.18);
  transition: transform .22s ease, box-shadow .22s ease;
  font-family: inherit;
}
.quick-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(13,93,158,.38), 0 4px 10px rgba(13,93,158,.22);
}
.quick-cta-btn:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(13,93,158,.20); }

/* ----- 구분선 ----- */
.quick-cta-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #C0E0F4 15%, #C0E0F4 85%, transparent 100%);
  margin: 26px 0 24px;
}

/* ----- 빠른 이동 버튼 ----- */
.quick-section-buttons {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}
.quick-section-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 9px;
  border: 1.5px solid #C8E6F5;
  background: #ffffff;
  color: #126da8;
  font-weight: 700;
  border-radius: 14px;
  padding: 18px 10px 16px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  text-align: center;
  box-shadow: 0 2px 8px rgba(46,160,210,.07);
  font-family: inherit;
}
.quick-section-btn .qsb-icon {
  color: #1b8fc7;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s ease;
}
.quick-section-btn .qsb-label {
  display: block;
  font-size: 13px;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.2;
}
.quick-section-btn:hover,
.quick-section-btn:focus-visible {
  background: linear-gradient(135deg, #1d87b8 0%, #0d5d9e 100%);
  color: #ffffff;
  border-color: #0d5d9e;
  box-shadow: 0 6px 18px rgba(13,93,158,.24);
  transform: translateY(-2px);
  outline: none;
}
.quick-section-btn:hover .qsb-icon,
.quick-section-btn:focus-visible .qsb-icon { color: #ffffff; }
.quick-section-btn:active { transform: translateY(0); box-shadow: none; }

/* ----- 왜 만능맨인가? (신규) ----- */
.why-new-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.why-new-card {
  background: #fff; border: 1px solid #D7ECFA; border-radius: 16px;
  padding: 28px 24px; box-shadow: var(--shadow-s);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-new-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.why-new-card-icon { font-size: 28px; margin-bottom: 14px; }
.why-new-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.why-new-card p { font-size: 14px; color: var(--ink-2); line-height: 1.7; }

/* ----- 초기 파트너 섹션 (신규) ----- */
.together-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px;
}
.together-card {
  background: #fff; border: 1px solid #D7ECFA; border-radius: 16px;
  padding: 28px 24px; box-shadow: var(--shadow-s);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.together-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.together-card-icon { font-size: 26px; margin-bottom: 12px; }
.together-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.together-card p { font-size: 14px; color: var(--ink-2); line-height: 1.7; flex: 1; }
.together-card-tag {
  display: inline-block; align-self: flex-start;
  margin-top: 14px; padding: 3px 12px;
  font-size: 12px; font-weight: 700; color: var(--brand);
  background: var(--blue-50); border: 1px solid var(--blue-200);
  border-radius: 999px;
}
.together-note {
  background: var(--blue-50); border: 1px solid var(--blue-100);
  border-radius: 12px; padding: 14px 20px;
  font-size: 13.5px; color: var(--ink-2); text-align: center; line-height: 1.6;
}

/* ----- 이벤트 CTA 배너 ----- */
.event-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 54fr 46fr;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #c8e6f8;
  background:
    radial-gradient(ellipse at 78% 25%, rgba(95, 185, 245, 0.32) 0%, rgba(95, 185, 245, 0) 55%),
    radial-gradient(ellipse at 18% 85%, rgba(170, 225, 255, 0.18) 0%, rgba(170, 225, 255, 0) 40%),
    linear-gradient(135deg, #ffffff 0%, #eef8ff 45%, #d6f0ff 100%);
  box-shadow: 0 12px 40px rgba(20, 95, 150, 0.10), 0 2px 8px rgba(20, 95, 150, 0.06);
}
.event-cta-content {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 5vw, 64px) clamp(32px, 4.5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-cta-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #9bd8f6;
  background: rgba(255, 255, 255, 0.88);
  color: #158bd0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  margin-bottom: 18px;
  white-space: nowrap;
}
.event-cta-content h2 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.28;
  font-weight: 900;
  color: #0f1e2f;
  letter-spacing: -0.04em;
  word-break: keep-all;
}
.event-cta-content h2 strong { color: #1597d3; }
.event-cta-content p {
  margin: 16px 0 0;
  color: #40566f;
  font-size: clamp(13.5px, 1.2vw, 16px);
  line-height: 1.75;
  word-break: keep-all;
}
.event-cta-button {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #1597d3 0%, #0876c9 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(8, 118, 201, 0.28);
  transition: transform .18s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.event-cta-button:hover,
.event-cta-button:focus { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(8, 118, 201, 0.38); }
.event-cta-content small {
  display: block;
  margin-top: 12px;
  color: #7b8ca0;
  font-size: 11.5px;
  line-height: 1.5;
}
.event-cta-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.event-cta-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 82%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 82%, transparent 100%);
}

/* ----- 한눈에 보는 신청 흐름 ----- */
.flow-mini-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; gap: 12px;
}
.flow-mini-step {
  text-align: center; padding: 28px 20px;
  background: #fff; border: 1px solid #D7ECFA; border-radius: 16px;
  box-shadow: var(--shadow-s);
}
.flow-mini-step-icon { font-size: 32px; display: block; margin: 0 auto 14px; }
.flow-mini-step h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.flow-mini-step p { font-size: 13px; color: var(--ink-2); line-height: 1.6; }
.flow-mini-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-300); flex: none; padding: 0 4px;
}

/* ----- 미니 문의 카드 ----- */
.contact-mini-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.contact-mini-card {
  background: #fff; border: 1px solid #D7ECFA; border-radius: 18px;
  padding: 28px 24px; box-shadow: var(--shadow-s);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.contact-mini-icon { font-size: 28px; margin-bottom: 12px; }
.contact-mini-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.contact-mini-card p { font-size: 14px; color: var(--ink-2); line-height: 1.75; }
.contact-mini-em {
  font-size: 22px; font-weight: 800; color: var(--brand);
  letter-spacing: -.02em; margin-top: 10px;
}
.contact-mini-em a { color: inherit; }
.contact-mini-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; padding: 9px 18px;
  background: var(--blue-50); border: 1px solid var(--blue-200);
  border-radius: 999px; font-size: 14px; font-weight: 700;
  color: var(--brand); cursor: pointer; font-family: inherit;
  transition: background .15s, transform .15s;
}
.contact-mini-btn:hover { background: var(--blue-100); transform: translateY(-1px); }
.contact-mini-btn.disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }

/* ----- 반응형 (신규 섹션) ----- */
@media (max-width: 1024px) {
  .event-cta-content { padding: clamp(28px, 4.5vw, 52px) clamp(24px, 4vw, 48px); }
}
@media (max-width: 768px) {
  .quick-cta-card { padding: 26px 22px 22px; }
  .quick-cta-top { flex-direction: column; align-items: stretch; gap: 18px; }
  .quick-cta-btn { min-width: 0; width: 100%; height: 58px; font-size: 16px; }
  .why-new-grid { grid-template-columns: repeat(2, 1fr); }
  .together-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-mini-steps { grid-template-columns: 1fr; gap: 14px; }
  .flow-mini-arrow { display: none; }
  .contact-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .event-cta-card { border-radius: 20px; }
  .event-cta-content { padding: 28px 20px 28px 28px; }
  .event-cta-content h2 { font-size: clamp(18px, 3.4vw, 24px); }
  .event-cta-content p { font-size: 13px; }
}
@media (max-width: 480px) {
  .why-new-grid { grid-template-columns: 1fr; }
  .together-grid { grid-template-columns: 1fr; }
  .contact-mini-grid { grid-template-columns: 1fr; }
  .event-cta-card { grid-template-columns: 56fr 44fr; border-radius: 18px; }
  .event-cta-content { padding: 20px 10px 20px 18px; }
  .event-cta-badge { font-size: 11.5px; padding: 6px 10px; margin-bottom: 12px; }
  .event-cta-content h2 { font-size: 17px; line-height: 1.32; }
  .event-cta-content p { font-size: 11.5px; line-height: 1.55; margin-top: 8px; }
  .event-cta-button { margin-top: 14px; padding: 10px 16px; font-size: 13px; }
  .event-cta-content small { font-size: 10.5px; margin-top: 8px; }
}
@media (max-width: 390px) {
  .event-cta-card { grid-template-columns: 58fr 42fr; }
  .event-cta-content { padding: 16px 8px 16px 14px; }
  .event-cta-content h2 { font-size: 15px; }
  .event-cta-button { margin-top: 10px; padding: 9px 13px; font-size: 12px; }
}
