/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* `hidden` turns <html> into a scroll container and silently kills
     position: sticky on every descendant; `clip` blocks horizontal
     overflow without doing that. (hidden = fallback for old browsers) */
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 한국어 줄바꿈: 어절(단어) 중간에서 끊기지 않고 띄어쓰기 단위로만 줄바꿈 */
  word-break: keep-all;
  overflow-wrap: break-word;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Top Bar ===== */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* heavier blur radii re-composite the whole bar on every scroll frame;
     0.96 opacity + 10px reads identically at a fraction of the cost */
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  height: 64px;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}

.top-bar.scrolled {
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: #111;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.logo-sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
  margin-left: 2px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-phone, .top-kakao {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #666;
  height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.top-phone:hover, .top-kakao:hover {
  background: #f5f5f0;
  color: #111;
}

.btn-top-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 20px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.25s;
}

.btn-top-cta svg { flex-shrink: 0; }

.btn-top-cta:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.btn-top-exp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 16px;
  background: linear-gradient(135deg, #ecc965, #d4a843);
  color: #1a1300;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(212,168,67,0.4);
}
.btn-top-exp:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(212,168,67,0.55); }
.btn-top-exp svg { flex-shrink: 0; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
  padding: 100px 20px 80px;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 120%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.2) saturate(0.6);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(to top, #fff 0%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 660px;
}

/* ===== Hero Full Video Layout ===== */
.hero.hero-fullvideo {
  position: relative;
  min-height: 100vh;
  padding: 0;
  /* designed dark scene instead of flat black while the video/poster loads */
  background:
    radial-gradient(ellipse at 20% 12%, rgba(212,168,67,0.10), transparent 55%),
    radial-gradient(ellipse at 82% 85%, rgba(212,168,67,0.05), transparent 60%),
    linear-gradient(160deg, #16161b 0%, #0a0a0d 60%, #060607 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero.hero-fullvideo::before,
.hero.hero-fullvideo::after { display: none; }

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.68) saturate(0.9);
  /* no fade gate: poster ships inline in the HTML, so the video element
     shows imagery from the very first paint */
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.72) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.45) 75%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
}

/* ---- Hero intro flourishes (insurance mood: trust / premium) ---- */

/* hairline golden underline drawn under the highlighted phrase */
.hero.hero-fullvideo .hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 1%; right: 1%; bottom: -0.06em;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(240,200,96,0), rgba(240,200,96,0.9) 18%, rgba(212,168,67,0.9) 82%, rgba(212,168,67,0));
  transform: scaleX(0);
  transform-origin: left center;
  animation: heroUnderline 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.15s forwards;
}

@keyframes heroUnderline { to { transform: scaleX(1); } }

/* rising gold particles — transform/opacity only, GPU-friendly */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  bottom: -14px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,210,126,0.9) 0%, rgba(212,168,67,0) 70%);
  opacity: 0;
  animation: heroParticle linear infinite;
}

@keyframes heroParticle {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  10% { opacity: 0.8; }
  85% { opacity: 0.5; }
  100% { transform: translateY(-105vh) scale(1.2); opacity: 0; }
}

.hero-particles span:nth-child(1)  { left: 6%;  width: 5px; height: 5px; animation-duration: 14s; animation-delay: 0.4s; }
.hero-particles span:nth-child(2)  { left: 15%; width: 7px; height: 7px; animation-duration: 11s; animation-delay: 3.2s; }
.hero-particles span:nth-child(3)  { left: 24%; width: 4px; height: 4px; animation-duration: 16s; animation-delay: 1.6s; }
.hero-particles span:nth-child(4)  { left: 35%; width: 6px; height: 6px; animation-duration: 12s; animation-delay: 5.1s; }
.hero-particles span:nth-child(5)  { left: 47%; width: 5px; height: 5px; animation-duration: 15s; animation-delay: 2.4s; }
.hero-particles span:nth-child(6)  { left: 58%; width: 8px; height: 8px; animation-duration: 10s; animation-delay: 4.3s; }
.hero-particles span:nth-child(7)  { left: 68%; width: 4px; height: 4px; animation-duration: 17s; animation-delay: 0.9s; }
.hero-particles span:nth-child(8)  { left: 78%; width: 6px; height: 6px; animation-duration: 12.5s; animation-delay: 6.2s; }
.hero-particles span:nth-child(9)  { left: 87%; width: 5px; height: 5px; animation-duration: 14.5s; animation-delay: 3.8s; }
.hero-particles span:nth-child(10) { left: 94%; width: 7px; height: 7px; animation-duration: 11.5s; animation-delay: 1.2s; }

/* one-time diagonal light sweep after the headline settles */
.hero-light-sweep {
  position: absolute;
  top: -20%; bottom: -20%;
  left: 0;
  width: 34%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg,
    transparent 0%,
    rgba(255,243,200,0.14) 42%,
    rgba(255,255,255,0.26) 50%,
    rgba(255,243,200,0.14) 58%,
    transparent 100%);
  transform: translateX(-140%) skewX(-12deg);
  /* no auto-start: motion.js adds .is-on only after the video is visible
     and the headline has settled — never over a black loading screen */
}

.hero-light-sweep.is-on {
  animation: heroSweep 1.6s ease-in-out forwards;
}

@keyframes heroSweep { to { transform: translateX(440%) skewX(-12deg); } }

@media (prefers-reduced-motion: reduce) {
  .hero-particles span, .hero-light-sweep { animation: none; opacity: 0; }
  .hero.hero-fullvideo .hero-title .highlight::after { animation: none; transform: scaleX(1); }
  .hero-live-badge::before, .hero-live-badge::after { animation: none; transform: scaleX(1); }
  .hero.hero-fullvideo .btn-hero-cta::after { animation: none; }
}

/* hero scrolled out of view (class set by motion.js) -> halt its loops */
.hero.hero-offscreen .hero-particles span,
.hero.hero-offscreen .hero-scroll-indicator span,
.hero.hero-offscreen .btn-hero-cta {
  animation-play-state: paused;
}

.hero-fullvideo-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  /* column: copy stack first, stats below (mobile/tablet default) */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.hero.hero-fullvideo .hero-content {
  max-width: 820px;
  text-align: center;
  color: #fff;
}

/* line-style eyebrow: thin rules flanking the text — far lighter than the gold CTA */
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: none;
  border: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: #f0c860;
  letter-spacing: 3px;
  margin-bottom: 28px;
}

.hero-live-badge::before,
.hero-live-badge::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240,200,96,0), rgba(240,200,96,0.7));
  transform: scaleX(0);
  animation: badgeLine 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-live-badge::before { transform-origin: right center; }

.hero-live-badge::after {
  background: linear-gradient(90deg, rgba(240,200,96,0.7), rgba(240,200,96,0));
  transform-origin: left center;
}

@keyframes badgeLine { to { transform: scaleX(1); } }


.hero.hero-fullvideo .hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero.hero-fullvideo .hero-title .highlight {
  position: relative;
  background: linear-gradient(135deg, #f0c860 0%, #d4a843 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  white-space: nowrap !important;
  display: inline-block !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

.hero.hero-fullvideo .hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 38px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  font-weight: 400;
}

.hero.hero-fullvideo .hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.hero.hero-fullvideo .btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 40px;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f0c860 0%, #d4a843 100%);
  color: #111;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(212,168,67,0.35);
  transition: all 0.3s;
}

.hero.hero-fullvideo .btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(212,168,67,0.45);
}

/* one-time expanding gold ring once the intro settles — pulls the eye to the CTA */
.hero.hero-fullvideo .btn-hero-cta {
  position: relative;
}

.hero.hero-fullvideo .btn-hero-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(240,200,96,0.55);
  animation: ctaPulse 1.2s ease-out 1.8s 2;
}

@keyframes ctaPulse {
  to { box-shadow: 0 0 0 22px rgba(240,200,96,0); }
}

.hero.hero-fullvideo .btn-hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  transition: all 0.3s;
}

.hero.hero-fullvideo .btn-hero-sub:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.hero.hero-fullvideo .hero-quick-stats {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 20px 36px;
  /* no backdrop-filter here: blurring a playing video re-composites every frame */
  background: rgba(10,10,10,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  margin-bottom: 0;
}

.hero.hero-fullvideo .hero-stat-item strong { font-size: 1.55rem; }
.hero.hero-fullvideo .hero-stat-item span { color: rgba(255,255,255,0.6); }

/* mobile/tablet: the rail wrapper doesn't exist layout-wise — stats keep
   stacking right below the copy as before */
.hero-stats-rail { display: contents; }

/* Desktop: copy stays viewport-centered; the stats rail is pinned to the true
   right screen edge. The copy's max-width backs off on narrower desktops so
   the two can never collide. */
@media (min-width: 1200px) {
  /* full-bleed so "center" means the real screen center and the rail can
     reach the real screen edge (not the 1100px container's) */
  .hero.hero-fullvideo .hero-fullvideo-inner {
    flex-direction: row;
    max-width: none;
    padding-left: 56px;
    padding-right: 56px;
  }

  .hero.hero-fullvideo .hero-content {
    flex: none;
    /* viewport-centered via the inner's justify-content: center;
       reserve ~240px per side so the rail can never overlap the copy */
    max-width: min(820px, calc(100vw - 480px));
  }

  .hero-stats-rail {
    display: flex;
    align-items: center;
    position: absolute;
    right: 36px;
    top: 0;
    bottom: 0;
    z-index: 2;
  }

  .hero.hero-fullvideo .hero-quick-stats {
    position: relative; /* anchor for the gold accent line */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 26px;
    margin: 0;
    padding: 0 22px 0 0;
    background: none;
    border: none;
    border-radius: 0;
  }

  /* thin gold accent line marking the rail */
  .hero.hero-fullvideo .hero-quick-stats::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 72%;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(240,200,96,0), rgba(240,200,96,0.45) 25%, rgba(212,168,67,0.45) 75%, rgba(240,200,96,0));
  }

  .hero.hero-fullvideo .hero-quick-stats .hero-stat-item {
    flex: none;
    text-align: right;
  }

  .hero.hero-fullvideo .hero-quick-stats .hero-stat-item strong {
    font-size: 1.8rem;
    text-shadow: 0 2px 14px rgba(0,0,0,0.6);
  }

  .hero.hero-fullvideo .hero-quick-stats .hero-stat-item span {
    color: rgba(255,255,255,0.55);
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  }

  .hero.hero-fullvideo .hero-quick-stats .hero-stat-divider {
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,0.14);
  }
}

/* Trust strip pinned to the very bottom of the hero, split 4-up by lines */
.hero-trust-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.14);
  /* no backdrop-filter over the video (perf) — opaque enough on its own */
  background: rgba(8,8,8,0.72);
}

.hero-trust-strip .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hero-trust-strip .trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 26px 16px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: rgba(255,255,255,0.92);
  border-left: 1px solid rgba(255,255,255,0.12);
}

.hero-trust-strip .trust-item:first-child { border-left: none; }
.hero-trust-strip .trust-item svg {
  flex-shrink: 0;
  width: 26px; height: 26px;
  color: #d4a843;
  opacity: 1;
  filter: drop-shadow(0 2px 6px rgba(212,168,67,0.4));
}

@media (max-width: 1199px) {
  .hero-trust-strip .trust-item { font-size: 0.88rem; padding: 20px 12px; gap: 9px; }
  .hero-trust-strip .trust-item svg { width: 22px; height: 22px; }
}

@media (max-width: 767px) {
  .hero-trust-strip .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust-strip .trust-item { padding: 14px 8px; font-size: 0.78rem; gap: 7px; }
  .hero-trust-strip .trust-item svg { width: 18px; height: 18px; }
  .hero-trust-strip .trust-item:nth-child(odd) { border-left: none; }
  .hero-trust-strip .trust-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.1); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 92px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll-indicator span {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ===== Hero Split Layout ===== */
.hero.hero-split {
  background: none;
  min-height: auto;
  padding: 0;
}

.hero.hero-split::before,
.hero.hero-split::after { display: none; }

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #000 0%, #0a0a0a 30%, #111 60%, #1a1a1a 100%);
  z-index: 0;
}

.hero-gradient-bg::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-gradient-bg::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,67,0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-split-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  min-height: 100vh;
  padding-top: 84px;
  padding-bottom: 64px;
}

.hero-text-side { color: #fff; }
.hero-text-side .hero-badge { margin-bottom: 24px; }
.hero-text-side .hero-title { text-align: left; font-size: 2.8rem; }
.hero-text-side .hero-subtitle { text-align: left; margin-bottom: 28px; }

.hero-quick-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: 14px;
  margin-bottom: 36px;
}

.hero-stat-item { text-align: center; flex: 1; }

.hero-stat-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #d4a843;
  margin-bottom: 2px;
  white-space: nowrap;
  word-break: keep-all;
}

.hero-stat-item span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-cta-group .btn-hero-cta { padding: 16px 36px; }

.btn-hero-sub {
  padding: 16px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-hero-sub:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateY(-2px);
}

.hero-image-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero-video-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(212,168,67,0.08);
  background: #0a0a0a;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.hero-video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
}

.hvb-dot {
  width: 6px; height: 6px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239,68,68,0.7);
  animation: livePulse 1.8s infinite;
}

.hero-video-overlay-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(20,20,20,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(212,168,67,0.18);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  z-index: 2;
  animation: floatGentle 4s ease-in-out infinite;
}

.hero-video-overlay-card .hfc-icon {
  width: 38px; height: 38px;
  background: rgba(212,168,67,0.1);
}

.hero-video-overlay-card .hfc-text strong {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.hero-video-overlay-card .hfc-text span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
}

.hero-video-overlay-card.card-float-a {
  bottom: 22px;
  left: 18px;
  animation-delay: 0s;
}

.hero-video-overlay-card.card-float-b {
  top: 70px;
  right: 18px;
  animation-delay: 1.2s;
}

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

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.hero-float-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,168,67,0.08);
  border-radius: 14px;
  margin-bottom: 16px;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}

.hero-float-card:hover {
  background: rgba(212,168,67,0.04);
  transform: translateX(-8px);
  border-color: rgba(212,168,67,0.2);
}

.hero-float-card.card-1 { transform: translateX(0); }
.hero-float-card.card-2 { transform: translateX(30px); }
.hero-float-card.card-3 { transform: translateX(10px); }

.hfc-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,168,67,0.06);
  border-radius: 10px;
  font-size: 2rem;
}

.hfc-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.hfc-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(212,168,67,0.06);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 28px;
  color: #d4a843;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero-title .highlight {
  color: #d4a843;
  -webkit-text-fill-color: #d4a843;
  white-space: nowrap;
  word-break: keep-all;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tag {
  padding: 8px 16px;
  background: rgba(212,168,67,0.06);
  border: 1px solid rgba(212,168,67,0.1);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #bfa55a;
}

.btn-hero-cta {
  display: inline-block;
  padding: 18px 48px;
  background: #d4a843;
  color: #111;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 12px;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(212,168,67,0.2);
  letter-spacing: -0.3px;
}

.btn-hero-cta:hover {
  background: #e0b84e;
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(212,168,67,0.35);
}

/* ===== Trust Section ===== */
.trust-section {
  padding: 24px 20px;
  background: #fafaf7;
  border-bottom: 1px solid #eee;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
}

.trust-item svg { flex-shrink: 0; opacity: 0.6; }

/* ===== Sub Hero ===== */
.sub-hero {
  padding: 68px 20px 60px;
  background: #fff;
  text-align: center;
}

.sub-hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}

.sub-hero-text {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 36px;
}

.sub-hero-book { max-width: 360px; margin: 0 auto; }

.sub-hero-book img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* ===== Image Slider ===== */
.image-slider, .db-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.company-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

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

.slider-item { min-width: 100%; flex-shrink: 0; }
.slider-item img { width: 100%; display: block; object-fit: contain; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.2s;
}

.slider-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 10px; }
.slider-next { right: 10px; }

/* ===== Stats ===== */
.stats {
  padding: 56px 20px;
  background: #fafaf7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #d4a843;
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
}

.stat-card:hover::before { opacity: 1; }

.stat-number {
  font-size: 2.3rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.stat-unit { font-size: 1.3rem; }

.stat-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.stat-desc {
  font-size: 0.73rem;
  color: #aaa;
}

/* ===== Section Titles ===== */
.section-tag {
  display: table;
  margin: 0 auto 16px;
  padding: 7px 18px;
  background: linear-gradient(135deg, #ecc965, #d4a843);
  color: #1a1300;
  border: none;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(212,168,67,0.35);
}

.section-title {
  text-align: center;
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  color: #111;
}

/* mobile-only line break inside titles: breaks on mobile, hidden on desktop/tablet */
@media (min-width: 768px) {
  .br-mobile { display: none; }
}

.section-subtitle {
  text-align: center;
  font-size: 0.88rem;
  color: #999;
  margin-bottom: 44px;
}

/* ===== Pain Points Section ===== */
.pain-section {
  padding: 88px 20px;
  background: #fff;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pain-card {
  padding: 32px 28px;
  background: #fafaf7;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: all 0.3s;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.04);
  border-color: rgba(212,168,67,0.25);
}

.pain-emoji {
  margin-bottom: 14px;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,168,67,0.06);
  border-radius: 12px;
}

.pain-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.pain-card > p {
  font-size: 0.84rem;
  color: #888;
  line-height: 1.65;
  margin-bottom: 16px;
}

.pain-solution {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111;
  padding: 8px 14px;
  background: rgba(212,168,67,0.08);
  border-radius: 8px;
  display: inline-block;
  border-left: 3px solid #d4a843;
}

/* ===== Pillars Section ===== */
.pillars-section {
  padding: 88px 20px;
  background: #fafaf7;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  padding: 36px 28px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eee;
  transition: all 0.3s;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.05);
}

.pillar-card.featured {
  background: #111;
  border: 1px solid rgba(212,168,67,0.1);
  color: #fff;
}

.pillar-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #eee;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.pillar-card.featured .pillar-number {
  color: rgba(212,168,67,0.15);
}

.pillar-card .pillar-icon {
  width: 68px; height: 68px;
  background: #fafaf7;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pillar-card.featured .pillar-icon {
  background: rgba(212,168,67,0.06);
}

.pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.pillar-card.featured h3 { color: #fff; }

.pillar-card > p {
  font-size: 0.84rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 18px;
}

.pillar-card.featured > p { color: rgba(255,255,255,0.45); }

.pillar-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-details li {
  font-size: 0.8rem;
  font-weight: 500;
  color: #777;
  padding-left: 18px;
  position: relative;
}

.pillar-details li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 6px; height: 6px;
  background: #d4a843;
  border-radius: 50%;
}

.pillar-card.featured .pillar-details li {
  color: rgba(255,255,255,0.4);
}

.pillar-card.featured .pillar-details li::before {
  background: #d4a843;
}

/* ===== Income Section ===== */
.income-section {
  padding: 100px 20px 110px;
  background: radial-gradient(ellipse at 20% 0%, #1c1a14 0%, #101012 55%, #0c0c0e 100%);
  position: relative;
  overflow: hidden;
}

.income-section .container { position: relative; z-index: 1; }
.income-section .section-title { color: #fff; }
.income-section .section-subtitle { color: rgba(255,255,255,0.55); }

/* decorative layer: outlined watermark + glow orbs */
.income-deco { position: absolute; inset: 0; pointer-events: none; }

.income-watermark {
  position: absolute;
  top: 26px; left: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(80px, 15vw, 210px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,168,67,0.13);
  white-space: nowrap;
}

.income-orb { position: absolute; border-radius: 50%; filter: blur(60px); }
.income-orb.o1 { width: 380px; height: 380px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(212,168,67,0.25), transparent 70%); }
.income-orb.o2 { width: 320px; height: 320px; bottom: -110px; left: -70px; background: radial-gradient(circle, rgba(79,140,255,0.14), transparent 70%); }

/* reference-style hashtag chips */
.income-hashtags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: -24px 0 48px;
}

.income-hashtags span {
  padding: 5px 13px;
  border-radius: 16px;
  border: 1px solid rgba(212,168,67,0.3);
  background: rgba(212,168,67,0.07);
  color: #e8c878;
  font-size: 0.75rem;
  font-weight: 600;
}

/* growth staircase: cards climb from bottom-left to top-right */
.income-timeline {
  max-width: 1080px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.income-step {
  position: relative;
  padding: 30px 22px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.income-step:nth-child(1) { margin-top: 84px; }
.income-step:nth-child(2) { margin-top: 56px; }
.income-step:nth-child(3) { margin-top: 28px; }
.income-step:nth-child(4) {
  margin-top: 0;
  background: linear-gradient(180deg, rgba(212,168,67,0.17), rgba(212,168,67,0.05));
  border-color: rgba(212,168,67,0.38);
  box-shadow: 0 18px 50px rgba(212,168,67,0.12);
}

.income-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  border-color: rgba(212,168,67,0.45);
}

/* ghost step number */
.income-step-num {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,168,67,0.28);
}

.income-step:nth-child(4) .income-step-num { -webkit-text-stroke-color: rgba(212,168,67,0.55); }

.income-period {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.income-period span {
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  margin-left: 8px;
}

.income-bar-wrap {
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 14px;
}

.income-bar {
  height: 100%;
  background: linear-gradient(90deg, #8a6b22, #d4a843, #f3d27e);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(212,168,67,0.55);
}

.income-amount {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #f3d27e, #d4a843);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #d4a843;
}

.income-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
}

.income-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .income-timeline { grid-template-columns: 1fr 1fr; gap: 14px; }
  .income-step:nth-child(1), .income-step:nth-child(2),
  .income-step:nth-child(3), .income-step:nth-child(4) { margin-top: 0; }
}

@media (max-width: 767px) {
  .income-timeline { grid-template-columns: 1fr; }
  .income-watermark { top: 16px; }
  .income-hashtags { margin: -12px 0 36px; }
}

/* ===== YouTube Section ===== */
.youtube-section { padding: 64px 20px; background: #fff; }

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.youtube-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fafaf7;
  border: 1px solid #eee;
  transition: all 0.3s;
}

.youtube-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.youtube-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.youtube-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s;
}

.youtube-thumb:hover img { transform: scale(1.05); }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  background: rgba(0,0,0,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.youtube-thumb:hover .play-btn {
  transform: translate(-50%,-50%) scale(1.1);
}

.youtube-title {
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #444;
}

/* YouTube Modal */
.youtube-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.youtube-modal.active { display: flex; }

.youtube-modal-content {
  position: relative;
  width: 100%;
  max-width: 860px;
}

.youtube-modal-close {
  position: absolute;
  top: -36px; right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.youtube-modal-close:hover { opacity: 1; }

.youtube-modal-video {
  position: relative;
  padding-bottom: 56.25%;
}

.youtube-modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border-radius: 12px;
}

/* ===== Comparison Table ===== */
.compare-section { padding: 64px 20px; background: #fff; }

.compare-table {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #f5f5f0;
  transition: background 0.2s;
}

.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: #fafaf7; }

.compare-col {
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
}

.label-col {
  font-weight: 600;
  color: #333;
  background: #fafaf7;
  justify-content: flex-start;
}

.compare-header .label-col { background: transparent; }

.badge-bad {
  color: #b91c1c;
  background: #fef2f2;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
}

.badge-good {
  color: #111;
  background: rgba(212,168,67,0.1);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.our-col { background: rgba(212,168,67,0.02); }
.compare-header .our-col { background: #222; }
.compare-header .other-col { background: #374151; }

/* ===== Testimonials ===== */
.testimonials-section {
  padding: 96px 20px 100px;
  background: linear-gradient(180deg, #fafaf7 0%, #f6efdd 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section .container { position: relative; z-index: 1; }

/* decorative layer: outlined watermark + oversized quote glyphs */
.reviews-deco { position: absolute; inset: 0; pointer-events: none; }

.reviews-watermark {
  position: absolute;
  top: 22px; left: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(80px, 14vw, 190px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,168,67,0.14);
  white-space: nowrap;
}

.reviews-quote {
  position: absolute;
  font-family: Georgia, serif;
  font-size: clamp(120px, 16vw, 220px);
  font-weight: 900;
  line-height: 1;
  color: rgba(212,168,67,0.13);
}

.reviews-quote.q1 { top: 70px; left: 3%; }
.reviews-quote.q2 { bottom: -60px; right: 3%; }

/* Carousel */
.testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  /* extra headroom so the scaled-up center card never clips */
  padding: 14px 2px 34px;
}

.testimonial-track {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.tcar-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e6e6e0;
  color: #111;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  padding-bottom: 3px;
}
.tcar-arrow:hover { background: #111; color: #d4a843; border-color: #111; }
.tcar-arrow[hidden] { display: none; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  min-height: 8px;
}
.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d8d0;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.testimonial-dots button.active {
  position: relative;
  overflow: hidden;
  background: rgba(212,168,67,0.25);
  width: 36px;
  border-radius: 4px;
}

/* autoplay progress fill inside the active dot */
.tdot-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #d4a843, #f0c860);
  border-radius: 4px;
  transform-origin: left center;
  animation: tdot-progress 4s linear forwards;
}

@keyframes tdot-progress {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.testimonial-dots.t-paused .tdot-fill { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .tdot-fill { animation: none; transform: scaleX(1); }
}

.testimonial-card {
  flex: 0 0 calc((100% - 36px) / 3);
  box-sizing: border-box;
  padding: 30px 26px 24px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #f0e8d4;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: box-shadow 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, opacity 0.45s ease;
  position: relative;
  overflow: hidden;
}

/* zigzag rhythm: every other card sits a step lower */
.testimonial-card.t-alt { margin-top: 28px; }

/* category-colored top accent bar */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f0c860, #d4a843);
}
.testimonial-card[data-category="newbie"]::before { background: linear-gradient(90deg, #6fbf9c, #2d6a4f); }
.testimonial-card[data-category="career"]::before { background: linear-gradient(90deg, #555, #111); }

/* center-focus: the card in the middle of the viewport grows while its
   neighbors step back, then they swap as the carousel moves on */
.testimonial-track.has-center .testimonial-card:not(.t-center) {
  transform: scale(0.955);
  opacity: 0.72;
}

.testimonial-card.t-center {
  transform: scale(1.06);
  z-index: 2;
  border-color: rgba(212,168,67,0.55);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track.has-center .testimonial-card:not(.t-center),
  .testimonial-card.t-center { transform: none; opacity: 1; }
}

@media (max-width: 1199px) {
  .testimonial-card { flex-basis: calc((100% - 18px) / 2); }
}
@media (max-width: 767px) {
  .testimonial-card { flex-basis: 100%; }
  .testimonial-card.t-alt { margin-top: 0; }
  /* full-width cards: swipe + dots handle navigation, arrows just stole
     ~90px of width and left the card clipped at the viewport edge */
  .tcar-arrow { display: none; }
  .testimonial-viewport { padding: 14px 0 10px; }
  .testimonial-carousel { gap: 0; }
  /* no center-focus scaling on a one-card view — 1.06x just clips */
  .testimonial-track.has-center .testimonial-card:not(.t-center),
  .testimonial-card.t-center { transform: none; opacity: 1; }
  .reviews-quote.q1 { top: 40px; }
}

.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: 18px; right: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212,168,67,0.22);
  line-height: 1;
  font-family: Georgia, serif;
  transition: color 0.35s ease, transform 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(212,168,67,0.18);
  border-color: rgba(212,168,67,0.45);
}

.testimonial-card:hover::after {
  color: rgba(212,168,67,0.5);
  transform: scale(1.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 42px; height: 42px;
  background: #111;
  color: #d4a843;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111;
}

.testimonial-meta {
  font-size: 0.7rem;
  color: #aaa;
}

.testimonial-income {
  margin-left: auto;
  padding: 4px 12px;
  background: rgba(212,168,67,0.08);
  color: #9a7a2e;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.testimonial-text {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
}

/* ===== Company Section ===== */
.company-section { padding: 64px 20px; background: #fff; }

.company-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.company-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.company-desc {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 22px;
}

.company-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.company-features li {
  font-size: 0.88rem;
  font-weight: 500;
  color: #444;
  padding-left: 22px;
  position: relative;
}

.company-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  background: #d4a843;
  border-radius: 50%;
}

/* ===== Leader Section ===== */
.leader-section {
  padding: 100px 20px;
  background: radial-gradient(ellipse at 80% 0%, #1c1a14 0%, #111113 50%, #0d0d0f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.leader-section .container { position: relative; z-index: 1; }

/* decorative layer: outlined watermark + glow orb (income-roadmap mood) */
.leader-deco { position: absolute; inset: 0; pointer-events: none; }

.leader-watermark {
  position: absolute;
  top: 26px; left: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(80px, 15vw, 210px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,168,67,0.12);
  white-space: nowrap;
}

.leader-orb {
  position: absolute;
  top: -130px; right: -90px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.22), transparent 70%);
  filter: blur(60px);
}

.leader-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 380px;
  gap: 56px;
  align-items: start;
  position: relative;
}

.leader-photo img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 14px 48px rgba(0,0,0,0.4);
  margin-top: 24px;
}

.leader-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.15);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 24px;
}

.leader-tag {
  display: inline-block;
  padding: 7px 18px;
  background: linear-gradient(135deg, #ecc965, #d4a843);
  border: none;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #1a1300;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(212,168,67,0.35);
}

.leader-name {
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.leader-position {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.leader-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.leader-stats span {
  padding: 7px 15px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
}

/* the quote is the emotional core — give it stage presence */
.leader-quote {
  position: relative;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  background: rgba(212,168,67,0.05);
  border: 1px solid rgba(212,168,67,0.14);
  border-left: 3px solid #d4a843;
  border-radius: 0 14px 14px 0;
  padding: 22px 24px 22px 26px;
  margin-bottom: 26px;
}

.leader-quote::before {
  content: '\201C';
  position: absolute;
  top: -18px; right: 16px;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(212,168,67,0.3);
}

/* expertise: dim bullet list -> 2-col glass cards */
.leader-expertise {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 26px;
}

.leader-expertise li {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  padding: 13px 14px 13px 36px;
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
}

.leader-expertise li::before {
  content: '\2713';
  position: absolute;
  left: 14px; top: 12px;
  font-size: 0.8rem;
  font-weight: 900;
  color: #d4a843;
  background: none;
  width: auto; height: auto;
}

.leader-slogan {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, #f3d27e, #d4a843);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #d4a843;
  margin-bottom: 26px;
}

.leader-cta p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

@media (max-width: 640px) {
  .leader-expertise { grid-template-columns: 1fr; }
  .leader-name { font-size: 1.8rem; }
}

.btn-kakao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: #FEE500;
  color: #3C1E1E;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-right: 10px;
  transition: all 0.25s;
}

.btn-kakao:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(254,229,0,0.25); }

.btn-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s;
}

.btn-phone-cta:hover { background: rgba(255,255,255,0.08); transform: translateY(-1px); }

/* ===== Channels Section ===== */
.channels-section { padding: 64px 20px; background: #fafaf7; }

.channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.channel-card {
  padding: 36px 24px;
  background: #fff;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #d4a843;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
}

.channel-card:hover::before { transform: scaleX(1); }
.channel-icon { margin-bottom: 16px; }

.channel-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

.channel-name { font-size: 0.92rem; font-weight: 600; color: #111; margin-bottom: 2px; }
.channel-subs { font-size: 0.8rem; font-weight: 700; color: #e74c3c; margin-bottom: 10px; }
.channel-desc { font-size: 0.8rem; color: #888; line-height: 1.5; }

/* ===== Routine Timeline ===== */
.routine-section { padding: 88px 20px; background: #fff; }

.routine-timeline {
  /* one set of knobs drives both the grid columns and the line position */
  --time-col: 58px;
  --col-gap: 18px;
  --dot-size: 14px;
  --line-h: 1.55rem;   /* shared first-line box height: time, dot, title all center on it */
  max-width: 600px;
  margin: 0 auto 32px;
  position: relative;
}

/* vertical line runs exactly through the dot centers (real element so GSAP can draw it) */
.routine-line {
  position: absolute;
  top: 1.5rem; bottom: 1.5rem;
  /* times are no longer displayed — the line sits on the dot column */
  left: calc(var(--dot-size) / 2);
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(to bottom, #111, #888, #d4a843);
}

.routine-item {
  display: grid;
  grid-template-columns: var(--dot-size) 1fr;
  column-gap: var(--col-gap);
  align-items: start;
  padding: 12px 0;
}

.routine-dot {
  width: var(--dot-size);
  height: var(--dot-size);
  justify-self: center;
  margin-top: calc((var(--line-h) - var(--dot-size)) / 2);
  background: #d4a843;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
  position: relative;
  z-index: 1;
  animation: routineDotPulse 2.6s ease-in-out infinite;
}

@keyframes routineDotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(212,168,67,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(212,168,67,0.07); }
}

@media (prefers-reduced-motion: reduce) {
  .routine-dot { animation: none; }
}

.routine-content { min-width: 0; }

.routine-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  line-height: var(--line-h);
  margin: 0 0 6px;
}

.routine-content p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

.routine-note {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  padding: 18px 24px;
  background: #fafaf7;
  border-radius: 12px;
  max-width: 580px;
  margin: 0 auto;
  border: 1px solid #eee;
}

.routine-note strong { color: #d4a843; }

/* ===== Salary Section ===== */
.salary-section { padding: 64px 20px; background: #fff; }

.salary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.salary-card {
  padding: 36px 24px;
  background: #fafaf7;
  border-radius: 14px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s;
}

.salary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
}

.salary-card.featured {
  background: #111;
  border: none;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 14px 44px rgba(0,0,0,0.15);
}

.salary-card.featured:hover { transform: scale(1.05) translateY(-4px); }

.salary-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0,0,0,0.04);
  color: #111;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.salary-card.featured .salary-badge {
  background: rgba(212,168,67,0.12);
  color: #d4a843;
}

.salary-amount {
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.salary-amount span { font-size: 1rem; font-weight: 600; }

.salary-date {
  font-size: 0.73rem;
  color: #aaa;
  margin-bottom: 18px;
}

.salary-card.featured .salary-date { color: rgba(255,255,255,0.4); }

.salary-bar {
  height: 3px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
}

.salary-card.featured .salary-bar { background: rgba(255,255,255,0.08); }

.salary-bar-fill {
  height: 100%;
  background: #111;
  border-radius: 2px;
}

.salary-card.featured .salary-bar-fill {
  background: #d4a843;
}

/* ===== DB System Section ===== */
.db-system-section { padding: 64px 20px; background: #fafaf7; }

.db-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.db-grid-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.03);
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eee;
}

.db-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.06);
}

.db-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

/* ===== Why Section ===== */
.why-section { padding: 64px 20px; background: #fff; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  padding: 36px 24px;
  background: #fafaf7;
  border-radius: 14px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.05);
  border-color: rgba(212,168,67,0.2);
}

.why-icon-emoji { font-size: 2.4rem; margin-bottom: 14px; }

.why-icon {
  width: 68px; height: 68px;
  background: #fafaf7;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.why-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; color: #111; }
.why-card p { font-size: 0.85rem; color: #888; line-height: 1.6; }

/* ===== Target Section ===== */
.target-section { padding: 88px 20px; background: #fafaf7; }

.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.target-card {
  text-align: center;
  padding: 36px 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.target-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(17,17,17,0.06);
  border-color: rgba(212,168,67,0.28);
}

.target-icon {
  position: relative;
  width: 74px; height: 74px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, #fffdf6, #fdf6e3) padding-box,
    conic-gradient(from 0deg, #f3d27e, #d4a843, #fff3cf, #c2922f, #f3d27e) border-box;
  border: 2px solid transparent;
  box-shadow:
    0 8px 22px rgba(212,168,67,0.22),
    0 0 0 6px rgba(212,168,67,0.06),
    inset 0 1px 2px rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease;
  /* note: no infinite box-shadow animation here — it forced constant repaints */
}

/* rotating shine sweep around the ring */
.target-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,0.95) 40deg, transparent 80deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: target-ring-spin 4s linear infinite;
  pointer-events: none;
}

@keyframes target-ring-spin {
  to { transform: rotate(360deg); }
}

.target-icon svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 3px 6px rgba(194,146,47,0.3));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.target-icon .ic-spark {
  animation: target-spark 2.4s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes target-spark {
  0%, 100% { opacity: 0.35; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.15); }
}

.target-card:hover .target-icon {
  transform: translateY(-2px) scale(1.08);
  box-shadow:
    0 14px 30px rgba(212,168,67,0.35),
    0 0 0 9px rgba(212,168,67,0.12),
    inset 0 1px 2px rgba(255,255,255,0.5);
  background:
    linear-gradient(145deg, #e8be5c, #c2922f) padding-box,
    conic-gradient(from 0deg, #f6dd9b, #d4a843, #fff3cf, #c2922f, #f6dd9b) border-box;
  animation: none;
}

.target-card:hover .target-icon svg {
  transform: scale(1.08);
  filter: drop-shadow(0 3px 8px rgba(122,86,18,0.45));
}

.target-card:hover .target-icon .ic-stroke { stroke: #fff !important; }
.target-card:hover .target-icon .ic-fill { fill: rgba(255,255,255,0.28) !important; }
.target-card:hover .target-icon .ic-spark { fill: #fff !important; }

@media (prefers-reduced-motion: reduce) {
  .target-icon, .target-icon::before, .target-icon .ic-spark { animation: none; }
}

/* Perf: isolate repeated cards so layout/paint work stays inside each card */
.target-card, .pillar-card, .pain-card, .testimonial-card,
.income-step, .live-stat-card, .faq-item, .bf-body,
.leader-benefit-mini, .leader-expertise li, .apply-benefits li {
  contain: layout paint style;
}

.target-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: #111; }
.target-card p { font-size: 0.8rem; color: #888; line-height: 1.5; }

/* ===== Team Section ===== */
.team-section { padding: 64px 20px; background: #fff; }

.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.team-photo img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.team-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.team-stat {
  text-align: center;
  padding: 28px 16px;
  background: #fafaf7;
  border-radius: 12px;
  border: 1px solid #eee;
}

.team-stat:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.04); }

.team-stat-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 2px;
}

.team-stat-label { font-size: 0.78rem; color: #999; font-weight: 500; }

/* ===== Process Section ===== */
.process-section {
  padding: 88px 20px;
  background: #111;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.process-section .section-title { color: #fff; }
.process-section .section-subtitle { color: rgba(255,255,255,0.35); }

.process-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}

.process-step {
  flex: 1;
  max-width: 210px;
  padding: 32px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s;
}

.process-step:hover {
  transform: translateY(-4px);
  background: rgba(212,168,67,0.04);
  border-color: rgba(212,168,67,0.12);
}

.step-number {
  font-size: 1.9rem;
  font-weight: 900;
  color: #d4a843;
  margin-bottom: 12px;
}

.step-content h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }

.step-content p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.process-arrow {
  color: rgba(212,168,67,0.2);
  flex-shrink: 0;
}

/* ---- Process stage: big visual on the left, step list on the right ---- */
.process-stage {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
}

.process-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0c0c0c;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* stacked layers — motion.js crossfades them with the active step */
.process-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.process-visual-img:first-child { opacity: 1; }

/* gold-number placeholder until a step gets its photo */
.process-visual-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(212,168,67,0.16), transparent 60%),
    linear-gradient(135deg, #181818, #0b0b0b);
}

.process-visual-ph span {
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(212,168,67,0.25);
  letter-spacing: 2px;
}

/* step list goes vertical next to the visual */
.process-stage .process-grid {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.process-stage .process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  text-align: left;
  max-width: none;
  padding: 20px 22px;
}

.process-stage .process-step .step-number {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.3;
  min-width: 40px;
}

.process-stage .process-step .process-step-img { display: none; }

@media (max-width: 1023px) {
  .process-stage { display: block; }
  .process-visual { display: none; }
  .process-stage .process-grid { display: flex; }
  .process-stage .process-step { flex-direction: column; gap: 10px; }
  .process-stage .process-step .process-step-img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
  }
}

/* Meritz-style sticky walkthrough (desktop): the section becomes a tall
   scroll track and the container sticks to the viewport while scroll
   progress walks through the steps. position:sticky (not GSAP pin/fixed)
   so the card can never detach from its own section. */
.process-section.process-pinned {
  height: calc(100vh + var(--process-steps, 4) * 70vh);
  padding: 0;
  /* sticky needs overflow:visible ancestors — any other value turns the
     section into the sticky's scrollport and the hold silently breaks */
  overflow: visible;
}

.process-section.process-pinned::after { display: none; }

.process-section.process-pinned .container {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 24px;
}

/* pinned mode: ONE unified card — photo left, the active step's text right.
   Scroll progress swaps photo and text together (GSAP crossfade). */
.process-pinned .process-stage {
  /* the sticky container is a flex column; auto side margins would otherwise
     shrink the stage to its (absolutely-positioned, so zero) content width */
  width: 100%;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45);
}

.process-pinned .process-visual {
  aspect-ratio: auto;
  min-height: 460px;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* text panel: steps stack on top of each other, only the active one shows */
.process-pinned .process-stage .process-grid {
  position: relative;
  min-height: 460px;
}

.process-pinned .process-stage .process-step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  padding: 48px 52px;
  background: none;
  border: none;
  transition: none; /* GSAP drives opacity/transform per frame */
}

.process-pinned .process-stage .process-step:hover {
  transform: none;
  background: none;
  border: none;
}

.process-pinned .process-stage .process-step .step-number {
  min-width: 0;
  margin: 0;
  font-size: 3.2rem;
  line-height: 1;
  color: rgba(212,168,67,0.4);
}

.process-pinned .process-stage .process-step.is-active .step-number { color: #f0c860; }

.process-pinned .process-stage .process-step .step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.process-pinned .process-stage .process-step .step-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 380px;
}

.process-progress {
  grid-column: 1 / -1; /* sits below both stage columns */
  max-width: 880px;
  width: 100%;
  margin: 40px auto 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.process-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0c860, #d4a843);
  transform: scaleX(0);
  transform-origin: left center;
}

/* ===== Apply Section ===== */
.apply-section { padding: 76px 20px; background: #fafaf7; }

/* one unified application card: dark info panel + white form */
.apply-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.apply-info {
  position: relative;
  background: radial-gradient(circle at 85% 0%, #2a2416 0%, #151513 45%, #0e0e10 100%);
  padding: 44px 38px;
  color: rgba(255,255,255,0.85);
  overflow: hidden;
}

.apply-info::after {
  content: '';
  position: absolute;
  bottom: -130px; left: -90px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.2), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.apply-info > * { position: relative; z-index: 1; }

.apply-info h2 {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  color: #fff;
}

.apply-info .highlight { color: #f0c860; }

.apply-info > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  line-height: 1.6;
}

.apply-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 26px;
}

.apply-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 13px;
}

.apply-benefits li svg { flex-shrink: 0; margin-top: 1px; }

.apply-alt-cta {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* closing copy carried over from the removed final-cta section */
.apply-closing {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.apply-closing-pre {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #d4a843;
  margin-bottom: 8px;
}

.apply-closing h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 8px;
}

.apply-closing-desc {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}

.apply-alt-cta p { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 12px; }

.btn-kakao-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: #FEE500;
  color: #3C1E1E;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 6px;
  transition: all 0.2s;
}

.btn-kakao-sm:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(254,229,0,0.2); }

.btn-phone-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-phone-sm:hover { transform: translateY(-2px); }

/* ===== Form ===== */
.apply-form-wrap {
  padding: 38px 36px 32px;
  background: #fff;
  position: relative;
}

/* two-column compact form grid */
.apply-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
}

.apply-form .form-group { margin-bottom: 0; }

/* 현재 직업 + 문의 내용 + 동의 + 제출은 풀폭 */
.apply-form .form-group:nth-of-type(7),
.apply-form .form-group:nth-of-type(8),
.apply-form .form-agreement,
.apply-form .btn-submit { grid-column: 1 / -1; }

.apply-form .form-agreement { margin-bottom: 0; }

@media (max-width: 640px) {
  .apply-form { grid-template-columns: 1fr; gap: 14px; }
  .apply-benefits { grid-template-columns: 1fr; }
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

.required { color: #d4a843; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: #fafaf7;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 0.88rem;
  font-family: inherit;
  color: #111;
  transition: all 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #ccc; }

.form-group textarea { resize: vertical; min-height: 76px; }

/* ---- selects: custom gold chevron + placeholder-grey until chosen ---- */
.form-group select,
.form-group select:focus {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b08b32' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-group select {
  padding-right: 42px;
  cursor: pointer;
  color: #9a9a92; /* matches input placeholders until a value is picked */
}
.form-group select.has-value { color: #111; }
.form-group select option { color: #111; }
.form-group select option[disabled] { color: #aaa; }
.form-group select:hover { border-color: rgba(212,168,67,0.55); background-color: #fff; }

.form-agreement { margin-bottom: 22px; }

.btn-submit .btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.8rem;
  color: #666;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkmark {
  width: 20px; height: 20px;
  border: 2px solid #ddd;
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}

.checkbox-label input:checked + .checkmark {
  background: #111;
  border-color: #111;
}

.checkbox-label input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 6px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* (no background override here — the gold-gradient CTA block below owns
   the submit button's colors; a dark hover bg made the text unreadable) */
.btn-submit:hover {
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.spinner { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn-loading { display: inline-flex; align-items: center; gap: 6px; }

/* ===== FAQ Section ===== */
.faq-section { padding: 88px 20px; background: #fff; }

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ece9df;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover { border-color: rgba(212,168,67,0.45); }

.faq-item.active {
  border-color: rgba(212,168,67,0.55);
  box-shadow: 0 14px 36px rgba(176,139,50,0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px 18px 22px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  text-align: left;
  transition: color 0.25s;
}

/* gold "Q." marker with a hanging indent (2-line questions align cleanly) */
.faq-question > span { position: relative; padding-left: 26px; }
.faq-question > span::before {
  content: 'Q.';
  position: absolute;
  left: 0; top: 0;
  font-weight: 800;
  color: #d4a843;
}

.faq-item.active .faq-question { font-weight: 700; }

/* chevron in a round chip that fills gold when open */
.faq-arrow {
  flex-shrink: 0;
  box-sizing: content-box;
  width: 18px; height: 18px;
  padding: 4px;
  border-radius: 50%;
  background: #f5f3ec;
  color: #b08b32;
  transition: transform 0.35s, background 0.3s, color 0.3s;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #f0c860, #d4a843);
  color: #1a1300;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 480px; }

.faq-answer p {
  position: relative;
  margin: 0 20px 0 22px;
  padding: 15px 2px 18px 28px;
  border-top: 1px dashed #ece9df;
  font-size: 0.86rem;
  color: #666;
  line-height: 1.75;
}

/* matching "A." marker on the answer */
.faq-answer p::before {
  content: 'A.';
  position: absolute;
  left: 0; top: 15px;
  font-weight: 800;
  color: #b08b32;
}

@media (max-width: 767px) {
  .faq-question { padding: 16px 16px 16px 18px; font-size: 0.86rem; }
  .faq-answer p { margin: 0 16px 0 18px; }
}

/* ===== Final CTA ===== */
.final-cta {
  padding: 88px 20px;
  text-align: center;
  background: #111;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta-pre {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(212,168,67,0.06);
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  color: #d4a843;
}

.final-cta h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
}

.final-cta p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
  position: relative;
}

.final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-final-kakao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  background: #FEE500;
  color: #3C1E1E;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-final-kakao:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

.btn-final-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  background: #d4a843;
  color: #111;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(212,168,67,0.2);
}

.btn-final-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,168,67,0.3); }

/* ===== Footer ===== */
.footer {
  padding: 28px 20px 16px;
  background: #080808;
  color: rgba(255,255,255,0.4);
}

/* row 1: brand line — logo + one-line description, nothing else */
.footer-top {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-logo {
  font-size: 0.98rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.footer-logo img {
  height: 64px;
  width: auto;
  display: inline-block;
}

.footer-text { font-size: 0.76rem; line-height: 1.5; }

/* row 2: one horizontal bar — page links + functional shortcuts */
.footer-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-menu a,
.footer-menu button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}

.footer-menu a:hover,
.footer-menu button:hover { color: #d4a843; }

.footer-menu-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

/* functional shortcuts: slightly brighter than links, but no point color */
.footer-menu .footer-func { color: rgba(255,255,255,0.7); font-weight: 600; }
.footer-menu .footer-func:hover { color: #fff; }

.footer-bottom {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 767px) {
  .footer { padding-top: 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 12px; }
  .footer-menu { gap: 8px 18px; }
  .footer-menu-divider { display: none; }
}

/* ===== Floating CTA ===== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 10px 14px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.04);
  gap: 8px;
  align-items: center;
}

.btn-floating {
  flex: 1;
  padding: 13px;
  background: #111;
  color: #fff;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 10px;
}

.btn-floating-phone, .btn-floating-kakao {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.btn-floating-phone { background: #f5f5f0; }
.btn-floating-kakao { background: #FEE500; }

/* ===== Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 44px 36px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  animation: modalIn 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

@keyframes modalIn {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-icon { margin-bottom: 18px; }

.modal-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.modal-content p {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 28px;
  line-height: 1.5;
}

.btn-modal-close {
  padding: 13px 44px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-modal-close:hover { background: #222; transform: translateY(-1px); }

/* ===== Live Activity Stats ===== */
.live-stats-section {
  padding: 72px 20px;
  background: linear-gradient(180deg, #fafaf7 0%, #fff 100%);
  border-bottom: 1px solid #eee;
}

.live-stats-header {
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239,68,68,0.7);
  animation: livePulse 1.8s infinite;
  margin-right: 6px;
  vertical-align: middle;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(239,68,68,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

.live-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ef4444;
  margin-bottom: 4px;
}

.live-stats-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.6px;
  margin-top: 4px;
}

.live-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.live-stat-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.live-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4a843, #f0c860);
  opacity: 0;
  transition: opacity 0.3s;
}

.live-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-color: rgba(212,168,67,0.3);
}

.live-stat-card:hover::before { opacity: 1; }

.live-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #111;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.live-stat-num em {
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  color: #666;
}

.live-stat-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.live-stat-sub {
  font-size: 0.74rem;
  color: #999;
  line-height: 1.4;
}

.live-stats-note {
  text-align: center;
  font-size: 0.74rem;
  color: #bbb;
  margin-top: 18px;
}

/* ===== Remote Work Showcase ===== */
.remote-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #fafaf6 0%, #fff 100%);
  position: relative;
}

.remote-section::before {
  content: '';
  position: absolute;
  top: 10%; right: -8%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.remote-section::after {
  content: '';
  position: absolute;
  bottom: 5%; left: -6%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.remote-section > .container { position: relative; z-index: 1; }

.remote-header {
  text-align: center;
  margin-bottom: 40px;
}

.remote-tag {
  display: inline-block;
  padding: 7px 18px;
  background: linear-gradient(135deg, #ecc965, #d4a843);
  color: #1a1300;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(212,168,67,0.35);
}

.remote-showcase {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.remote-main,
.remote-side-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf6 0%, #ffffff 70%);
  border: 1px solid rgba(212,168,67,0.18);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, border-color 0.35s;
}

.remote-main {
  box-shadow: 0 18px 44px rgba(31,21,5,0.07), 0 2px 8px rgba(0,0,0,0.03);
}

.remote-side-item {
  box-shadow: 0 12px 32px rgba(31,21,5,0.05), 0 2px 6px rgba(0,0,0,0.03);
}

.remote-main:hover,
.remote-side-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,67,0.4);
  box-shadow: 0 24px 56px rgba(31,21,5,0.12), 0 4px 12px rgba(0,0,0,0.04);
}

.remote-img-wrap {
  position: relative;
  width: 100%;
  background: transparent;
  overflow: hidden;
}

.remote-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.06) 100%);
}

.remote-img-wrap.remote-img-wide {
  aspect-ratio: 16 / 9;
}

.remote-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

.remote-main:hover .remote-img-wrap img,
.remote-side-item:hover .remote-img-wrap img {
  transform: scale(1.04);
}

.remote-main .remote-img-wrap {
  flex: 1;
  aspect-ratio: auto;
  min-height: 320px;
}

.remote-main-caption,
.remote-side-caption {
  padding: 18px 22px 20px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.remote-main-caption::before,
.remote-side-caption::before {
  content: '';
  position: absolute;
  top: 0; left: 22px; right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,168,67,0.25) 20%, rgba(212,168,67,0.25) 80%, transparent 100%);
}

.remote-main-caption strong,
.remote-side-caption strong {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.remote-main-caption strong::before,
.remote-side-caption strong::before {
  content: '';
  width: 3px;
  height: 14px;
  background: linear-gradient(180deg, #f0c860 0%, #d4a843 100%);
  border-radius: 2px;
  flex-shrink: 0;
}

.remote-main-caption span,
.remote-side-caption span {
  font-size: 0.8rem;
  color: #888;
  padding-left: 11px;
  line-height: 1.5;
}

.remote-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.remote-side-caption {
  padding: 14px 18px 16px;
}

.remote-side-caption::before {
  left: 18px; right: 18px;
}

.remote-side-caption strong {
  font-size: 0.9rem;
}

.remote-side-caption span {
  font-size: 0.76rem;
}

/* ===== Income Highlight ===== */
.income-highlight {
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(26,26,28,0.96) 0%, rgba(17,17,19,0.98) 100%) padding-box,
    conic-gradient(from 130deg, rgba(212,168,67,0.7), rgba(212,168,67,0.08), #f0c860, rgba(212,168,67,0.1), rgba(212,168,67,0.7)) border-box;
  border: 1.5px solid transparent;
  color: #fff;
  border-radius: 18px;
  padding: 32px 36px;
  margin: 0 auto 40px;
  max-width: 880px;
  gap: 36px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.5), 0 0 44px rgba(212,168,67,0.1);
  position: relative;
  overflow: hidden;
}

.income-highlight::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.income-highlight-left { position: relative; z-index: 1; flex-shrink: 0; }

.ih-tag {
  display: inline-block;
  padding: 5px 14px;
  background: linear-gradient(135deg, #ecc965, #d4a843);
  color: #1a1300;
  border-radius: 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(212,168,67,0.3);
}

.ih-amount {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1;
}

.ih-amount strong {
  font-size: 3rem;
  font-weight: 900;
  color: #f0c860;
  letter-spacing: -1px;
  margin-right: 2px;
  text-shadow: 0 0 24px rgba(240,200,96,0.35);
}

.ih-meta {
  margin-top: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.income-highlight-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.08);
}

.income-highlight-right { flex: 1; position: relative; z-index: 1; }

.income-highlight-right ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.income-highlight-right li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

.income-highlight-right li strong {
  display: block;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 2px;
}

/* ===== Testimonial Filter & Tags ===== */
.testimonial-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 6px 16px;
  background: #f5f5f0;
  border: 1px solid #ececec;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover { border-color: #d4a843; color: #111; }

.filter-chip.active {
  background: #111;
  color: #d4a843;
  border-color: #111;
}

.testimonial-avatar.avatar-sidejob {
  background: linear-gradient(135deg, #d4a843, #b08b32);
  color: #fff;
}

.testimonial-avatar.avatar-newbie {
  background: linear-gradient(135deg, #4a9b7f, #2d6a4f);
  color: #fff;
}

.testimonial-avatar.avatar-career {
  background: linear-gradient(135deg, #1f1f1f, #111);
  color: #d4a843;
}

.testimonial-tags {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.testimonial-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #9a7a2e;
  background: rgba(212,168,67,0.07);
  padding: 3px 9px;
  border-radius: 5px;
}

/* ===== Leader Benefit Cards (replacing photo) ===== */
.leader-benefit-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.leader-benefit-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 48px rgba(0,0,0,0.4);
  background: #1a1a1a;
}

.leader-benefit-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.leader-benefit-card .lb-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 70%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
}

.lb-tag {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #ecc965, #d4a843);
  color: #1a1300;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  width: fit-content;
  margin-bottom: 4px;
}

.lb-overlay strong {
  font-size: 0.95rem;
  font-weight: 800;
}

.lb-desc {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.8);
}

.leader-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.leader-benefit-mini {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 15px 14px 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.leader-benefit-mini:hover {
  border-color: rgba(212,168,67,0.4);
  background: rgba(212,168,67,0.07);
}

.lbm-icon {
  margin-bottom: 4px;
}

.leader-benefit-mini strong {
  font-size: 0.92rem;
  color: #fff;
  font-weight: 800;
}

.leader-benefit-mini span {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.62);
}

/* ===== Animations =====
 * Scroll reveals are driven by GSAP (js/motion.js), which applies the
 * hidden start-state at runtime. We intentionally do NOT hide [data-aos]
 * elements in CSS so the page stays fully visible if GSAP fails to load. */
[data-aos].visible { opacity: 1; transform: none; }

/* ===== Social Proof Toast ===== */
.toast-notification {
  position: fixed;
  bottom: 80px; left: 20px;
  z-index: 998;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  animation: toastIn 0.4s ease;
  max-width: 300px;
}

.toast-notification.show { display: flex; }

@keyframes toastIn {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast-icon { flex-shrink: 0; }
.toast-text { font-size: 0.78rem; color: #666; line-height: 1.4; }
.toast-text strong { color: #111; }
.toast-text span { color: #bbb; font-size: 0.7rem; }

/* ===== Scroll animations ===== */
/* [data-scroll] reveals are also handled by GSAP; left un-hidden in CSS
 * for graceful degradation (see note above). */
[data-scroll].visible { opacity: 1; transform: translate(0,0); }

/* ===== Responsive ===== */
@media (max-width: 1199px) {
  .hero-split-inner { grid-template-columns: 1fr; gap: 32px; min-height: auto; padding-top: 100px; padding-bottom: 48px; }
  .hero-text-side .hero-title { font-size: 2.2rem; text-align: center; }
  .hero-text-side .hero-subtitle { text-align: center; }
  .hero-text-side .hero-badge { text-align: center; display: block; }
  .hero-cta-group { justify-content: center; }
  .hero-image-side { min-height: 280px; }
  .hero-card-stack { max-width: 320px; }
  .hero-float-card.card-2 { transform: translateX(20px); }
  .hero-video-frame { max-width: 380px; aspect-ratio: 4 / 5; }
  .hero-video-overlay-card { padding: 10px 14px; }
  .hero-video-overlay-card .hfc-text strong { font-size: 0.78rem; }
  .hero-video-overlay-card .hfc-text span { font-size: 0.66rem; }
  .hero.hero-fullvideo { min-height: 92vh; }
  .hero.hero-fullvideo .hero-title { font-size: 2.4rem; }
  .hero.hero-fullvideo .hero-subtitle { font-size: 0.98rem; }
  .hero-fullvideo-inner { padding: 100px 20px 80px; }
  .hero.hero-fullvideo .hero-quick-stats { gap: 16px; padding: 16px 24px; }
  .hero.hero-fullvideo .hero-stat-item strong { font-size: 1.3rem; }
  .hero-quick-stats { justify-content: center; }
  .trust-grid { gap: 20px; }
  .pain-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .pillars-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .hero-title { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .youtube-grid { grid-template-columns: 1fr; }
  .testimonial-filter { margin-bottom: 20px; }
  .company-content { grid-template-columns: 1fr; }
  .leader-wrapper { grid-template-columns: 1fr; gap: 28px; }
  .leader-photo { max-width: 300px; margin: 0 auto; }
  .channels-grid { grid-template-columns: 1fr; }
  .salary-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .salary-card.featured { transform: none; }
  .why-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .target-grid { grid-template-columns: repeat(2, 1fr); }
  .live-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .live-stats-title { font-size: 1.3rem; }
  .remote-showcase { grid-template-columns: 1fr; max-width: 560px; }
  .remote-side { grid-template-rows: auto auto; }
  .remote-side-item .remote-img-wrap { aspect-ratio: 16 / 9; }
  .income-highlight { flex-direction: column; gap: 20px; padding: 26px 22px; text-align: center; }
  .income-highlight-divider { width: 100%; height: 1px; }
  .income-highlight-right ul { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .ih-amount strong { font-size: 2rem; }
  .leader-benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .team-content { grid-template-columns: 1fr; }
  .process-grid { flex-direction: column; gap: 10px; }
  .process-step { max-width: 100%; }
  .process-arrow { transform: rotate(90deg); }
  .apply-wrapper { grid-template-columns: 1fr; gap: 0; }
  .apply-info { padding: 36px 28px; }
  .apply-form-wrap { padding: 32px 28px 28px; }
  .db-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 767px) {
  .hero.hero-split { min-height: auto; }
  .hero-split-inner { padding-top: 80px; padding-bottom: 36px; }
  .hero-text-side .hero-title { font-size: 1.8rem; }
  .hero-quick-stats { flex-direction: column; gap: 10px; padding: 16px; }
  .hero-stat-divider { width: 100%; height: 1px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn-hero-cta,
  .hero-cta-group .btn-hero-sub { width: 100%; text-align: center; }
  .hero-image-side { min-height: 240px; }
  .hero-float-card { padding: 16px 20px; }
  .hero-video-frame { max-width: 320px; aspect-ratio: 4 / 5; }
  .hero-video-overlay-card.card-float-a { bottom: 14px; left: 12px; }
  .hero-video-overlay-card.card-float-b { top: 56px; right: 12px; }
  .hero-video-overlay-card .hfc-icon { width: 32px; height: 32px; }
  .hero-video-badge { font-size: 0.66rem; padding: 5px 10px; }
  .hero.hero-fullvideo { min-height: 88vh; }
  .hero.hero-fullvideo .hero-title { font-size: 1.95rem; letter-spacing: -1px; }
  .hero.hero-fullvideo .hero-subtitle { font-size: 0.9rem; }
  .hero-fullvideo-inner { padding: 90px 18px 80px; }
  .hero.hero-fullvideo .hero-cta-group { flex-direction: column; gap: 10px; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; margin-bottom: 32px; }
  .hero.hero-fullvideo .btn-hero-cta,
  .hero.hero-fullvideo .btn-hero-sub { width: 100%; justify-content: center; padding: 15px 24px; }
  .hero.hero-fullvideo .hero-quick-stats { flex-direction: row; gap: 10px; padding: 14px 16px; width: 100%; max-width: 360px; }
  .hero.hero-fullvideo .hero-stat-item strong { font-size: 1.05rem; }
  .hero.hero-fullvideo .hero-stat-item span { font-size: 0.66rem; }
  .hero-live-badge { font-size: 0.7rem; letter-spacing: 2px; gap: 10px; }
  .hero-live-badge::before, .hero-live-badge::after { width: 28px; }
  .hero-scroll-indicator { display: none; }
  .hero-float-card.card-2 { transform: translateX(15px); }
  .hero-float-card.card-3 { transform: translateX(5px); }
  .trust-grid { gap: 14px; }
  .trust-item { font-size: 0.75rem; }
  .trust-item svg { width: 18px; height: 18px; }
  .pain-section { padding: 56px 20px; }
  .pain-card { padding: 24px 22px; }
  .pillars-section { padding: 56px 20px; }
  .pillar-card { padding: 28px 22px; }
  .income-section { padding: 56px 20px; }
  .income-step { padding: 22px 24px; }
  .income-amount { font-size: 1.3rem; }
  .hero { min-height: auto; padding: 90px 20px 56px; }
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 0.88rem; }
  .btn-hero-cta { padding: 15px 34px; font-size: 0.95rem; }
  .section-title { font-size: 1.45rem; }
  .sub-hero { padding: 44px 20px 40px; }
  .sub-hero-title { font-size: 1.35rem; }
  .stats { padding: 40px 20px; }
  .stat-number { font-size: 1.8rem; }
  .target-grid { gap: 10px; }
  .apply-form-wrap { padding: 24px 20px; }
  .final-cta h2 { font-size: 1.45rem; }
  .floating-cta { display: flex; }
  .footer { padding-bottom: 76px; }
  .top-phone, .top-kakao { display: none; }
  .youtube-thumb img { aspect-ratio: 16 / 9; }
  .leader-name { font-size: 1.4rem; }
  .salary-amount { font-size: 2.2rem; }
  .btn-kakao, .btn-phone-cta { display: block; text-align: center; margin: 0 0 8px; }
  .leader-stats span { font-size: 0.72rem; }
  .apply-info h2 { font-size: 1.5rem; }
  .compare-table { font-size: 0.78rem; }
  .routine-timeline { --time-col: 48px; --col-gap: 12px; --line-h: 1.45rem; }
  .routine-time { font-size: 0.8rem; }
  .routine-content h4 { font-size: 0.88rem; }
  .routine-content p { font-size: 0.78rem; }
  .compare-col { padding: 10px 8px; font-size: 0.73rem; }
  .badge-bad, .badge-good { font-size: 0.7rem; padding: 3px 6px; }
  .toast-notification { bottom: 68px; left: 10px; right: 10px; max-width: none; }
  .live-stats-section { padding: 56px 20px; }
  .live-stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .live-stat-card { padding: 20px 14px; }
  .live-stat-num { font-size: 1.9rem; }
  .live-stat-label { font-size: 0.8rem; }
  .live-stat-sub { font-size: 0.68rem; }
  .remote-section { padding: 56px 20px; }
  .remote-main .remote-img-wrap,
  .remote-side-item .remote-img-wrap { aspect-ratio: 16 / 9; }
  .remote-main-caption { padding: 12px 14px 14px; }
  .remote-main-caption strong { font-size: 0.95rem; }
  .income-highlight { margin-bottom: 28px; }
  .ih-amount strong { font-size: 1.8rem; }
  .income-highlight-right ul { grid-template-columns: 1fr 1fr 1fr; }
  .income-highlight-right li { font-size: 0.74rem; }
  .income-highlight-right li strong { font-size: 0.9rem; }
  .leader-benefit-grid { grid-template-columns: 1fr 1fr; }
  .filter-chip { font-size: 0.72rem; padding: 5px 12px; }
}

/* ===== 1-Minute Experience Simulator ===== */
.exp-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exp-modal[hidden] { display: none; }
/* solid dim, NO backdrop-filter: blurring the live hero video behind the
   overlay re-composites the whole page every frame (visible jank) */
.exp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.78);
}

/* freeze the decorative hero animations while the experience modal is up */
body.exp-open .hero-particles span,
body.exp-open .hero-light-sweep,
body.exp-open .hero-scroll-indicator span {
  animation-play-state: paused;
}
.exp-dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 88vh;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: expIn 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
@keyframes expIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.exp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 10px;
}
.exp-step-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: #b08b32;
  letter-spacing: 0.3px;
}
.exp-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  color: #999;
  background: #f3f3ef;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.exp-close:hover { background: #e8e8e2; color: #111; }
.exp-progress { height: 4px; background: #eee; margin: 0 18px; border-radius: 4px; overflow: hidden; }
.exp-progress-bar {
  height: 100%;
  width: 16%;
  background: linear-gradient(90deg, #ecc965, #d4a843);
  border-radius: 4px;
  transition: width 0.4s ease;
}
.exp-body { padding: 22px 22px 26px; overflow-y: auto; }

.exp-intro, .exp-success, .exp-summary, .exp-customer { text-align: center; }
.exp-badge-round {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(212,168,67,0.14);
  color: #b08b32;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 6px auto 16px;
}
.exp-badge-round.green { background: rgba(45,106,79,0.12); }
.exp-body h3 { font-size: 1.3rem; font-weight: 800; line-height: 1.35; margin-bottom: 12px; color: #111; }
.exp-body h3 b { color: #b08b32; }
.exp-body h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 14px; color: #111; }
.exp-body p { font-size: 0.88rem; color: #666; line-height: 1.65; }
.exp-body p b { color: #111; }
.exp-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: #8a7c55;
  background: #faf8f1;
  border: 1px solid #f0ebda;
  border-radius: 10px;
  padding: 11px 13px;
  line-height: 1.55;
}
.exp-note b { color: #b08b32; }
.exp-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.exp-btn {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}
.exp-btn.primary { background: #111; color: #fff; }
.exp-btn.primary:hover { background: #d4a843; color: #111; }
.exp-btn.ghost { background: #f5f5f0; color: #555; }
.exp-btn.ghost:hover { background: #ececE4; color: #111; }

/* Kakao-style chat */
.exp-kakao-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700; color: #3b2f2f;
  background: #fee500;
  border-radius: 12px 12px 0 0;
  padding: 10px 14px;
}
.exp-k-logo {
  width: 20px; height: 20px; border-radius: 6px;
  background: #3b2f2f; color: #fee500;
  font-weight: 900; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}
.exp-chat {
  background: #b2c7da;
  padding: 16px 14px;
  border-radius: 0 0 12px 12px;
  display: flex; flex-direction: column; gap: 10px;
}
.exp-chat.exp-chat-talk { border-radius: 14px; }
.exp-bubble {
  max-width: 84%;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.55;
}
.exp-bubble.bot, .exp-bubble.left {
  background: #fff; color: #222;
  align-self: flex-start;
  border-top-left-radius: 4px;
}
.exp-bubble.me {
  background: #fee500; color: #3b2f2f;
  align-self: flex-end;
  border-top-right-radius: 4px;
}
.exp-bubble strong { color: #111; }
.exp-muted { color: #999; font-size: 0.8rem; }

/* Customer card */
.exp-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a843, #b08b32);
  color: #fff; font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.exp-info-list {
  text-align: left;
  margin: 16px 0 4px;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
}
.exp-info-list li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 11px 14px;
  font-size: 0.82rem;
  border-bottom: 1px solid #f3f3ef;
}
.exp-info-list li:last-child { border-bottom: none; }
.exp-info-list li span { color: #999; }
.exp-info-list li b { color: #222; font-weight: 700; text-align: right; }

/* Summary */
.exp-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}
.exp-summary-grid > div {
  background: #faf8f1;
  border: 1px solid #f0ebda;
  border-radius: 12px;
  padding: 14px 6px;
}
.exp-summary-grid b { display: block; font-size: 1rem; font-weight: 800; color: #b08b32; }
.exp-summary-grid span { font-size: 0.72rem; color: #888; }

@media (max-width: 1199px) {
  .btn-top-exp .exp-full { display: none; }
  .btn-top-exp { padding: 0 13px; }
}
@media (max-width: 767px) {
  .exp-modal { padding: 12px; align-items: flex-end; }
  .exp-dialog { max-width: 100%; max-height: 92vh; border-radius: 18px; }
  .exp-body { padding: 20px 18px 24px; }
  .exp-body h3 { font-size: 1.18rem; }
  .btn-top-exp { font-size: 0.74rem; padding: 7px 11px; gap: 5px; }
}

/* ===== GSAP motion support ===== */
/* Line-mask reveal for hero title: inner slides up inside a clipping line */
.m-line { display: block; overflow: hidden; padding: 0.04em 0; }
.m-line-in { display: block; }

/* per-letter split (hero cinematic reveal) — no will-change: promoting
   dozens of glyphs to their own GPU layers for the whole session costs more
   than the one-time intro tween saves */
.m-word { display: inline-block; white-space: nowrap; }
.m-char { display: inline-block; }
/* gradient must live on each letter: an animated child span would otherwise
   escape the parent's background-clip:text */
.hero.hero-fullvideo .hero-title .highlight .m-char {
  background: linear-gradient(135deg, #f0c860 0%, #d4a843 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 3D tilt cards: GSAP owns the transform, so disable CSS transform transitions
 * (keep shadow/border transitions). transform-style enables 3D children depth. */
.m-tilt {
  transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
  transform-style: preserve-3d;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .m-line, .m-line-in { overflow: visible; }
}

/* ===== Eye-catching gradient accents (gold family) ===== */
@keyframes goldFlow {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Gradient text helper */
.grad-text,
.highlight {
  background: linear-gradient(135deg, #f0c860 0%, #d4a843 55%, #e0972b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Big live-stats numbers: vibrant, varied warm gradients (reference feel).
 * Applied to the inline number/unit children for reliable text clipping. */
.live-stat-num .counter,
.live-stat-num em {
  background: linear-gradient(135deg, #5b8def 0%, #7c5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* Vibrant, distinct hue per stat (reference look): blue · purple · orange · teal */
.live-stat-card:nth-child(1) .live-stat-num .counter,
.live-stat-card:nth-child(1) .live-stat-num em { background-image: linear-gradient(135deg, #4f8cff, #7c5cff); }
.live-stat-card:nth-child(2) .live-stat-num .counter,
.live-stat-card:nth-child(2) .live-stat-num em { background-image: linear-gradient(135deg, #a855f7, #6366f1); }
.live-stat-card:nth-child(3) .live-stat-num .counter,
.live-stat-card:nth-child(3) .live-stat-num em { background-image: linear-gradient(135deg, #ff9d2e, #ff5e62); }
.live-stat-card:nth-child(4) .live-stat-num .counter,
.live-stat-card:nth-child(4) .live-stat-num em { background-image: linear-gradient(135deg, #10b981, #06b6d4); }

/* Brighter, lighter stats section + premium card lift */
.live-stats-section {
  background: linear-gradient(180deg, #fffdf6 0%, #fbf7ec 45%, #ffffff 100%);
}
.live-stat-card {
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.live-stat-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #4f8cff, #7c5cff, #ff5e62, #ff9d2e, #10b981);
  opacity: 0;
  transition: opacity 0.3s;
}
.live-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(124,92,255,0.18);
  border-color: rgba(124,92,255,0.3);
}
.live-stat-card:hover::before { opacity: 1; }

/* Hero quick-stat numbers + income amount: brighter, punchier gradient pop */
.hero-stat-item strong {
  background: linear-gradient(135deg, #ffe16a 0%, #ffae3d 50%, #ff8a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ih-amount strong {
  background: linear-gradient(135deg, #ffe16a 0%, #ffae3d 50%, #ff8a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Primary conversion CTAs: flowing gold gradient + glow */
.hero.hero-fullvideo .btn-hero-cta,
.btn-final-cta,
.btn-submit {
  background: linear-gradient(120deg, #f7d98f 0%, #e0a02e 35%, #d4a843 65%, #f0c860 100%);
  background-size: 220% 220%;
  animation: goldFlow 5s ease infinite;
  color: #1a1300;
  border: none;
  box-shadow: 0 12px 34px rgba(212,168,67,0.4);
}
.hero.hero-fullvideo .btn-hero-cta:hover,
.btn-final-cta:hover,
.btn-submit:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(212,168,67,0.55);
}
@media (prefers-reduced-motion: reduce) {
  .hero.hero-fullvideo .btn-hero-cta,
  .btn-final-cta,
  .btn-submit { animation: none; }
}

/* ===== New content sections: benefit / copy / commission ===== */
.benefit-section { padding: 88px 20px; background: linear-gradient(180deg, #ffffff 0%, #fbf7ec 100%); }
.benefit-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
.benefit-list { display: flex; flex-direction: column; gap: 22px; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; }
.benefit-ic {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4f8cff, #7c5cff);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(79,140,255,0.35);
}
.benefit-body h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 6px; color: #111; }
.benefit-body p { font-size: 0.92rem; color: #666; line-height: 1.65; }
.benefit-body b { color: #c8862e; font-weight: 800; }
.benefit-photo img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

/* Benefit: sticky chapter aside + numbered photo-card flow (parking ch.4 style) */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.benefit-sticky {
  position: sticky;
  top: 96px;
  align-self: start;
  padding-top: 8px;
}

.benefit-sticky .section-tag { margin: 0 0 18px; }
.benefit-sticky .section-title { text-align: left; font-size: 2.05rem; line-height: 1.25; margin-bottom: 14px; }
.benefit-sticky .section-subtitle { text-align: left; margin-bottom: 28px; line-height: 1.6; }

.benefit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  color: #c8862e;
  transition: all 0.25s;
}

.benefit-link:hover { color: #d4a843; transform: translateX(4px); }

.benefit-flow {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.benefit-flow-step {
  display: flex;
  gap: 22px;
  padding-bottom: 52px;
  position: relative;
}

.benefit-flow-step:last-child { padding-bottom: 0; }

.bf-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}

.bf-num {
  width: 46px; height: 46px;
  background: #111;
  color: #f0c860;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.bf-bar {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, rgba(212,168,67,0.55), #eee);
  margin-top: 12px;
  margin-bottom: -12px;
}

.bf-body {
  flex: 1;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0,0,0,0.05);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.benefit-flow-step:hover .bf-body {
  transform: translateX(6px);
  border-color: rgba(212,168,67,0.4);
  box-shadow: 0 14px 36px rgba(212,168,67,0.14);
}

.bf-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f5f5f0;
}

.bf-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.benefit-flow-step:hover .bf-photo img { transform: scale(1.06); }

.bf-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.45) 100%);
  pointer-events: none;
}

.bf-tag {
  position: absolute;
  bottom: 12px; left: 14px;
  z-index: 1;
  padding: 4px 12px;
  background: linear-gradient(135deg, #ecc965, #d4a843);
  color: #1a1300;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.bf-text { padding: 20px 24px 22px; }

.bf-text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.bf-text p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
}

.bf-text b { color: #c8862e; font-weight: 800; }

@media (max-width: 1023px) {
  .benefit-grid { grid-template-columns: 1fr; gap: 36px; }
  .benefit-sticky { position: static; }
}

@media (max-width: 640px) {
  .benefit-flow-step { gap: 14px; padding-bottom: 36px; }
  .bf-mark { width: 36px; }
  .bf-num { width: 36px; height: 36px; font-size: 0.78rem; }
  .bf-text { padding: 16px 18px 18px; }
}

/* (legacy) Benefit: content + photo pairs revealed one by one on scroll */
.benefit-rows {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 1000px;
  margin: 48px auto 0;
}
.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.benefit-row.reverse .benefit-row-text { order: 2; }
.benefit-row.reverse .benefit-row-photo { order: 1; }
.benefit-step {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #ecc965, #d4a843);
  color: #1a1300;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 14px;
  box-shadow: 0 6px 14px rgba(212,168,67,0.3);
}
.benefit-row-text h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 10px; color: #111; letter-spacing: -0.5px; }
.benefit-row-text p { font-size: 0.95rem; color: #666; line-height: 1.7; }
.benefit-row-text b { color: #c8862e; font-weight: 800; }
.benefit-row-photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,0,0,0.05);
}

.copy-section { padding: 88px 20px; background: #fff; }
.copy-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(212,168,67,0.1);
  color: #c8862e;
  margin-right: 6px;
  vertical-align: -7px;
}

/* ===== EASY WORK — center stage: big CRM shot with floating feature cards ===== */
.easy-stage { text-align: center; }
/* the visual's own top margin handles the gap below the subtitle */
.easy-stage .section-subtitle { margin-bottom: 0; }
.easy-stage-visual {
  position: relative;
  max-width: 980px;
  margin: 52px auto 0;
  text-align: left;
}
/* the 1-min experience player sits center stage between the two cards */
.easy-stage-visual .exp-sc-frame {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 auto;
}
.easy-float-card {
  z-index: 2;
  position: absolute;
  width: 300px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #efeee8;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 22px 54px rgba(0,0,0,0.16);
  transition: box-shadow 0.3s;
}
.easy-float-card:hover { box-shadow: 0 28px 64px rgba(0,0,0,0.22); }
.easy-float-card h3 { font-size: 1rem; font-weight: 800; color: #111; margin-bottom: 8px; }
.easy-float-card p { font-size: 0.86rem; color: #666; line-height: 1.6; }
.efc-left { top: 44px; left: 0; }
.efc-right { bottom: 44px; right: 0; }

@media (max-width: 1099px) {
  /* not enough side room for the overhang — cards drop below the shot */
  .easy-stage-visual { max-width: 640px; }
  .easy-float-card { position: static; width: auto; margin-top: 14px; }
}

.commission-section { padding: 88px 20px; background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%); }
.commission-chart { max-width: 820px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 18px; }
.commission-row { display: flex; align-items: center; gap: 16px; }
.commission-label { width: 132px; flex-shrink: 0; font-size: 0.9rem; font-weight: 700; color: #333; text-align: right; }
.commission-track { flex: 1; background: #eef0f4; border-radius: 12px; height: 46px; overflow: hidden; }
.commission-bar-fill {
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(90deg, #4f8cff, #7c5cff);
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 16px;
  box-shadow: 0 8px 22px rgba(79,140,255,0.32);
}
.commission-bar-fill span { color: #fff; font-size: 0.84rem; font-weight: 700; white-space: nowrap; }
.commission-bar-fill.alt { background: #c9ced8; justify-content: center; box-shadow: none; }
.commission-bar-fill.alt span { color: #5b6270; }
.commission-note { text-align: center; margin-top: 36px; font-size: 0.9rem; color: #888; line-height: 1.7; }
.commission-note b { color: #4f8cff; font-weight: 800; }

@media (max-width: 1199px) {
  .benefit-wrap { grid-template-columns: 1fr; gap: 32px; }
  .benefit-photo { max-width: 480px; margin: 0 auto; }
  .benefit-row { grid-template-columns: 1fr; gap: 20px; }
  .benefit-row.reverse .benefit-row-text { order: 1; }
  .benefit-row.reverse .benefit-row-photo { order: 2; }
  .benefit-row-photo { max-width: 520px; }
  .benefit-rows { gap: 48px; }
}
@media (max-width: 767px) {
  .benefit-section, .copy-section, .commission-section { padding: 56px 18px; }
  .commission-row { flex-direction: column; align-items: stretch; gap: 6px; }
  .commission-label { width: auto; text-align: left; font-size: 0.82rem; }
  .commission-track { height: 38px; }
  .commission-bar-fill span { font-size: 0.74rem; }
}

/* ===== Mobile navigation (hamburger) ===== */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  border-radius: 10px;
  background: transparent;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 24px; height: 2px; border-radius: 2px;
  background: #111;
  transition: transform 0.3s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid #efefe9;
  box-shadow: 0 14px 34px rgba(0,0,0,0.1);
  padding: 10px 18px 22px;
  display: flex; flex-direction: column;
  gap: 2px;
  transform: translateY(-14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1001;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.mobile-nav.open { opacity: 1; transform: translateY(0); visibility: visible; }
.mobile-nav a,
.mobile-nav .mobile-nav-exp {
  display: block; width: 100%;
  padding: 15px 8px;
  font-size: 1rem; font-weight: 600;
  color: #1a1a1a;
  border-bottom: 1px solid #f3f3ef;
  text-align: left;
  background: none;
}
.mobile-nav .mobile-nav-exp { color: #b08b32; font-weight: 700; }
.mobile-nav .mobile-nav-cta {
  margin-top: 12px;
  border: none; border-radius: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(120deg, #f7d98f, #e0a02e, #d4a843);
  color: #1a1300; font-weight: 800;
  padding: 16px;
  border-bottom: none;
}
.mobile-nav-backdrop {
  position: fixed; inset: 64px 0 0 0;
  background: rgba(0,0,0,0.35);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 1000;
}
.mobile-nav-backdrop.open { opacity: 1; visibility: visible; }

/* ===== Tablet (768–1199): keep header buttons, no hamburger ===== */
@media (min-width: 768px) and (max-width: 1199px) {
  .nav-toggle { display: none; }
  .mobile-nav, .mobile-nav-backdrop { display: none; }
}

/* ===== Mobile (≤767): unified gutters, touch targets, hamburger ===== */
@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .top-actions { display: none; }

  /* Single source of side padding (≈18px) — avoids doubled section+container padding */
  .container { padding-left: 18px; padding-right: 18px; }
  .trust-section, .live-stats-section, .pain-section, .benefit-section, .target-section,
  .copy-section, .income-section, .commission-section, .testimonials-section,
  .process-section, .routine-section, .leader-section, .faq-section, .apply-section,
  .final-cta { padding-left: 0; padding-right: 0; }

  /* Touch-friendly buttons + spacing */
  .btn-hero-cta, .btn-hero-sub, .btn-final-cta, .btn-final-kakao,
  .btn-submit, .btn-top-cta, .btn-top-exp, .mobile-nav-cta { min-height: 52px; }
  .final-cta-buttons { flex-direction: column; gap: 10px; }
  .final-cta-buttons a { width: 100%; text-align: center; }
  .apply-alt-cta .btn-kakao-sm, .apply-alt-cta .btn-phone-sm { display: block; text-align: center; margin: 0 0 8px; min-height: 48px; line-height: 1.4; }

  /* Images never overflow; show full image (no crop), proportional to width */
  img { max-width: 100%; height: auto; }
  .benefit-photo img { height: auto; object-fit: contain; max-height: none; }
}

/* ===== Ultra-narrow (Galaxy Fold folded ≈280px) ===== */
@media (max-width: 360px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .hero.hero-fullvideo .hero-title { font-size: 1.65rem; }
  .section-title { font-size: 1.3rem; }
  .live-stat-num { font-size: 1.55rem; }
  .logo img { height: 40px; }
  .commission-bar-fill span { font-size: 0.68rem; }
}

/* ===== Mobile form usability ===== */
@media (max-width: 767px) {
  .apply-form input,
  .apply-form select,
  .apply-form textarea {
    font-size: 16px;       /* prevents iOS auto-zoom on focus */
    min-height: 48px;      /* comfortable touch target */
  }
  .apply-form textarea { min-height: 90px; }
}

/* ===== Responsive QA fixes ===== */
.benefit-list { list-style: none; }   /* remove default <ul> bullets (block li showed markers) */
.testimonial-meta { word-break: keep-all; }        /* avoid mid-word wrap in card meta */

/* ===== 1-min experience: extended step components (reference 8-step flow) ===== */
.exp-tagline { font-size: 0.78rem; color: #b08b32; font-weight: 700; margin: -6px 0 2px; }

.exp-chathead { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: #faf9f5; border: 1px solid #f0efe8; border-radius: 12px; margin-bottom: 12px; }
.exp-avatar.sm { width: 38px; height: 38px; font-size: 1rem; margin: 0; }
.exp-chathead-info { display: flex; flex-direction: column; line-height: 1.3; }
.exp-chathead-info b { font-size: 0.9rem; color: #111; }
.exp-on { font-size: 0.72rem; color: #16a34a; font-weight: 600; }
.exp-on::before { content: '●'; font-size: 0.55rem; margin-right: 4px; vertical-align: middle; }

.exp-bizcard { background: linear-gradient(135deg, #1f1f1f, #111); color: #fff; border-radius: 14px; padding: 16px 18px; margin-bottom: 12px; text-align: center; }
.exp-bizcard-tag { font-size: 0.62rem; letter-spacing: 1.5px; color: rgba(212,168,67,0.85); font-weight: 700; margin-bottom: 8px; }
.exp-bizcard strong { display: block; font-size: 1.05rem; }
.exp-bizcard-org { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.exp-bizcard-badge { display: inline-block; margin-top: 10px; font-size: 0.74rem; font-weight: 700; color: #f0c860; background: rgba(212,168,67,0.14); border: 1px solid rgba(212,168,67,0.3); border-radius: 20px; padding: 4px 12px; }

.exp-lib-label { font-size: 0.74rem; font-weight: 700; color: #b08b32; margin-bottom: 6px; }
.exp-sysimg img { width: 100%; border-radius: 12px; border: 1px solid #eee; display: block; margin: 4px 0 12px; }
.exp-sub { font-size: 0.84rem; color: #666; margin-bottom: 4px; line-height: 1.5; }
.exp-planlist { display: flex; flex-direction: column; gap: 8px; margin: 14px 0; }
.exp-plan { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; border: 1px solid #eee; border-radius: 12px; background: #fff; position: relative; }
.exp-plan-info b { display: block; font-size: 0.88rem; color: #111; }
.exp-plan-info span { font-size: 0.74rem; color: #999; }
.exp-plan em { font-style: normal; font-weight: 800; font-size: 0.9rem; color: #b08b32; white-space: nowrap; }
.exp-plan.featured { border-color: #d4a843; background: #fffdf6; box-shadow: 0 6px 18px rgba(212,168,67,0.15); }
.exp-plan-badge { position: absolute; top: -9px; right: 12px; font-size: 0.66rem; font-weight: 800; color: #1a1300; background: linear-gradient(135deg, #f0c860, #d4a843); border-radius: 20px; padding: 2px 10px; }

.exp-plancard { border: 1px solid #efe7cf; border-radius: 14px; overflow: hidden; margin: 4px 0; }
.exp-plancard-head { background: linear-gradient(135deg, #f0c860, #d4a843); color: #1a1300; font-weight: 800; font-size: 0.8rem; padding: 8px 14px; }
.exp-plancard strong { display: block; font-size: 1rem; padding: 12px 14px 2px; color: #111; }
.exp-plancard-sub { display: block; font-size: 0.76rem; color: #999; padding: 0 14px 10px; }
.exp-plancard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #f0efe8; }
.exp-plancard-grid > div { background: #fff; padding: 9px 14px; }
.exp-plancard-grid span { display: block; font-size: 0.7rem; color: #999; }
.exp-plancard-grid b { font-size: 0.86rem; color: #111; }

.exp-pay { background: #faf9f5; border: 1px solid #f0efe8; border-radius: 12px; padding: 14px; margin: 16px 0; text-align: left; }
.exp-pay-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; gap: 8px; }
.exp-pay-row span { color: #555; font-weight: 600; }
.exp-pay-row b { color: #16a34a; font-weight: 800; white-space: nowrap; }
.exp-pay-note { font-size: 0.74rem; color: #999; margin-top: 6px; }

/* ===== EASY WORK player — auto-playing 1-min experience (video-like) =====
   story-style segments + REC badge sell the "video" feel */
.exp-sc-frame {
  background: #fff;
  border: 1px solid #ece9df;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.14);
  overflow: hidden;
}
.exp-sc-segments { display: flex; gap: 5px; padding: 14px 16px 0; }
.exp-sc-seg { flex: 1; height: 3px; background: #ebe9e1; border-radius: 3px; overflow: hidden; }
.exp-sc-seg i { display: block; height: 100%; width: 0; background: #d4a843; border-radius: 3px; }
.exp-sc-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px 8px; }
.exp-sc-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.5px; color: #e0483e;
}
.exp-sc-live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: #e0483e;
  animation: scBlink 1.1s ease-in-out infinite;
}
@keyframes scBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
.exp-sc-step { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.6px; color: #b08b32; }
.exp-sc-stage { position: relative; height: 440px; overflow: hidden; }
.exp-sc-slide {
  position: absolute; inset: 4px 18px 16px;
  /* vertically center short slides so they don't leave a void below */
  display: flex; flex-direction: column; justify-content: center;
  animation: scSlideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.exp-sc-slide > * { flex-shrink: 0; }
@keyframes scSlideIn { from { opacity: 0; transform: translateY(16px) scale(0.985); } to { opacity: 1; transform: none; } }
.exp-sc-stage h3 { font-size: 1.24rem; font-weight: 800; line-height: 1.35; margin-bottom: 10px; color: #111; }
.exp-sc-stage h4 { font-size: 1.02rem; font-weight: 800; margin-bottom: 12px; color: #111; }
.exp-sc-stage p { font-size: 0.86rem; color: #666; line-height: 1.6; }
.exp-sc-stage p b { color: #111; }
/* staged element entrances inside a slide (delays are inlined per element) */
.sc-a { animation: scPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes scPop { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.exp-sc-try {
  display: flex; width: 100%; align-items: center; justify-content: center; gap: 6px;
  border: none; border-top: 1px solid #f0efe8; background: #faf9f5;
  font-family: inherit; font-size: 0.84rem; font-weight: 700; color: #555;
  padding: 13px; cursor: pointer; transition: background 0.25s, color 0.25s;
}
.exp-sc-try:hover { background: #111; color: #fff; }

@media (max-width: 767px) {
  /* tallest slide (STEP 5 plan list) measures ~412px at 390px width */
  .exp-sc-stage { height: 436px; }
}
@media (prefers-reduced-motion: reduce) {
  .exp-sc-slide, .sc-a { animation: none; }
  .exp-sc-live::before { animation: none; }
}
