/* ==============================================
   main.css — Hero + Proof 섹션
   법인설립지원센터 파트너스
   ============================================== */

/* -----------------------------------------------
   @keyframes
   ----------------------------------------------- */

/* -----------------------------------------------
   Phase 10: 마이크로 인터랙션 키프레임
   ----------------------------------------------- */

@keyframes btnRipple {
  to {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes countPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); color: var(--color-primary); }
}

/* Proof 숫자 카운팅 중 펄스 */
.proof__number.is-counting {
  animation: countPulse 0.4s ease-in-out;
}

.proof__card--accent .proof__number.is-counting,
.proof__card--dark .proof__number.is-counting {
  animation: countPulse 0.4s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.02); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* -----------------------------------------------
   Hero 섹션
   ----------------------------------------------- */

.hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px; /* header height */
}

/* Veo 3.1 배경 영상 */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .22;
  filter: saturate(0.7) blur(0.5px);
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 20, 44, 0.72) 0%,
    rgba(21, 59, 132, 0.55) 50%,
    rgba(7, 20, 44, 0.72) 100%
  );
}

/* 그리드 오버레이 */
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* 파티클 */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(57, 114, 223, 0.15);
}

.hero__particle--1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 8%;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero__particle--2 {
  width: 140px;
  height: 140px;
  top: 60%;
  left: 3%;
  animation: heroFloat 8s ease-in-out infinite 1s;
}

.hero__particle--3 {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 10%;
  animation: heroFloat 7s ease-in-out infinite 0.5s;
}

.hero__particle--4 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 5%;
  animation: heroFloat 9s ease-in-out infinite 2s;
}

.hero__particle--5 {
  width: 50px;
  height: 50px;
  top: 45%;
  left: 45%;
  animation: heroFloat 5s ease-in-out infinite 1.5s;
}

/* 컨테이너 */
.hero__container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* 좌측 콘텐츠 */
.hero__content {
  flex: 0 0 55%;
  max-width: 55%;
}

/* 배지 */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 6px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* 타이틀 */
.hero__title {
  font-family: var(--font-hero, 'Paperlogy', 'Pretendard', sans-serif);
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero__title-highlight {
  background: linear-gradient(90deg, #93c5fd, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 설명 */
.hero__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out 0.7s both;
}

.hero__desc strong {
  color: #fff;
  font-weight: 700;
}

/* CTA 버튼 그룹 */
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out 0.9s both;
}

/* 신뢰 지표 */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeIn 0.6s ease-out 1.1s both;
}

.hero__trust-divider {
  color: rgba(255, 255, 255, 0.3);
}

/* 우측 비주얼 */
.hero__mockup {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 파트너 포토 프레임 */
.hero__photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 360px;
  box-shadow: 0 40px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.08);
  animation: fadeInLeft 0.6s ease-out 0.8s both;
  flex-shrink: 0;
}
.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform .5s ease;
}
.hero__photo-frame:hover img {
  transform: scale(1.03);
}
/* 그라디언트 오버레이 (아래쪽 카드와 자연스럽게 블렌딩) */
.hero__photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,18,41,.5) 100%);
  pointer-events: none;
}

/* 사진 위 뱃지 */
.hero__photo-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  letter-spacing: -.3px;
}
.hero__photo-badge--trust {
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: #3972DF;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.hero__photo-badge--earn {
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #3972DF, #153B84);
  border-radius: 14px;
  padding: 10px 16px;
  text-align: right;
  box-shadow: 0 4px 20px rgba(57,114,223,.5);
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.hero__earn-val {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.5px;
}
.hero__earn-lbl {
  font-size: 10px;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

.hero__mockup-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
  animation: fadeInLeft 0.7s ease-out 1.0s both;
  margin-top: -24px; /* 사진과 카드 오버랩 */
}

.hero__mockup-card:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

/* 목업 헤더 */
.hero__mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 16px;
}

.hero__mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__mockup-dot--red    { background: #ff5f57; }
.hero__mockup-dot--yellow { background: #febc2e; }
.hero__mockup-dot--green  { background: #28c840; }

.hero__mockup-title {
  margin-left: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* 목업 바디 */
.hero__mockup-body {
  padding: 20px;
}

/* 스탯 3개 */
.hero__mockup-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.hero__mockup-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}

.hero__mockup-stat-value {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero__mockup-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* 활동 리스트 */
.hero__mockup-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__mockup-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.hero__mockup-item > span:nth-child(2) {
  flex: 1;
}

.hero__mockup-status {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 9999px;
}

.hero__mockup-status--done {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.hero__mockup-status--progress {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

.hero__mockup-amount {
  flex-shrink: 0;
  font-weight: 700;
  color: #4ade80;
  font-size: 12px;
}

.hero__mockup-amount--pending {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

/* 플로팅 알림 배지 */
.hero__mockup-notification {
  position: absolute;
  bottom: 60px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-size: 13px;
  color: #07142C;
  font-weight: 500;
  white-space: nowrap;
  animation: fadeInUp 0.6s ease-out 1.5s both, pulse 2s ease-in-out 2.2s infinite;
}

/* 스크롤 다운 인디케이터 */
.hero__scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  cursor: pointer;
  z-index: 1;
  animation: bounce 2s ease-in-out infinite;
  transition: opacity 0.3s ease;
}

/* -----------------------------------------------
   Proof 섹션
   ----------------------------------------------- */

.proof {
  background: var(--color-white, #ffffff);
  padding: 120px 0;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

/* 카드 기본 */
.proof__card {
  background: var(--color-white, #ffffff);
  border: 1px solid var(--color-gray-200, #e5e7eb);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.proof__card:hover {
  border-color: var(--color-primary, #3972DF);
  box-shadow: 0 8px 32px rgba(57, 114, 223, 0.12);
  transform: translateY(-4px);
}

/* 강조 카드 */
.proof__card--accent {
  background: linear-gradient(135deg, #3972DF, #153B84);
  border-color: transparent;
  color: #fff;
}

.proof__card--accent:hover {
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(57, 114, 223, 0.35);
}

/* 다크 카드 */
.proof__card--dark {
  background: #07142C;
  border-color: transparent;
  color: #fff;
}

.proof__card--dark:hover {
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(7, 20, 44, 0.35);
}

/* 아이콘 */
.proof__card-icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 숫자 영역 */
.proof__card-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.proof__number {
  font-family: 'Montserrat', var(--font-number, sans-serif);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-primary, #3972DF);
  line-height: 1.1;
}

.proof__card--accent .proof__number,
.proof__card--dark .proof__number {
  color: #fff;
}

.proof__unit {
  font-family: 'Montserrat', var(--font-number, sans-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary, #3972DF);
  line-height: 1.1;
}

.proof__card--accent .proof__unit,
.proof__card--dark .proof__unit {
  color: rgba(255, 255, 255, 0.85);
}

/* 라벨 */
.proof__card-label {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  color: inherit;
}

.proof__card:not(.proof__card--accent):not(.proof__card--dark) .proof__card-label {
  color: var(--color-gray-900, #111827);
}

/* 설명 */
.proof__card-desc {
  font-size: 13px;
  color: var(--color-gray-500, #6b7280);
  margin-top: 4px;
}

.proof__card--accent .proof__card-desc,
.proof__card--dark .proof__card-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* 데이터 엘리먼트 (화면에 표시 안 됨) */
.proof__card-data {
  display: none;
}

/* -----------------------------------------------
   반응형 — ≤1024px
   ----------------------------------------------- */

@media (max-width: 1024px) {
  .hero__title {
    font-size: 44px;
  }

  .hero__desc {
    font-size: 16px;
  }

  .proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof__number {
    font-size: 40px;
  }
}

/* -----------------------------------------------
   반응형 — ≤768px
   ----------------------------------------------- */

@media (max-width: 768px) {
  .hero {
    padding-top: 64px; /* 모바일 헤더 높이 */
    align-items: flex-start;
    padding-bottom: 80px;
  }

  .hero__container {
    flex-direction: column;
    gap: 0;
    padding-top: 48px;
  }

  .hero__content {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .hero__mockup {
    display: none;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__desc {
    font-size: 16px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .proof {
    padding: 80px 0;
  }

  .proof__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 40px;
  }

  .proof__card {
    padding: 28px 16px;
  }

  .proof__number {
    font-size: 32px;
  }

  .proof__unit {
    font-size: 18px;
  }

  .proof__card-label {
    font-size: 14px;
  }
}

/* -----------------------------------------------
   반응형 — ≤600px
   ----------------------------------------------- */

@media (max-width: 600px) {
  .hero__title {
    font-size: 32px;
  }

  .proof__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .proof__card {
    padding: 24px 12px;
  }

  .proof__number {
    font-size: 28px;
  }

  .proof__unit {
    font-size: 16px;
  }
}


/* ============================================
   Phase 4: Growth + N-Job + Value 섹션
   ============================================ */


/* -----------------------------------------------
   Section 3: Growth (다크 섹션)
   ----------------------------------------------- */

.growth {
  background: var(--gradient-dark);
  padding: 120px 0;
  color: #fff;
}

.growth__container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.badge--white {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.growth__title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 16px 0 20px;
  line-height: 1.3;
}

.growth__title-gradient {
  background: linear-gradient(90deg, #93c5fd, #3972DF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.growth__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.growth__stats {
  display: flex;
  gap: 40px;
}

.growth__stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #3972DF;
}

.growth__stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.growth__chart-wrapper {
  flex-shrink: 0;
}

.growth__chart {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 28px 20px;
  min-width: 420px;
}

.growth__chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.growth__chart-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.growth__chart-trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
}

.growth__chart-trend svg {
  width: 13px;
  height: 13px;
  stroke: #4ade80;
}

.growth__chart-body {
  position: relative;
}

.growth__svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.growth__area-fill {
  fill: url(#growthAreaGrad);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.growth__area-fill.animated {
  opacity: 1;
}

.growth__line-svg {
  fill: none;
  stroke: #3972DF;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.growth__dot {
  fill: rgba(57, 114, 223, 0.4);
  stroke: #3972DF;
  stroke-width: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.growth__dot.animated {
  opacity: 1;
}

.growth__pt-label {
  font-size: 10px;
  fill: rgba(255, 255, 255, 0.5);
  text-anchor: middle;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease 0.4s;
}

.growth__pt-label.animated {
  opacity: 1;
}

.growth__x-axis {
  display: flex;
  justify-content: space-between;
  padding: 8px 4px 0;
}

.growth__x-axis span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  flex: 1;
  text-align: center;
}


/* -----------------------------------------------
   Section 4: N-Job
   ----------------------------------------------- */

.njob {
  background: var(--color-gray-50);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.njob__icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.njob__icon {
  position: absolute;
  opacity: 0.15;
}

.njob__icon--1 { font-size: 48px; top: 8%;  left: 4%;  animation: njobFloat1 5s ease-in-out infinite; }
.njob__icon--2 { font-size: 36px; top: 15%; right: 6%; animation: njobFloat2 6s ease-in-out infinite; }
.njob__icon--3 { font-size: 40px; top: 55%; left: 2%;  animation: njobFloat3 7s ease-in-out infinite; }
.njob__icon--4 { font-size: 32px; top: 70%; right: 4%; animation: njobFloat4 5.5s ease-in-out infinite; }
.njob__icon--5 { font-size: 44px; top: 30%; left: 8%;  animation: njobFloat5 6.5s ease-in-out infinite; }
.njob__icon--6 { font-size: 36px; top: 80%; left: 12%; animation: njobFloat6 4.5s ease-in-out infinite; }
.njob__icon--7 { font-size: 42px; top: 20%; right: 12%;animation: njobFloat7 7s ease-in-out infinite; }
.njob__icon--8 { font-size: 38px; top: 65%; right: 10%;animation: njobFloat8 5s ease-in-out infinite; }

@keyframes njobFloat1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes njobFloat2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes njobFloat3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes njobFloat4 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes njobFloat5 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-25px); } }
@keyframes njobFloat6 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes njobFloat7 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes njobFloat8 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.njob__content {
  text-align: center;
  margin-bottom: 60px;
}

.njob__title {
  margin-top: 12px;
}

.text-primary {
  color: var(--color-primary);
}

.njob__highlight {
  background: #fff;
  border: 2px solid var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  border-radius: 16px;
  padding: 32px 40px;
  max-width: 700px;
  margin: 0 auto;
}

.njob__highlight-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.njob__highlight-icon {
  font-size: 40px;
  flex-shrink: 0;
  line-height: 1;
}

.njob__highlight-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-gray-900);
}

.njob__highlight-header p {
  font-size: 14px;
  color: var(--color-gray-500);
  line-height: 1.6;
}

.njob__benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.njob__benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.njob__benefit-check {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.njob__benefit-text {
  flex: 1;
  font-size: 15px;
  color: var(--color-gray-600);
}

.njob__benefit-text s {
  color: var(--color-gray-400);
}

.njob__benefit-free {
  background: var(--color-primary);
  color: #fff;
  border-radius: 9999px;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.njob__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 2px solid var(--color-primary-light);
}

.njob__total span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-gray-600);
}

.njob__total-amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}


/* -----------------------------------------------
   Section 5: Value
   ----------------------------------------------- */

.value {
  background: var(--color-gray-50);
  padding: 120px 0;
}

.value__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value__card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  border-top: 4px solid var(--card-color, var(--color-primary));
  box-shadow: 0 4px 24px rgba(7, 20, 44, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.value__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(7, 20, 44, 0.12);
}

.value__card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--card-color, var(--color-primary));
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.value__card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.value__card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
  color: var(--color-gray-900);
}

.value__card-body {
  font-size: 15px;
  color: var(--color-gray-500);
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1;
}

.value__card-highlight {
  background: var(--color-primary-lightest);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
}


/* -----------------------------------------------
   반응형 — Phase 4 ≤900px
   ----------------------------------------------- */

@media (max-width: 900px) {
  .growth__container {
    flex-direction: column;
    gap: 48px;
  }

  .growth__title {
    font-size: 28px;
  }

  .growth__chart {
    min-width: unset;
    width: 100%;
  }

  .growth__stats {
    gap: 24px;
  }

  .growth__stat-value {
    font-size: 28px;
  }

  .value__grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------
   반응형 — Phase 4 ≤768px
   ----------------------------------------------- */

@media (max-width: 768px) {
  .growth {
    padding: 80px 0;
  }

  .growth__title {
    font-size: 26px;
  }

  .growth__stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .growth__stat-value {
    font-size: 24px;
  }

  .njob {
    padding: 80px 0;
  }

  .njob__highlight {
    padding: 24px 20px;
  }

  .njob__highlight-header {
    flex-direction: column;
    gap: 12px;
  }

  .njob__total {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .njob__total-amount {
    font-size: 16px;
  }

  .value {
    padding: 80px 0;
  }

  .value__card {
    padding: 28px 24px;
  }

  .value__card-title {
    font-size: 19px;
  }
}


/* ============================================
   Phase 5: Activity + Process 섹션
   ============================================ */


/* -----------------------------------------------
   Section 6: Activity
   ----------------------------------------------- */

.activity {
  background: var(--color-white);
  padding: 120px 0;
}

/* Activity photo strip */
.activity__photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.activity__photo-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0,0,0,.10);
}
.activity__photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.activity__photo-item:hover img {
  transform: scale(1.04);
}
.activity__photo-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -.2px;
  pointer-events: none;
}

.activity__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.activity__card {
  border-radius: 20px;
  padding: 40px 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.activity__card:hover {
  transform: translateY(-4px);
}

.activity__card--light-blue {
  background: var(--color-primary-light, #E9EFFB);
}

.activity__card--dark {
  background: var(--color-primary-deeper, #07142C);
  color: #fff;
}

.activity__card--lighter-blue {
  background: var(--color-primary-lightest, #F2F7FF);
}

.activity__card--gradient {
  background: linear-gradient(135deg, #3972DF, #153B84);
  color: #fff;
}

/* 다크/그라디언트 카드 원형 오버레이 */
.activity__card--dark::after,
.activity__card--gradient::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 114, 223, 0.15), transparent 70%);
  top: -60px;
  right: -60px;
  pointer-events: none;
}

.activity__card-icon {
  font-size: 40px;
  line-height: 1;
}

.activity__card-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.activity__card-body {
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
}

.activity__card--dark .activity__card-body,
.activity__card--gradient .activity__card-body {
  color: rgba(255, 255, 255, 0.8);
}

.activity__card-badge {
  align-self: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.activity__card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}


/* -----------------------------------------------
   Section 7: Process
   ----------------------------------------------- */

.process {
  background: var(--color-gray-50);
  padding: 120px 0;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}

/* 모바일용 Swiper — Swiper 번들 CSS (.swiper { display:block }) 오버라이드용 !important */
.process__swiper {
  display: none !important;
}

.process__step {
  background: #fff;
  border: 1px solid var(--color-gray-200, #e5e7eb);
  border-radius: 0;
  padding: 40px 28px;
  position: relative;
  border-right: none;
  text-align: center;
}

.process__step:first-child {
  border-radius: 16px 0 0 16px;
}

.process__step--last {
  border-radius: 0 16px 16px 0;
  border-right: 1px solid var(--color-gray-200, #e5e7eb);
}

.process__step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gray-300, #d1d5db);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  line-height: 1.4;
}

.process__step-number span {
  font-size: 32px;
  color: var(--color-primary, #3972DF);
  display: block;
  line-height: 1;
}

.process__step-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.process__step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-gray-900, #111827);
}

.process__step-desc {
  font-size: 14px;
  color: var(--color-gray-500, #6b7280);
  line-height: 1.7;
}

/* 연결선 */
.process__connector {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 2px;
  background: var(--color-primary, #3972DF);
  z-index: 1;
}

/* Swiper용 슬라이드 카드 */
.process__step--slide {
  background: #fff;
  border: 1px solid var(--color-gray-200, #e5e7eb);
  border-radius: 16px;
  padding: 40px 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

/* CTA */
.process__cta {
  text-align: center;
  margin-top: 60px;
}

.process__cta-sub {
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-gray-400, #9ca3af);
}

/* Swiper pagination 커스텀 */
.process__pagination .swiper-pagination-bullet {
  background: var(--color-gray-300, #d1d5db);
}

.process__pagination .swiper-pagination-bullet-active {
  background: var(--color-primary, #3972DF);
  width: 24px;
  border-radius: 4px;
}


/* -----------------------------------------------
   반응형 — Phase 5 ≤1024px
   ----------------------------------------------- */

@media (max-width: 1024px) {
  .activity__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -----------------------------------------------
   반응형 — Phase 5 ≤768px
   ----------------------------------------------- */

@media (max-width: 768px) {
  .activity {
    padding: 80px 0;
  }

  .process {
    padding: 80px 0;
  }

  /* PC 그리드 숨기고 Swiper 표시 */
  .process__grid {
    display: none;
  }

  .process__swiper {
    display: block !important;
    margin-top: 40px;
    padding-bottom: 48px;
  }

  /* 연결선 모바일에서 숨김 */
  .process__connector {
    display: none;
  }
}

/* -----------------------------------------------
   반응형 — Phase 5 ≤600px
   ----------------------------------------------- */

@media (max-width: 600px) {
  .activity__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .activity__card {
    min-height: unset;
  }
}

/* ==============================================
   Section 8: Dashboard Preview
   ============================================== */

.dashboard-preview {
  background: linear-gradient(180deg, #07142C, #0F2347);
  padding: 120px 0;
  color: #fff;
}

.dashboard__container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.dashboard__content {
  flex: 1;
  min-width: 0;
}

.dashboard__title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 16px 0 20px;
}

.dashboard__title-highlight {
  background: linear-gradient(90deg, #93c5fd, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dashboard__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 32px;
}

.dashboard__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  padding: 0;
}

.dashboard__features li {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.dashboard__feature-check {
  color: #3972DF;
  font-weight: 700;
  flex-shrink: 0;
}

.dashboard__cta {
  margin-top: 4px;
}

/* 목업 wrapper */
.dashboard__mockup-wrapper {
  flex-shrink: 0;
}

.dashboard__mockup {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
  min-width: 480px;
}

.dashboard__mockup:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

/* 목업 헤더 */
.dashboard__mockup-header {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard__mockup-dots {
  display: flex;
  gap: 6px;
}

.dashboard__mockup-dots span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard__mockup-dots span:nth-child(1) { background: #FF5F57; }
.dashboard__mockup-dots span:nth-child(2) { background: #FFBD2E; }
.dashboard__mockup-dots span:nth-child(3) { background: #28CA41; }

.dashboard__mockup-title-bar {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
}

/* 스탯 카드 */
.dashboard__mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.dashboard__mockup-stat-card {
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.dashboard__mockup-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.dashboard__mockup-stat-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.dashboard__mockup-stat-val--blue  { color: #3972DF; }
.dashboard__mockup-stat-val--green { color: #22C55E; }
.dashboard__mockup-stat-val--white { color: #fff; }

/* 활동 리스트 */
.dashboard__mockup-list {
  padding: 16px;
}

.dashboard__mockup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dashboard__mockup-row:last-child {
  border-bottom: none;
}

.dashboard__mockup-status {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  flex-shrink: 0;
}

.dashboard__mockup-status--done {
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
}

.dashboard__mockup-status--progress {
  background: rgba(57, 114, 223, 0.15);
  color: #93c5fd;
}

.dashboard__mockup-name {
  flex: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.dashboard__mockup-amount {
  font-size: 13px;
  font-weight: 700;
  color: #22C55E;
  white-space: nowrap;
}

.dashboard__mockup-amount--pending {
  color: rgba(255, 255, 255, 0.4);
}

/* 반응형 ≤900px */
@media (max-width: 900px) {
  .dashboard__container {
    flex-direction: column;
  }

  .dashboard__mockup {
    min-width: unset;
    width: 100%;
    transform: none;
  }

  .dashboard__mockup:hover {
    transform: none;
  }

  .dashboard__title {
    font-size: 28px;
  }
}

/* ==============================================
   Section 9: Review — Infinite Marquee
   ============================================== */

.review {
  background: var(--color-gray-50);
  padding: 120px 0 80px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .review { padding: 80px 0 60px; }
}

/* Marquee 래퍼 — 좌우 fade mask */
.review__marquee-wrapper {
  position: relative;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.review__marquee-wrapper::before,
.review__marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 10;
  pointer-events: none;
}
.review__marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-gray-50) 0%, transparent 100%);
}
.review__marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-gray-50) 0%, transparent 100%);
}

/* 각 행 */
.review__marquee-row {
  overflow: hidden;
}

/* 트랙 */
.review__marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.review__marquee-track--reverse {
  animation-direction: reverse;
  animation-duration: 42s;
}

.review__marquee-wrapper:hover .review__marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 카드 */
.review__card {
  flex-shrink: 0;
  width: 340px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(57,114,223,0.08);
  box-shadow: 0 2px 16px rgba(7,20,44,0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.review__card:hover {
  border-color: rgba(57,114,223,0.25);
  box-shadow: 0 0 30px rgba(57,114,223,0.12), 0 8px 32px rgba(7,20,44,0.08);
  transform: translateY(-4px);
}

/* 카드 상단 그라디언트 액센트 라인 */
.review__card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(57,114,223,0.5), transparent);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.review__card:hover::before { opacity: 1; }

/* 따옴표 장식 */
.review__card::after {
  content: '\201C';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 60px;
  color: rgba(57,114,223,0.1);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.review__stars {
  color: #F59E0B;
  font-size: 15px;
  letter-spacing: 3px;
}

.review__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-gray-600);
  flex: 1;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-gray-100);
}

.review__author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.review__author-avatar--blue {
  background: var(--color-primary);
  color: #fff;
}
.review__author-avatar--navy {
  background: var(--color-primary-deeper);
  color: #fff;
}
.review__author-avatar--photo {
  background: #f1f5f9;
  overflow: hidden;
  padding: 0;
}
.review__author-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.review__author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray-900);
}

.review__author-meta {
  font-size: 12px;
  color: var(--color-gray-400);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .review__card { width: 280px; padding: 20px; }
  .review__marquee-wrapper::before,
  .review__marquee-wrapper::after { width: 60px; }
}

/* ==============================================
   Section 10: Trust
   ============================================== */

.trust {
  padding: 40px 0;
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
  background: var(--color-white);
}

.trust__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-600);
  white-space: nowrap;
}

.trust__badge-icon {
  font-size: 20px;
}

.trust__divider {
  width: 1px;
  height: 24px;
  background: var(--color-gray-200);
}

@media (max-width: 768px) {
  .trust__divider {
    display: none;
  }

  .trust__list {
    gap: 4px;
  }
}

/* ==============================================
   Section 11: FAQ
   ============================================== */

.faq {
  background: var(--color-white);
  padding: 120px 0;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--color-gray-200);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-gray-200);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-gray-900);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

.faq__question:hover {
  color: var(--color-primary);
}

.faq__question[aria-expanded="true"] {
  color: var(--color-primary);
  font-weight: 600;
}

.faq__arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-gray-400);
}

.faq__question[aria-expanded="true"] .faq__arrow {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}

.faq__answer.is-open {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq__answer p {
  font-size: 15px;
  color: var(--color-gray-500);
  line-height: 1.8;
}

.faq__answer p strong {
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .faq {
    padding: 80px 0;
  }

  .faq__question {
    font-size: 16px;
  }
}

/* ==============================================
   Section 12: Bottom CTA
   ============================================== */

.bottom-cta {
  background: linear-gradient(135deg, #3972DF, #153B84);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bottom-cta__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.bottom-cta__circle--1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -150px;
}

.bottom-cta__circle--2 {
  width: 350px;
  height: 350px;
  bottom: -150px;
  left: -100px;
}

.bottom-cta__container {
  position: relative;
  z-index: 1;
}

.bottom-cta__logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.bottom-cta__title {
  font-family: var(--font-hero);
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.bottom-cta__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 40px;
}

.bottom-cta__desc strong {
  color: #fff;
  font-weight: 700;
}

.bottom-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.bottom-cta__phone {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.bottom-cta__phone a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 768px) {
  .bottom-cta {
    padding: 70px 0;
  }

  .bottom-cta__title {
    font-size: 28px;
  }

  .bottom-cta__desc {
    font-size: 16px;
  }
}

/* ==============================================
   Lucide 아이콘 공통 스타일
   ============================================== */

/* 섹션 아이콘 컨테이너 내 SVG 크기 */
.proof__card-icon i[data-lucide],
.proof__card-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
}

.value__card-icon i[data-lucide],
.value__card-icon svg {
  width: 44px;
  height: 44px;
  stroke-width: 1.5;
}

.activity__card-icon i[data-lucide],
.activity__card-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
}

.process__step-icon i[data-lucide],
.process__step-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
  color: var(--color-primary);
}

.trust__badge-icon i[data-lucide],
.trust__badge-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
  color: var(--color-primary);
  vertical-align: middle;
}

.njob__highlight-icon i[data-lucide],
.njob__highlight-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
  color: var(--color-primary);
}

.modal__visual-icon i[data-lucide],
.modal__visual-icon svg {
  width: 60px;
  height: 60px;
  stroke-width: 1.5;
  color: #fff;
}

.hero__badge i[data-lucide],
.hero__badge svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  vertical-align: middle;
}

/* proof 카드 dark/accent 색상 반전 */
.proof__card--accent .proof__card-icon svg,
.proof__card--dark .proof__card-icon svg {
  color: rgba(255,255,255,0.9);
}

/* ==============================================
   UPGRADE: Hero — Aurora Blob + Glassmorphism
   ============================================== */

/* Aurora animated blobs */
@keyframes auroraBlob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(60px, -40px) scale(1.1); }
  66%       { transform: translate(-40px, 60px) scale(0.95); }
}
@keyframes auroraBlob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-80px, 50px) scale(1.05); }
  66%       { transform: translate(50px, -30px) scale(1.1); }
}
@keyframes auroraBlob3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(30px, 40px) scale(1.08); }
}

.hero__aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}

.hero__blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(57,114,223,0.6) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation: auroraBlob1 18s ease-in-out infinite;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(21,59,132,0.7) 0%, transparent 70%);
  top: 30%; right: -80px;
  animation: auroraBlob2 22s ease-in-out infinite;
}
.hero__blob--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(93,165,255,0.4) 0%, transparent 70%);
  bottom: -100px; left: 40%;
  animation: auroraBlob3 15s ease-in-out infinite;
}

/* Hero 배지 글라스 스타일 */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-bottom: 24px;
  animation: slideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__title {
  animation: slideUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}

.hero__title-highlight {
  background: linear-gradient(135deg, #93c5fd 0%, #ffffff 60%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(147,197,253,0.4));
}

.hero__desc {
  animation: slideUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

.hero__cta {
  animation: slideUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}

/* 히어로 메인 버튼 glow */
.hero__btn-primary {
  position: relative;
  overflow: visible !important;
  box-shadow: 0 0 30px rgba(255,255,255,0.25), 0 4px 16px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.hero__btn-primary:hover {
  box-shadow: 0 0 50px rgba(255,255,255,0.4), 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.hero__btn-primary::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.hero__btn-primary:hover::after { opacity: 1; }

/* Trust bar 업그레이드 */
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-top: 24px;
  animation: slideUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.5s both;
  flex-wrap: nowrap;
}

/* ==============================================
   UPGRADE: Proof — Glassmorphic Dark Cards
   ============================================== */

.proof {
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.proof__grid {
  position: relative;
}

.proof__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.proof__card:not(.proof__card--accent):not(.proof__card--dark) {
  border: 1px solid rgba(57,114,223,0.12);
  box-shadow: 0 4px 24px rgba(57,114,223,0.06);
}
.proof__card:not(.proof__card--accent):not(.proof__card--dark):hover {
  border-color: rgba(57,114,223,0.35);
  box-shadow: 0 0 40px rgba(57,114,223,0.15), 0 16px 40px rgba(7,20,44,0.1);
  transform: translateY(-6px);
}

/* 카드 상단 그라디언트 라인 */
.proof__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(57,114,223,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.proof__card:hover::before { opacity: 1; }

.proof__card--accent::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(147,197,253,0.6), transparent);
}

.proof__card--dark::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(57,114,223,0.8), transparent);
}

/* 숫자 gradient text */
.proof__number {
  background: linear-gradient(135deg, #07142C 0%, #3972DF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof__card--accent .proof__number,
.proof__card--dark .proof__number {
  background: linear-gradient(135deg, #ffffff 0%, rgba(147,197,253,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==============================================
   UPGRADE: Value 섹션 — Bento Hover Glow
   ============================================== */

.value__grid {
  gap: 20px;
}

.value__card {
  border-radius: 24px;
  padding: 40px 32px;
  background: #fff;
  border: 1px solid rgba(57,114,223,0.1);
  box-shadow: 0 4px 24px rgba(7,20,44,0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}

.value__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--card-color, #3972DF) 50%, transparent 100%);
  opacity: 0.7;
}

/* 우상단 subtle glow orb */
.value__card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-color, #3972DF), transparent 70%);
  opacity: 0.06;
  transition: opacity 0.4s;
  pointer-events: none;
}

.value__card:hover {
  border-color: rgba(57,114,223,0.3);
  box-shadow:
    0 0 0 1px rgba(57,114,223,0.15),
    0 0 40px rgba(57,114,223,0.12),
    0 20px 48px rgba(7,20,44,0.1);
  transform: translateY(-8px);
}

.value__card:hover::after { opacity: 0.1; }

.value__card-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--card-color, #3972DF);
  font-weight: 700;
  margin-bottom: 20px;
}

.value__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(57,114,223,0.1), rgba(57,114,223,0.05));
  border: 1px solid rgba(57,114,223,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  font-size: 0;
  transition: all 0.3s;
}
.value__card:hover .value__card-icon {
  background: linear-gradient(135deg, rgba(57,114,223,0.18), rgba(57,114,223,0.08));
  border-color: rgba(57,114,223,0.25);
}

.value__card-highlight {
  background: linear-gradient(135deg, rgba(57,114,223,0.08), rgba(57,114,223,0.04));
  border: 1px solid rgba(57,114,223,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: auto;
}

/* ==============================================
   UPGRADE: Activity 섹션 — 카드 세련화
   ============================================== */

.activity__card {
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.activity__card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(7,20,44,0.15);
}

.activity__card--light-blue {
  background: linear-gradient(135deg, #EEF4FF 0%, #E9EFFB 100%);
  border: 1px solid rgba(57,114,223,0.12);
}
.activity__card--light-blue:hover {
  border-color: rgba(57,114,223,0.25);
  box-shadow: 0 0 40px rgba(57,114,223,0.1), 0 20px 48px rgba(7,20,44,0.08);
}

.activity__card--lighter-blue {
  background: linear-gradient(135deg, #F5F9FF 0%, #F0F5FF 100%);
  border: 1px solid rgba(57,114,223,0.08);
}
.activity__card--lighter-blue:hover {
  border-color: rgba(57,114,223,0.2);
  box-shadow: 0 0 30px rgba(57,114,223,0.08), 0 20px 40px rgba(7,20,44,0.06);
}

.activity__card--dark {
  background: linear-gradient(135deg, #07142C 0%, #0D1F3C 100%);
  border: 1px solid rgba(57,114,223,0.2);
}
.activity__card--dark:hover {
  border-color: rgba(57,114,223,0.4);
  box-shadow: 0 0 50px rgba(57,114,223,0.2), 0 20px 48px rgba(0,0,0,0.3);
}

.activity__card--gradient {
  background: linear-gradient(135deg, #2563EB 0%, #153B84 100%);
  border: 1px solid rgba(255,255,255,0.1);
}
.activity__card--gradient:hover {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 0 60px rgba(37,99,235,0.4), 0 20px 48px rgba(0,0,0,0.3);
}

.activity__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  font-size: 0;
  transition: background 0.3s;
}

.activity__card--light-blue .activity__card-icon,
.activity__card--lighter-blue .activity__card-icon {
  background: rgba(57,114,223,0.1);
  border: 1px solid rgba(57,114,223,0.12);
}
.activity__card--light-blue .activity__card-icon svg,
.activity__card--lighter-blue .activity__card-icon svg {
  color: var(--color-primary);
}

.activity__card-title {
  font-size: 20px;
}

/* ==============================================
   UPGRADE: Process 섹션 — 스텝 카드 세련화
   ============================================== */

.process {
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.process__step {
  background: #fff;
  border: 1px solid rgba(57,114,223,0.1);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.process__step:not(.process__step--slide)::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3972DF, #153B84);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.process__step:hover::after { transform: scaleX(1); }

.process__step:not(.process__step--slide):hover {
  border-color: rgba(57,114,223,0.3);
  box-shadow: 0 0 30px rgba(57,114,223,0.08), 0 12px 32px rgba(7,20,44,0.08);
  transform: translateY(-4px);
  z-index: 1;
}

.process__step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(57,114,223,0.1), rgba(57,114,223,0.05));
  border: 1px solid rgba(57,114,223,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 0;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.process__step:hover .process__step-icon {
  background: linear-gradient(135deg, rgba(57,114,223,0.18), rgba(57,114,223,0.08));
  border-color: rgba(57,114,223,0.3);
}

/* 연결선 업그레이드 — 점선 + 화살표 */
.process__connector {
  right: -1px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #3972DF, #153B84);
  border-radius: 2px;
}
.process__connector::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #153B84;
}

/* ==============================================
   UPGRADE: Bottom CTA — Glassmorphic Panel
   ============================================== */

.bottom-cta {
  background: linear-gradient(135deg, #07142C 0%, #0F2347 40%, #153B84 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* 배경 glow orbs */
.bottom-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,114,223,0.3) 0%, transparent 60%);
  top: -200px; right: -100px;
  pointer-events: none;
}

/* Glassmorphic 패널 */
.bottom-cta__container {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: 60px 48px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  box-shadow:
    0 0 60px rgba(57,114,223,0.15),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .bottom-cta__container {
    padding: 40px 24px;
    border-radius: 24px;
  }
}

/* CTA 버튼 pulse glow */
.bottom-cta .btn-white {
  position: relative;
  box-shadow: 0 0 30px rgba(255,255,255,0.2);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.bottom-cta .btn-white:hover {
  box-shadow: 0 0 50px rgba(255,255,255,0.35), 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.bottom-cta .btn-white::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* ==============================================
   UPGRADE: Growth 섹션 강화
   ============================================== */

.growth__stat-value {
  background: linear-gradient(135deg, #3972DF, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================
   개인정보처리방침 모달
   ========================================== */
.modal-privacy {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-privacy.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-privacy__content {
  background: #fff;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.modal-privacy__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
}
.modal-privacy__header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
.modal-privacy__close {
  width: 32px;
  height: 32px;
  border: none;
  background: #f3f4f6;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  color: #6b7280;
  transition: background 0.15s;
}
.modal-privacy__close:hover {
  background: #e5e7eb;
}
.modal-privacy__body {
  padding: 24px;
}
.modal-privacy__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 16px;
}
.modal-privacy__table th,
.modal-privacy__table td {
  padding: 12px;
  border: 1px solid #e5e7eb;
  text-align: left;
}
.modal-privacy__table th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
  width: 120px;
}
.modal-privacy__table td {
  color: #4b5563;
}
.modal-privacy__note {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.6;
}

/* ==========================================
   수익화 루트 섹션
   ========================================== */
.earn-route {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.earn-route__flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}
.earn-route__step {
  flex: 0 0 240px;
  text-align: center;
  padding: 32px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.earn-route__step:hover {
  box-shadow: 0 8px 32px rgba(57, 114, 223, 0.12);
  transform: translateY(-4px);
}
.earn-route__step--highlight {
  background: linear-gradient(135deg, #3972DF 0%, #153B84 100%);
  color: #fff;
  border-color: transparent;
}
.earn-route__step--highlight .earn-route__step-desc {
  color: rgba(255, 255, 255, 0.85);
}
.earn-route__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary, #3972DF);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.earn-route__step--highlight .earn-route__step-num {
  background: rgba(255, 255, 255, 0.2);
}
.earn-route__step-icon {
  margin-bottom: 12px;
  color: var(--color-primary, #3972DF);
  display: flex;
  justify-content: center;
}
.earn-route__step--highlight .earn-route__step-icon {
  color: #fff;
}
.earn-route__step-icon svg,
.earn-route__step-icon i {
  width: 36px;
  height: 36px;
}
.earn-route__step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.earn-route__step-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}
.earn-route__connector {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: #d1d5db;
  flex-shrink: 0;
  margin-top: 64px;
}
.earn-route__bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  padding: 20px 28px;
  background: #eff6ff;
  border-radius: 12px;
  border: 1px solid #bfdbfe;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.earn-route__bonus-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.earn-route__bonus-text {
  font-size: 15px;
  color: #1e40af;
  line-height: 1.6;
}

/* 모바일 수익화 루트 */
@media (max-width: 768px) {
  .earn-route__flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .earn-route__step {
    flex: none;
    width: 100%;
    max-width: 320px;
  }
  .earn-route__connector {
    transform: rotate(90deg);
    margin: -4px 0;
    padding: 0;
  }
}


/* ==========================================
   예상 수익 계산기 섹션
   ========================================== */
.calculator {
  background: linear-gradient(135deg, #07142C 0%, #153B84 100%);
  color: #fff;
}
.calculator .badge {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
}
.calculator .section-title {
  color: #fff;
}
.calculator .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.calculator__body {
  max-width: 720px;
  margin: 0 auto;
}
.calculator__input-area {
  margin-bottom: 40px;
  text-align: center;
}
.calculator__label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}
.calculator__count {
  font-size: 32px;
  font-weight: 800;
  color: #5BA4F5;
  font-family: 'Montserrat', sans-serif;
}
.calculator__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  cursor: pointer;
}
.calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #5BA4F5;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.15s;
}
.calculator__slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.calculator__slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #5BA4F5;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.calculator__range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}
.calculator__result-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.calculator__result-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  min-width: 160px;
  flex: 1;
}
.calculator__result-card--total {
  background: rgba(91, 164, 245, 0.15);
  border-color: rgba(91, 164, 245, 0.3);
}
.calculator__result-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.calculator__result-value {
  font-size: 28px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.calculator__result-value--total {
  font-size: 36px;
  color: #5BA4F5;
}
.calculator__result-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.calculator__result-plus {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.calculator__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 24px;
  line-height: 1.6;
}

/* 모바일 계산기 */
@media (max-width: 768px) {
  .calculator__result-area {
    flex-direction: column;
    gap: 8px;
  }
  .calculator__result-card {
    width: 100%;
    min-width: 0;
  }
  .calculator__result-plus {
    font-size: 18px;
  }
  .calculator__result-value {
    font-size: 24px;
  }
  .calculator__result-value--total {
    font-size: 28px;
  }
  .calculator__count {
    font-size: 28px;
  }
}

/* ==========================================
   Review — 인터뷰 카드 스타일
   ========================================== */
.review {
  background: #f8f9fa;
}
.review__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.review__interview-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.review__interview-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.review__interview-top {
  padding: 28px 24px 20px;
}
.review__interview-name {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 12px;
}
.review__interview-quote {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #111827;
  letter-spacing: -0.02em;
}
.review__highlight {
  color: var(--color-primary, #3972DF);
  font-weight: 800;
}
.review__interview-img {
  margin-top: auto;
  padding: 20px 24px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.review__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(57,114,223,0.08), rgba(21,59,132,0.06));
  border: 1px solid rgba(57,114,223,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review__icon-wrap i[data-lucide],
.review__icon-wrap svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
  color: var(--color-primary, #3972DF);
}

/* 모바일 Review */
@media (max-width: 768px) {
  .review__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
  }
  .review__interview-top {
    padding: 20px 16px 12px;
  }
  .review__interview-quote {
    font-size: 16px;
  }
  .review__interview-name {
    font-size: 11px;
  }
  .review__interview-img {
    padding: 12px 16px 16px;
  }
  .review__icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }
  .review__icon-wrap i[data-lucide],
  .review__icon-wrap svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .review__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .review__interview-quote {
    font-size: 14px;
  }
}
