/* ==========================================================
   Pretendard — 셀프호스팅 (가변 폰트 서브셋)
   ⚠️ 이전 버전은 fonts.googleapis.com 에서 Pretendard를 요청했으나
      Pretendard는 Google Fonts 미등재 폰트로 HTTP 400이 떨어져
      폰트가 적용되지 않고 시스템 폰트로 폴백되고 있었음.
   서브셋 재생성: python3 tools/subset-font.py  (README 참조)
   SIL Open Font License 1.1 — fonts/LICENSE-Pretendard.txt
   ========================================================== */
@font-face {
  font-family: 'Pretendard Variable';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/PretendardVariable.subset.woff2') format('woff2-variations');
}

/* =====================================================
   부릉파트너스 협력사 모집 랜딩페이지 — 메인 스타일
   Pantone 3395 C → #00C896
   ===================================================== */

/* ── 1. Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand — Pantone 3395 C */
  --brand:          #00C896;
  --brand-dark:     #00A87E;
  --brand-deeper:   #008F6A;
  --brand-light:    #E6FAF5;
  --brand-lighter:  #F0FDF9;
  --brand-glow:     rgba(0, 200, 150, 0.18);

  /* Neutral */
  --black:    #111827;
  --charcoal: #1F2937;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;
  --white:    #FFFFFF;

  /* Semantic */
  --text-heading: var(--charcoal);
  --text-body:    var(--gray-700);
  --text-muted:   var(--gray-500);
  --bg-white:     var(--white);
  --bg-light:     var(--gray-50);
  --border:       var(--gray-200);

  /* Font */
  --font: 'Pretendard Variable', 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;

  /* Layout */
  --max-w:         1120px;
  --section-pad-v: 88px;
  --header-h:      68px;

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Shadow */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.11);
  --shadow-brand: 0 4px 20px rgba(0,200,150,0.30);

  /* Transition */
  --ease: 0.22s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ── 2. Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section-pad { padding: var(--section-pad-v) 0; }
.bg-light { background: var(--bg-light); }
.hidden { display: none !important; }

/* ── 3. Typography ── */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.eyebrow-light { color: rgba(255,255,255,0.7); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── 4. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  text-decoration: none;
  padding: 13px 26px;
  font-size: 15px;
}
.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,200,150,0.38);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-heading);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
}
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ── 5. Header ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
#site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-symbol { width: 32px; height: 32px; }
.header-logo-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.logo-vroong {
  font-size: 17px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.logo-partners {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--ease);
}
.header-nav a:hover { color: var(--brand); }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-cta { padding: 9px 20px; font-size: 13px; }

/* 햄버거 */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  /* 탭 타겟 44×44 — 모바일 접근성 권장치(WCAG 2.5.5). 막대 자체는 24px 유지 */
  width: 44px;
  min-height: 44px;
  padding: 0;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 모바일 드로어 */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 28px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav-cta {
  margin-top: 12px;
  text-align: center;
  justify-content: center;
  border-bottom: none !important;
}

/* ── 6. Hero ── */
#hero-section {
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 72px;
  background: var(--white);
  overflow: hidden;
  position: relative;
}
#hero-section::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0,200,150,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
/* 히어로 텍스트 */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-light);
  border: 1px solid rgba(0,200,150,0.3);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--brand);
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 28px;
}
.hero-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 36px;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
}
.hero-checks li i { color: var(--brand); font-size: 15px; }

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-notice {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-notice i { color: var(--brand); }

/* 히어로 비주얼 — 로고 카드 */
.hero-visual { position: relative; }

.hero-logo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
/* 상단 브랜드 컬러 바 — 제거 */
.hero-logo-card::before {
  display: none;
}
/* 우측 상단 배경 글로우 */
.hero-logo-card::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,200,150,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* 로고 메인 래퍼 — 흰 배경 로고 그대로 표시 */
.hero-logo-main-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero-logo-main {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ── 7. About ── */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
}
.about-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #00A8E8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.about-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.about-card:hover::after { transform: scaleX(1); }
.about-card-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--brand-light);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.about-card-icon {
  width: 48px; height: 48px;
  background: var(--brand-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--brand);
  margin-bottom: 16px;
  transition: all var(--ease);
}
.about-card:hover .about-card-icon {
  background: var(--brand);
  color: var(--white);
}
.about-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.about-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── 8. Benefits ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  transition: all var(--ease);
  cursor: default;
}
.benefit-card:hover {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow), var(--shadow-sm);
  transform: translateY(-4px);
}
.benefit-icon-wrap {
  width: 48px; height: 48px;
  background: var(--brand-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--brand);
  margin-bottom: 18px;
  transition: all var(--ease);
}
.benefit-card:hover .benefit-icon-wrap {
  background: var(--brand);
  color: var(--white);
}
.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── 9. Target ── */
.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.target-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all var(--ease);
}
.target-card:hover {
  border-color: var(--brand);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.target-badge {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--brand-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--brand);
}
.target-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.4;
}
.target-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.section-cta-wrap { text-align: center; }

/* ── 10. Process ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand), rgba(0,200,150,0.2));
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--brand);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  box-shadow: var(--shadow-brand);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: transform var(--ease);
}
.process-step:hover .step-num { transform: scale(1.1); }
.step-connector { display: none; }
.step-body { width: 100%; }
.step-icon {
  font-size: 22px;
  color: var(--brand);
  margin-bottom: 12px;
}
.step-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── 11. FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.faq-item[open] {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q-badge {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--brand);
  color: var(--white);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.faq-question {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.5;
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--gray-400);
  font-size: 13px;
  transition: transform var(--ease);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px 20px 66px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-answer p { margin: 0; }
.faq-answer strong { color: var(--text-heading); }

/* ── FAQ 추가 스타일 ── */

/* 앱 사용 설명서 링크 */
.faq-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}
.faq-guide-link:hover {
  color: var(--brand);
}
.faq-guide-link i { font-size: 13px; }

/* 앱 다운로드 버튼 */
/* 플랫폼 지원 현황 안내 (iOS 앱 출시 시 이 블록과 함께 문단도 제거) */
.faq-platform-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--brand-light);
  border-radius: var(--r-sm);
  font-size: 13px;
  line-height: 1.5;
  color: var(--brand-deeper);
}
.faq-platform-note i { flex-shrink: 0; font-size: 14px; margin-top: 3px; }
.faq-platform-note strong { font-weight: 700; }

.faq-app-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.faq-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--r-full);
  transition: all var(--ease);
  text-decoration: none;
}
.faq-app-btn:hover {
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}
.faq-app-btn i { font-size: 15px; }

/* 신청 절차 스텝 */
.faq-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.faq-step {
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(0,200,150,0.25);
  white-space: nowrap;
}
.faq-step-arrow {
  color: var(--brand);
  font-size: 11px;
  opacity: 0.6;
}

/* 정산 주기 */
.faq-settlement {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-settlement-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.faq-settlement-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  min-width: 80px;
  flex: 1;
}
.faq-settlement-item.highlight {
  background: var(--brand-light);
  border-color: rgba(0,200,150,0.3);
}
.settlement-day {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-heading);
}
.faq-settlement-item.highlight .settlement-day {
  color: var(--brand-dark);
}
.settlement-desc {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}
.faq-settlement-item.highlight .settlement-desc {
  color: var(--brand-dark);
  font-weight: 600;
}
.faq-settlement-img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ── 12. Contact ── */
.contact-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--brand-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--brand);
}
.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 16px;
  color: var(--text-heading);
  line-height: 1.5;
}
.contact-link { transition: color var(--ease); }
.contact-link:hover { color: var(--brand); }
.contact-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── 13. Apply CTA 섹션 ── */
.apply-bg {
  background: linear-gradient(160deg, #0a2a1e 0%, #0d3526 40%, #0a2a22 100%);
}
.apply-cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.apply-cta-text {
  flex: 1;
  min-width: 280px;
}
.apply-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.apply-cta-btn {
  font-size: 17px;
  padding: 18px 40px;
  box-shadow: 0 6px 28px rgba(0,200,150,0.45);
}
.apply-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,200,150,0.55);
}
.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.25);
  justify-content: center;
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
/* 좌측 설명 */
.apply-desc { color: rgba(255,255,255,0.92); }
.apply-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.apply-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 32px;
}
.apply-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.apply-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.apply-features li i { color: var(--brand); font-size: 16px; }
.apply-contact-mini {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.apply-contact-mini p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.apply-contact-mini a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--brand);
  transition: color var(--ease);
}
.apply-contact-mini a:hover { color: #4dd9b3; }

/* 폼 */
.apply-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full { margin-bottom: 16px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
}
.req { color: var(--brand); }
.opt { color: var(--gray-400); font-weight: 400; font-size: 12px; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-heading);
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 15px;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--brand-glow);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
  background: #FFF5F5;
}
.form-group textarea { resize: none; }
.field-err { font-size: 12px; color: #EF4444; min-height: 16px; }

/* 다중 체크박스 그룹 */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color var(--ease);
}
.checkbox-group.error {
  border-color: #EF4444;
  background: #FFF5F5;
}
.check-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  color: var(--text-body);
  font-weight: 500;
}
.check-option input[type="checkbox"] { display: none; }
.check-option-box {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  transition: all var(--ease);
  position: relative;
}
.check-option input:checked + .check-option-box {
  background: var(--brand);
  border-color: var(--brand);
}
.check-option input:checked + .check-option-box::after {
  content: '';
  position: absolute;
  top: 1px; left: 4px;
  width: 6px; height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.check-option:hover .check-option-box {
  border-color: var(--brand);
}

/* 개인정보 상세 안내 */
.privacy-detail {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}
.privacy-detail ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.privacy-detail ul li strong {
  color: var(--text-heading);
  font-weight: 600;
}
.privacy-notice {
  font-size: 12px;
  color: var(--gray-500);
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 4px;
  line-height: 1.7;
}

/* 개인정보 체크박스 */
.privacy-group { margin-bottom: 24px; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  user-select: none;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-box {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  background: var(--white);
  transition: all var(--ease);
  position: relative;
}
.checkbox-label input:checked + .checkbox-box {
  background: var(--brand);
  border-color: var(--brand);
}
.checkbox-label input:checked + .checkbox-box::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 6px; height: 10px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.checkbox-text { font-size: 13px; color: var(--text-muted); }

/* 제출 */
.form-submit { text-align: center; }
.btn-submit {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  padding: 17px 32px;
  font-size: 16px;
  margin-bottom: 12px;
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }
.form-notice {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* 성공 */
.apply-success {
  text-align: center;
  padding: 56px 32px;
}
.success-icon-wrap {
  font-size: 64px;
  color: var(--brand);
  margin-bottom: 24px;
}
.apply-success h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.apply-success p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── 14. Footer ── */
#site-footer {
  background: var(--charcoal);
  padding: 40px 0 32px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-symbol { width: 30px; height: 30px; }
.footer-brand-text {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.footer-vroong {
  font-size: 16px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.footer-partners {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--brand); }
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-corp,
.footer-addr {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 4px;
}

/* ── 15. Floating CTA ── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: var(--r-full);
  box-shadow: 0 6px 24px rgba(0,200,150,0.45);
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all var(--ease);
}
.floating-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,200,150,0.55);
}

/* ── 16. 스크롤 리빌 ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* 페일세이프 ①: 모션 최소화 설정을 켠 사용자는 애니메이션 없이 즉시 표시.
   페일세이프 ②: .reveal 은 opacity:0 으로 시작하므로 JS가 죽으면 본문이 통째로
   안 보인다. 아래 두 블록이 그 상황을 막는다. (<noscript> 는 index.html 참조) */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── 17. Responsive ── */
@media (max-width: 1024px) {
  :root { --section-pad-v: 64px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .apply-layout { grid-template-columns: 1fr; gap: 40px; }
  .apply-desc { max-width: 480px; }
}

@media (max-width: 768px) {
  :root { --section-pad-v: 52px; --header-h: 60px; }

  .header-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { order: 2; }
  .hero-text  { order: 1; }

  .about-cards { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .target-grid { grid-template-columns: 1fr; }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
    gap: 8px;
  }
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 20px;
  }
  .step-num {
    width: 44px; height: 44px;
    font-size: 17px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .step-icon { display: none; }
  .step-body h3 { font-size: 15px; margin-bottom: 4px; }

  .form-row { grid-template-columns: 1fr; }
  .apply-form-wrap { padding: 28px 20px; }
  .apply-layout { gap: 28px; }

  .contact-card { padding: 28px 20px; }
  .contact-cta-group { flex-direction: column; }
  .contact-cta-group .btn { justify-content: center; }

  .faq-answer { padding-left: 24px; }

  .footer-top { flex-direction: column; gap: 16px; align-items: flex-start; }

  .floating-cta { bottom: 20px; right: 16px; font-size: 13px; padding: 11px 18px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 30px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { justify-content: center; text-align: center; }
  .hero-card { padding: 28px 20px; }
  .section-header { margin-bottom: 36px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
}

/* ── 아이콘 유틸리티 (Font Awesome CDN 대체) ───────────────
   <i class="ic">…svg…</i> 형태. 기존 `... i { color; font-size }`
   셀렉터를 그대로 상속받도록 currentColor / 1em 기준으로 동작한다.
   Font Awesome Free 6.x 아이콘 — CC BY 4.0 (licenses/LICENSE-FontAwesome.txt)
   ────────────────────────────────────────────────────────── */
.ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  vertical-align: -0.125em;
}
.ic > svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: block;
}
