/* ── common.css 전역 충돌 리셋 ── */
/* common.css의 * { margin: 0 auto } 가 flex/grid 레이아웃을 망가뜨리므로 오버라이드 */
.startup-page *,
.startup-page *::before,
.startup-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── 메인 헤더 복원 (전역 리셋으로 날아간 값들) ── */
.startup-page .nav { padding: 0 50px; }
.startup-page .header .category-menu li a { margin-left: 21px; }
.startup-page .app-download .info { margin-right: 12px; }
.startup-page .xi-apple { padding: 5px 6px 6px 6px; margin-right: 6px; }
.startup-page .xi-google-play { padding: 7px 4px 6px 7px; }

:root {
  --primary: #5B7BF3;
  --primary-hover: #4569F2;
  --light-blue: #E6EBFD;
  --lighter-blue: #D4E6FE;
  --section-blue: #819BFF;
  --dark: #121212;
  --dark2: #1B1B1B;
  --gray: #4E4E4E;
  --gray2: #6D6D6D;
  --gray3: #A2A2A2;
  --white: #FFFFFF;
  --inner-width: 1200px;
  --section-padding-v: 120px;
  --section-padding-v-m: 60px;
}

/* ── 공통 레이아웃 ── */
/* overflow-x 있으면 sticky가 viewport 기준으로 안 붙음 → body에서 처리 */
.sp-main { padding-top: 56px; }
.startup-page { 
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
}
.sp-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 24px;
}
.sp-section { position: relative; }
.img-placeholder { position: relative; width: 100%; overflow: hidden; }

/* ── 공통 타이포 ── */
.sp-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
.sp-label-blue {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
.sp-label-white {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}
.sp-heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin: 0 0 20px;
}
.sp-heading-white {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0 0 16px;
}
.sp-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* ── 버튼 ── */
.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  height: 56px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.sp-btn-dark { background: var(--dark2); color: var(--white); }
.sp-btn-dark:hover { background: #333; }
.sp-btn-white { background: var(--white); color: var(--dark); }
.sp-btn-white:hover { background: #f0f0f0; }
.sp-btn-primary { background: var(--primary); color: var(--white); }
.sp-btn-primary:hover { background: var(--primary-hover); }
.sp-btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.sp-btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ═══════════════════════════════
   HEADER
═══════════════════════════════ */
.sp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  height: 56px;
}
.sp-header-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  height: 56px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0;
}
.sp-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.sp-logo img { height: 23px; width: auto; }
.sp-gnb { flex: 1; display: flex; justify-content: center; }
.sp-gnb ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sp-gnb ul li a {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.sp-gnb ul li a:hover { color: var(--primary); }
.sp-gnb ul li.active a { font-weight: 700; }
.nav-highlight {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.sp-header-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.sp-app-download {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-app-download span {
  font-size: 12px;
  color: var(--dark);
  font-weight: 500;
  white-space: nowrap;
}
.sp-app-icons { display: flex; gap: 6px; }
.app-icon-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.app-icon-circle:hover { background: var(--primary); }
.sp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.sp-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.sp-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sp-hamburger.open span:nth-child(2) { opacity: 0; }
.sp-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.sp-mobile-menu {
  display: none;
  position: fixed;
  top: 56px; right: 0;
  width: 280px; height: calc(100dvh - 56px);
  background: var(--white);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.sp-mobile-menu.open { transform: translateX(0); }
.sp-mobile-menu-inner { padding: 24px 20px; }
.sp-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.sp-mobile-menu ul li { border-bottom: 1px solid #f5f5f5; }
.sp-mobile-menu ul li a {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
}
.sp-mobile-menu ul li.active a { color: var(--primary); font-weight: 700; }
.sp-mobile-app { margin-top: 32px; }
.sp-mobile-app p { font-size: 12px; color: var(--gray3); margin-bottom: 12px; }
.sp-mobile-app-btns { display: flex; flex-direction: column; gap: 10px; }
.sp-mobile-app-btns a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
}
.sp-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.sp-mobile-overlay.open { display: block; }

/* ═══════════════════════════════
   SUB NAV (히어로 아래 배치, 스크롤 시 헤더 바로 아래에 sticky)
═══════════════════════════════ */
.sp-subnav {
  position: relative;
  z-index: 990;
  background: var(--dark);
  height: 56px;
  display: flex;
  align-items: center;
}
.sp-subnav.is-fixed {
  position: fixed;
  top: 55px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 990;
}
.sp-subnav-spacer {
  display: none;
  height: 56px;
  flex-shrink: 0;
}
.sp-subnav-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  width: 100%;
}
.sp-subnav-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

/* ═══════════════════════════════
   HERO (이미지 배너: 배경 + 배지 + 타이틀 + 버튼)
═══════════════════════════════ */
.sp-hero:has(.sp-hero-bg) {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sp-hero .sp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sp-hero .sp-hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 640px;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--lighter-blue) 100%);
}
.sp-hero .sp-hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("../../assets/offline_recruit/offline_main_background.png") center / cover no-repeat;
}
/* Figma 1933-436: 1920×640, 콘텐츠 left 360px / top 140px, gap 48px */
.sp-hero .sp-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 140px 24px 140px max(24px, calc((100% - 1200px) / 2 + 24px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  text-align: left;
}

.sp-hero .sp-hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.sp-hero .sp-hero-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sp-hero .hero-badge {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.sp-hero .hero-badge-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.sp-hero .hero-badge-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.sp-hero .hero-badge-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.6);
}
.sp-hero .sp-hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -0.56px;
  color: var(--white);
  margin: 0;
  max-width: 620px;
}
.sp-hero .sp-hero-btns {
  display: flex;
  gap: 16px;
}
.sp-hero .sp-hero-cta {
  height: 64px;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
}
/* 페이지 진입 시 1회 애니메이션 */
.sp-hero .sp-hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.38) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  animation: heroCTAShine 0.9s ease 0.5s 1 both;
}
@keyframes heroCTAShine {
  0%   { left: -80%; }
  100% { left: 130%; }
}
.sp-hero .sp-hero-cta-arrow {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.sp-hero .sp-hero-cta:hover { background: #212121; }
.sp-hero .sp-hero-cta:hover .sp-hero-cta-arrow {
  transform: translateX(2px);
}

/* ═══════════════════════════════
   SECTION 02: 브랜드 소개 (Figma PC 1849-2741 / Mobile 1849-4043)
═══════════════════════════════ */
.sp-section-brand-intro {
  background: var(--white);
  padding: var(--section-padding-v) 0 var(--section-padding-v);
}
/* PC: 2열 레이아웃 — 왼쪽 제목(400px), 오른쪽 설명(600px), 설명은 40px 아래로 */
.brand-intro-top {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}
.brand-intro-text { display: flex; flex-direction: column; gap: 12px; }
.brand-intro-label {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--primary);
  margin: 0;
}
.brand-intro-heading {
  font-family: 'Pretendard', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #121212;
  margin: 0;
}
.brand-intro-desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #4E4E4E;
  margin: 40px 0 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.brand-intro-main-img {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.brand-intro-main-img picture { display: block; }
.brand-intro-main-img picture img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
}
.brand-intro-main-ph { border-radius: 20px; }

.brand-features-wrap {
  background: var(--white);
}
.brand-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 386px));
  gap: 21px;
  justify-content: center;
}
.brand-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 386px;
  min-width: 0;
  gap: 16px;
}
.feature-card-body { text-align: center; }
.feature-card-img {
  width: 100%;
  max-width: 386px;
  height: 460px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}
.feature-card-img .img-placeholder { width: 100%; height: 100%; }
.feature-card-img picture,
.feature-card-img picture img,
.feature-card-img > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card-body { display: flex; flex-direction: column; gap: 12px; padding: 0; }
.feature-card-head {
  display: flex;
  gap: 12px;
}
.feature-card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.feature-card-category {
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  color: #121212;
  margin: 0;
}
.feature-card-title {
  font-family: 'Pretendard', sans-serif;
  max-width: 350px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: #6D6D6D;
  word-break: keep-all;
}

/* ═══════════════════════════════
   SECTION 03: 입점 브랜드 (MARQUEE)
═══════════════════════════════ */
.sp-section-brands {
  background: var(--lighter-blue);
  padding: 80px 0;
  overflow: hidden;
}
.sp-section-brands .sp-inner { text-align: center; }
.brands-section-header { margin-bottom: 40px; }
.brands-marquee-wrap {
  overflow: hidden;
  cursor: pointer;
}
.brands-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: brandMarquee 30s linear infinite;
}
.brands-marquee-wrap:hover .brands-marquee-track {
  animation-play-state: paused;
}
@keyframes brandMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 브랜드 카드 */
.brand-card {
  position: relative;
  width: 268px;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  background: #D9D9D9;
  flex-shrink: 0;
  cursor: pointer;
}
.brand-card-img {
  position: absolute;
  inset: 0;
  background: #C8D4F5;
}
.brand-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-card-logo-area img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand-card-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.brand-card-plus-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
}
.brand-card-name-visible {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.brand-card-name-visible img {
  width: auto;
  object-fit: contain;
  display: block;
}
.brand-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(18,18,18,0.92);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.brand-card:hover .brand-card-hover { opacity: 1; }
.brand-card-logo-area {
  width: 80px; 
  height: 32px;
  border-radius: 4px;
  margin-bottom: 32px;
}
.brand-card-hover-name {
  font-size: 20px;
  font-weight: 700;
  color:#fff;
  margin: 0 0 8px;
}
.brand-card-hover-desc {
  font-size: 16px;
  color:#fff;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  line-clamp: 4;
  overflow: hidden;
  word-break: keep-all;
}

/* ═══════════════════════════════
   SECTION 04: 스토어 소개
═══════════════════════════════ */
.sp-section-store-intro {
  background: var(--white);
  padding: var(--section-padding-v) 0;
}
.store-intro-header { margin-bottom: 40px; }
.store-intro-header .sp-heading { font-size: 40px; }
.store-intro-sub-desc {
  font-size: 15px;
  color: var(--gray2);
  line-height: 1.7;
  margin-top: 12px;
}
.sp-swiper-store {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.sp-swiper-store .swiper-slide { border-radius: 12px; overflow: hidden; }
.sp-swiper-store .swiper-pagination-bullet { background: var(--dark); }
.sp-swiper-store .swiper-pagination-bullet-active { background: var(--primary); }
.sp-swiper-store .swiper-button-prev,
.sp-swiper-store .swiper-button-next {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.sp-swiper-store .swiper-button-prev::after,
.sp-swiper-store .swiper-button-next::after { font-size: 14px; color: var(--dark); }
.store-intro-note {
  font-size: 14px;
  color: var(--gray3);
  text-align: center;
  margin: 0;
}

/* ═══════════════════════════════
   SECTION 05: 윙크 렌즈 스토어 (Figma PC 1885-10417 / Mobile 1849-4153)
═══════════════════════════════ */
.sp-section-store-gallery {
  background: var(--white);
  padding: var(--section-padding-v) 0;
  border-top: 1px solid #f0f0f0;
}
.sp-section-store-gallery .sp-inner {
  max-width: none;
  margin: 0;
  padding: 0 40px;
}
.store-gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 80px;
  text-align: center;
}
.store-gallery-heading {
  font-family: 'Pretendard', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #121212;
  margin: 0;
}

/* 1번·2번 나열 블록 */
.store-type-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 80px;
  text-align: center;
}
.store-type-block:last-child { margin-bottom: 0; }
.store-type-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.store-type-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--primary);
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.store-type-name {
  font-family: 'Pretendard', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #121212;
}
.store-type-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 28px;
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #121212;
}
.store-type-desc-sep {
  color: #A2A2A2;
  font-weight: 400;
  flex-shrink: 0;
}

/* 모자이크 그리드 PC: rounded 20px, gap 12px */
/* Figma 1885-10374: 5col(1fr 1fr 2fr 1fr 1fr) × 2row(300px)
   | tl1 | tl2 | center(tall) | tr(span2)   |
   | bl(span2)  | center(tall) | br1 | br2  | */
.store-gallery-grid {
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 12px;
}
.store-gallery-grid.hidden { display: none; }
.sg-item {
  border-radius: 20px;
  overflow: hidden;
}
.sg-item .img-placeholder { width: 100%; height: 100%; }
.sg-item > picture,
.sg-item > img,
.sg-item > picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Vue component 구조와 동일한 명시적 셀 클래스 */
.sg-tl1    { grid-column: 1;     grid-row: 1; }
.sg-tl2    { grid-column: 2;     grid-row: 1; }
.sg-center { grid-column: 3;     grid-row: 1 / 3; }
.sg-tr     { grid-column: 4 / 6; grid-row: 1; }
.sg-bl     { grid-column: 1 / 3; grid-row: 2; }
.sg-br1    { grid-column: 4;     grid-row: 2; }
.sg-br2    { grid-column: 5;     grid-row: 2; }

/* ═══════════════════════════════
   SECTION 06: 가맹점 개설 조건 (Figma PC 1849-3017 / Mobile 1849-4288)
═══════════════════════════════ */
.sp-section-conditions {
  background: #819BFF;
  padding: 120px 0 80px;
  overflow: hidden;
  position: relative;
}
.conditions-inner { position: relative; z-index: 1; }
.conditions-header { margin-bottom: 40px; text-align: center; }
.conditions-heading {
  font-family: 'Pretendard', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: var(--white);
  margin: 0;
}
.conditions-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}
/* PC: 글래스 카드 364×308, rounded 20px */
.condition-card {
  width: 364px;
  height: 308px;
  flex-shrink: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}
.condition-card-icon {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.condition-card-icon img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}
.condition-card-content {
  position: absolute;
  left: 50%;
  top: 170px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: center;
}
.condition-name {
  font-family: 'Pretendard', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: var(--white);
  margin: 0;
}
.condition-amount {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--white);
  margin: 0;
}
.condition-note { font-weight: 400; }
/* + 버튼: 40px 원, #373737 */
.condition-plus {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin: 0 -20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════
   SECTION 07: 오픈 프로세스 (Figma PC 1849-3066 / Mobile 1849-4321)
═══════════════════════════════ */
.sp-section-process {
  background: #E6EBFD;
  padding: 80px 0;
}
.sp-section-process .process-heading {
  font-family: 'Pretendard', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #121212;
  margin-bottom: 48px;
  text-align: center;
}
.process-grid { display: flex; flex-direction: column; gap: 64px; width: 100%; position: relative; }
/* PC: flex row, 화살표가 스텝 사이에 겹쳐짐 */
.process-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 10px;
}
/* PC 화살표 공통: 음수 마진으로 양쪽 스텝에 겹침 */
.process-arrow {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin: 0 -20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-arrow img { display: block; width: 40px; height: 40px; }
/* Row1→Row2 연결 down 화살표: Row1 우측 끝, 행 간 중앙 절대위치 */
.process-arrow--down {
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(12px); /* gap(64px)/2 - 화살표(40px)/2 = 12px */
  margin: 0 110px 0 0; /* 오른쪽 스텝과 겹치도록 */
  z-index: 1;
  width: 40px;
  height: 40px;
}
/* Mobile 전용 화살표: PC에서 숨김 */
.process-arrow-mobile { display: none; }
.process-step {
  flex: 1;
  min-width: 0;
  height: 285px;
  min-height: 285px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.process-step-header {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: var(--white);
  flex-shrink: 0;
}
.process-step-01 .process-step-header { background: #CDD8FF; }
.process-step-02 .process-step-header { background: #A3B6FF; }
.process-step-03 .process-step-header { background: #819BFF; }
.process-step-04 .process-step-header { background: #5B7BF3; }
.process-step-05 .process-step-header { background: #325AF0; }
.process-step-06 .process-step-header { background: #254CDF; }
.process-step-07 .process-step-header { background: #1C3EC0; }
.process-step-08 .process-step-header { background: #0A2BA9; }
.process-step-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  min-height: 0;
}
.process-step-icon {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.process-step-text {
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #121212;
  text-align: center;
  margin: 0;
}

/* ═══════════════════════════════
   SECTION 08: 우선 출점 지역 (Figma Mobile 1849-4549)
═══════════════════════════════ */
.sp-section-locations {
  background: #E6EBFD;
  padding: 0 0 var(--section-padding-v);
}

.locations-heading {
  font-family: 'Pretendard', sans-serif;
  text-align: center;
}
.locations-map {
  position: relative;
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
}
.locations-map-img img {
  display: block;
  width: 100%;
  height: auto;
}
/* PC: 지도 이미지 위에 오버레이 */
.locations-list {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow: hidden;
  padding: 16px 24px;
}
/* 서울+경기 묶음 (왼쪽, 유연하게 늘어남) */
.location-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
/* 수도권 외 (오른쪽, 서울 라인에 맞춤) */
.location-item--side {
  flex: 0.47;
  display: flex;
  flex-shrink: 0;
}
.location-item {
  gap: 8px;
}
.location-region {
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  color: var(--dark);
  flex-shrink: 0;
}
.location-areas {
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  padding-left: 4px;
  color: var(--gray);
}
/* Mobile 전용: 카드 영역 (기본 숨김) */
.locations-cards {
  display: none;
}
.location-card {
  position: relative;
  width: 328px;
  height: 390px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.location-card-bg {
  position: absolute;
  inset: 0;
  background: #C8D8F8;
  background-size: cover;
  background-position: center;
}
.location-card:nth-child(1) .location-card-bg {
  background-image: url("../../assets/offline_recruit/m_winc_map_1.png");
}
.location-card:nth-child(2) .location-card-bg {
  background-image: url("../../assets/offline_recruit/m_winc_map_2.png");
}
.location-card-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}
.location-card-gradient--dim { opacity: 0.5; }
.location-card-list {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray);
  z-index: 2;
}
.location-card-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.location-card-item .location-region {
  flex-shrink: 0;
  margin-bottom: 0;
  color: #121212;
}
.location-card-item .location-areas {
  flex: 1;
  min-width: 0;
  margin: 0;
}

/* ═══════════════════════════════
   SECTION 09: CTA (Figma PC 1849-3287 / Mobile 1849-4559)
═══════════════════════════════ */
.sp-section-cta {
  position: relative;
  background: var(--white);
  padding: 60px 24px;
}
/* 카드: PC 1200×300, rounded 20px */
.cta-card {
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: 300px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #BCBCBC;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: #BCBCBC url("../../assets/offline_recruit/footer_background.png") center / cover no-repeat;
}
.cta-content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  z-index: 2;
}
.cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--white);
}
/* PC/H4_32: 32px Bold, line-height 40 */
.cta-heading {
  font-family: 'Pretendard', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: var(--white);
  margin: 0;
  max-width: 580px;
  word-break: keep-all;
}
/* PC/Body2_18_R: 18px Regular, line-height 28 */
.cta-desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--white);
  margin: 0;
  word-break: keep-all;
}
.cta-btns {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 64px;
  padding: 23px 24px;
  border-radius: 8px;
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.cta-btn-arrow { flex-shrink: 0; }
.cta-btn-primary {
  background: var(--primary);
  color: var(--white);
  border: none;
}
.cta-btn-primary:hover { background: var(--primary-hover); }
.cta-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.cta-btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.sp-footer {
  background: #1B1B1B;
  padding: 48px 0;
}
.sp-footer-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.sp-footer-info ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.sp-footer-info ul li {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.sp-footer-info ul li.company-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  width: 100%;
}
.sp-footer-info ul li a { color: rgba(255,255,255,0.5); text-decoration: none; }
.sp-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.sp-footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.sp-footer-links a:hover { color: rgba(255,255,255,0.8); }
.sp-footer-sns { flex-shrink: 0; }
.sns-title {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sns-icons { display: flex; gap: 12px; }
.sns-icons a img { width: 24px; height: 24px; opacity: 0.6; transition: opacity 0.2s; }
.sns-icons a:hover img { opacity: 1; }

/* ═══════════════════════════════
   BRAND MODAL (MOBILE, Figma 1895-11423)
═══════════════════════════════ */
.brand-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.brand-modal-overlay.open { display: flex; }
.brand-modal-sheet {
  position: relative;
  width: 268px;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-modal-main-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.brand-modal-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-modal-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 170px;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  z-index: 1;
  pointer-events: none;
}
.brand-modal-blur {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(40px);
  z-index: 2;
  pointer-events: none;
}
.brand-modal-info {
  position: absolute;
  bottom: 24px;
  left: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brand-modal-name {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
  margin: 0;
}
.brand-modal-desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  margin: 0;
}
.brand-modal-close-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  height: 48px;
  background: #121212;
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
}

/* ═══════════════════════════════
   HEADER MOBILE (common.css 기준 ~980px)
═══════════════════════════════ */
@media (max-width: 980px) {
  .startup-page .nav { padding: 0 16px; }
  .startup-page .left-menu { display: flex; align-items: center; justify-content: center; margin: 5px 10px; }
  .startup-page .left-menu .btn-left-menu { position: relative; top: auto; }
  .startup-page .header .category-menu ul { padding-top: 40px; }
  .startup-page .header .category-menu li a { margin-left: 0; padding-left: 30px; }
  .startup-page .download-app .info { display: block; margin-right: 0; margin-bottom: 8px; }
  .startup-page .download-app > div { float: left; width: 49%; box-sizing: border-box; }
  .startup-page .download-app div:nth-child(2) { padding-left: 17px; }
  .startup-page .sns-icon a { border: 1px solid #0C1120; border-radius: 50%; padding: 7px; display: inline-flex; }
  .startup-page .sns-icon a img { width: 20px; height: 20px; }
}


/* ═══════════════════════════════
   RESPONSIVE: TABLET (768px~)
═══════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-padding-v: 80px;
  }

  .sp-hero .sp-hero-content {
    padding-left: 80px;
  }

  /* Hero 이미지 배너 */
  .sp-hero:has(.sp-hero-bg) { min-height: 560px; }
  .sp-hero .sp-hero-img-placeholder { min-height: 560px; }
  .sp-hero .sp-hero-title { font-size: 40px; line-height: 50px;}
  .process-arrow--down { margin: 0 65px 0 0; }

  .brand-intro-top { grid-template-columns: 1fr; gap: 0; }
  .brand-intro-desc { margin-top: 24px; max-width: 100%; }
  .brand-features-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; justify-content: stretch; }
  .brand-feature-card { flex-direction: column; gap: 16px; max-width: none; }
  .feature-card-img { width: 100%; height: 460px; flex-shrink: 0; }
  .feature-card-img .img-placeholder { height: 100% !important; }

  .conditions-cards { flex-direction: column; }
  .condition-card { max-width: 100%; width: 100%; }
  .condition-plus { transform: rotate(90deg); margin: -20px 0; }

  /* process-row는 flex+음수마진 방식이라 gap 불필요 */

  .cta-heading { font-size: 28px; }

  .store-gallery-grid { grid-template-rows: 200px 200px; }

  .locations-list { flex-direction: column; }
  .location-item:last-child { border-bottom: none; }
}

/* ═══════════════════════════════
   RESPONSIVE: MOBILE (~767px)
═══════════════════════════════ */
@media (max-width: 767px) {
  :root {
    --section-padding-v: var(--section-padding-v-m);
  }

  .sp-btn { height: 48px; font-size: 14px; width: 100%; max-width: 200px; }
  
  /* Sub Nav */
  .sp-subnav { height: auto; }
  .sp-subnav-inner { padding: 0; }
  .sp-subnav-item { font-size: 16px; }

  /* Hero 이미지 배너 모바일 */
  /* Hero 모바일 (Figma 1849-4002: 360×480, left 32px / top 72px) */
  .sp-hero:has(.sp-hero-bg) { min-height: 480px; }
  .sp-hero .sp-hero-img-placeholder { min-height: 480px; }
  .sp-hero .sp-hero-gradient { background-image: url("../../assets/offline_recruit/m_offline_main_background.png"); }
  .sp-hero .sp-hero-content { padding: 0 32px 120px; align-items: flex-start; text-align: left; gap: 48px; }
  .sp-hero .sp-hero-text-block { gap: 8px; align-items: flex-start; }
  .sp-hero .sp-hero-badges { gap: 7px; }
  .sp-hero .hero-badge { font-size: 12px; font-weight: 700; }
  .sp-hero .hero-badge-logo img { height: 18px; }
  .sp-hero .hero-badge-divider { height: 14px; }
  .sp-hero .sp-hero-title { font-size: 24px; line-height: 32px; letter-spacing: 0; max-width: 296px; text-align: left; }
  .sp-hero .sp-hero-btns { width: 100%; justify-content: flex-start; }
  .sp-hero .sp-hero-cta { width: auto; min-width: 0; height: 64px; font-size: 18px; padding: 0 24px; }

  .sp-heading { font-size: 26px; }
  .sp-heading-white { font-size: 26px; }

  /* Section 02 브랜드 소개 모바일 (Figma 1849-4043) */
  .sp-inner { padding: 0 20px 20px;}
  .brand-intro-top {
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
    margin-bottom: 60px;
  }
  .brand-intro-text { align-items: center; }
  .brand-intro-label { font-size: 16px; line-height: 24px; }
  .brand-intro-heading { font-size: 28px; line-height: 36px; text-align: center; }
  .brand-intro-desc {
    margin-top: 12px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    text-align: center;
    word-break: keep-all;
    color: #4E4E4E;
  }
  .brand-intro-main-img picture img { height: 460px; }
  .brand-intro-main-ph { height: 460px !important; }
  .brand-features-grid { grid-template-columns: 1fr; gap: 40px; }
  .brand-feature-card { flex-direction: column; max-width: none; align-items: flex-start; }
  .feature-card-body { text-align: left; }
  .feature-card-head { justify-content: flex-start; }
  .feature-card-img { width: 100%; height: 460px; }
  .feature-card-img .img-placeholder { height: 100% !important; }

  /* Section 03 brand cards */
  .sp-section-brands { padding: 40px 0; }
  .sp-section-brands .sp-inner { padding: 0; }
  .sp-section-brands .sp-heading { margin-bottom: 30px; }
  .brands-section-header { margin-bottom: 0; }
  
  .brand-card { width: 268px;  }
  /* Mobile: hover off, click to open modal */
  .brand-card:hover .brand-card-hover { opacity: 0; }

  /* Section 04 */
  .sp-swiper-store .swiper-slide .img-placeholder { height: 240px !important; }

  /* Section 05 윙크 렌즈 스토어 모바일: 1번·2번 나열, 각 3열 세로 스택 166/328/166 */
  .sp-section-store-gallery .sp-inner { padding: 0 20px; }
  .store-type-head { flex-direction: column; }
  .store-gallery-header { margin-bottom: 40px; gap: 20px; }
  .store-gallery-heading { font-size: 28px; line-height: 36px; }
  .store-type-block { margin-bottom: 40px; gap: 16px; }
  .store-type-block:last-child { margin-bottom: 0; }
  .store-type-desc { margin-bottom: 8px; }
  .store-type-name { font-size: 24px; line-height: 32px; }
  .store-type-name-sub { display: block; }
  .store-type-desc {
    flex-direction: column;
    gap: 6px;
    font-size: 16px;
    line-height: 24px;
    color: #121212;
    word-break: keep-all;
  }
  .store-type-desc-sep { display: none; }
  .store-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 166px 328px 166px;
    gap: 12px;
    padding: 0 0;
    margin: 0 0;
  }

  .sg-item { border-radius: 16px; }
  /* 모바일: tl1(166px) · tl2(328px) · center(166px) 3장만 표시 */
  .sg-tl1    { grid-column: 1; grid-row: 1; display: block; }
  .sg-tl2    { grid-column: 1; grid-row: 2; display: block; }
  .sg-center { grid-column: 1; grid-row: 3; display: block; }
  .sg-tr, .sg-bl, .sg-br1, .sg-br2 { display: none; }

  /* Section 06 */
  /* 가맹점 개설 조건 모바일 (Figma 1849-4288): 328×120 가로 카드, + 숨김 */
  .sp-section-conditions { padding-top: 60px; padding-bottom: 40px; }
  .conditions-header { margin-bottom: 30px; }
  .conditions-heading { font-size: 28px; line-height: 36px; }
  .conditions-cards { 
    flex-direction: column;
    gap: 8px;
    align-items: center; 
  }
  .condition-plus { display: none; }
  .condition-card {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 0 0 30px;
    border-radius: 16px;
  }
  .condition-card-icon {
    position: static;
    transform: none;
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    margin-left: 0;
  }
  .condition-card-content {
    position: static;
    transform: none;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 0 24px 0 0;
    text-align: left;
    min-width: 0;
  }
  .condition-name { font-size: 24px; line-height: 32px; }
  .condition-amount { font-size: 16px; line-height: 24px; }

  /* Section 07 */
  /* 오픈 프로세스 모바일 (Figma 1849-4321): 2열×4행, 160×160 카드 */
  .sp-section-process {
    padding: 40px 0;
  }
  .sp-section-process .process-heading {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 0;
    padding-bottom: 30px;
  }
  .process-row {
    display: contents;
  }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 8px;
  }
  .process-step {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-radius: 11px;
  }
  .process-step-header {
    height: 28px;
    font-size: 16px;
    line-height: 24px;
  }
  .process-step-body {
    padding: 8px;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }
  .process-step-icon {
    width: 70px;
    height: 70px;
  }
  .process-step-text {
    font-size: 16px;
    line-height: 24px;
  }
  /* 모바일 그리드에서 01→08 순서로 표시 (display: contents로 8개가 한 줄에 있을 때) */
  .process-step-01 { order: 1; }
  .process-step-02 { order: 2; }
  .process-step-03 { order: 3; }
  .process-step-04 { order: 4; }
  .process-step-05 { order: 5; }
  .process-step-06 { order: 6; }
  .process-step-07 { order: 7; }
  .process-step-08 { order: 8; }
  /* PC 화살표 숨김 (display:contents로 grid 아이템이 되므로 반드시 숨겨야 함) */
  .process-arrow { display: none; }
  /* Mobile 전용 화살표: 2열 그리드 각 행 중앙에 절대위치 */
  /* step height: 160px, gap: 8px → 각 행 center_y: 80, 248, 408, 568 */
  .process-arrow-mobile {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 24px;
    height: 24px;
  }
  .process-arrow-mobile img { width: 24px; height: 24px; }
  /* step height: 160px, gap: 8px → center_y: 80, 248, 408, 568 → top = center_y - 12 */
  .process-arrow-mobile:nth-child(3) { top: 78px; }
  .process-arrow-mobile:nth-child(4) { top: 246px; }
  .process-arrow-mobile:nth-child(5) { top: 408px; }
  .process-arrow-mobile:nth-child(6) { top: 568px; }

  /* Section 08 우선 출점 지역 (Figma 1849-4549) */
  .sp-section-locations {
    padding: 40px 0;
  }
  .sp-section-locations .sp-inner {
    padding: 0;
    margin: 0 16px;
  }
  .sp-section-locations .sp-label-blue { display: none; }
  .sp-section-locations .locations-heading {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
    margin-bottom: 0;
    padding: 0 0 30px;
  }
  .locations-map { display: none; }
  .locations-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 0 auto;
  }
  .location-card { width: 100%; }
  .locations-list { border-radius: 8px; }
  .location-region { font-size: 14px; }
  .location-areas { font-size: 14px; }

  /* Section 09 CTA (Figma Mobile 1849-4559) */
  .sp-section-cta { padding: 20px 16px; }
  .cta-card {
    width: 100%;
    height: 390px;
    margin: 0 auto;
    border-radius: 16px;
  }
  .cta-bg { background-image: url("../../assets/offline_recruit/m_footer_background.png"); background-position: center; background-size: cover; }
  .cta-content-wrap { top: calc(50% - 25px); width: calc(100% - 48px); }
  .cta-heading {
    font-size: 24px;
    line-height: 32px;
    max-width: 296px;
  }
  .cta-btns { align-items: stretch; }
  .cta-btn { width: 100%; justify-content: center; }

  /* Footer */
  .sp-footer-inner { flex-direction: column; }
  .sp-footer-info ul { gap: 2px 8px; }
}
