/* ============================
   WeLinker - Stitch + Gongysd Clean Style
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0f172a; background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

:root {
  --black: #111827;
  --orange: #FD7014;
  --gray:   #f8f9fb;
  --border: #EEEEEE;
  --muted:  #475569;
  --light:  #94a3b8;
}

/* ==============================
   HEADER
   ============================== */
.wl-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.wl-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.wl-logo { display: flex; align-items: center; }
.wl-logo-img { height: 36px !important; width: auto !important; max-width: 160px !important; display: block; }
.wl-fv2-logo-img { height: 44px !important; width: auto !important; max-width: 180px !important; display: block; filter: brightness(0) invert(1); opacity: 0.85; }
.wl-dnav { display: none; gap: 32px; }
.wl-dnav a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .2s; }
.wl-dnav a:hover { color: var(--black); }
.wl-dnav a.wl-dnav-free {
  color: var(--orange); font-weight: 700;
  border: 1.5px solid var(--orange); padding: 6px 14px;
  transition: background .2s, color .2s;
}
.wl-dnav a.wl-dnav-free:hover { background: var(--orange); color: #fff; }
.wl-menu-btn { background: none; border: none; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; color: var(--muted); display: flex; align-items: center; justify-content: center; }
.wl-menu-btn .material-symbols-outlined { font-size: 24px; }
@media (min-width: 768px) {
  .wl-dnav { display: flex; }
  .wl-menu-btn { display: none; }
}

/* ==============================
   DRAWER
   ============================== */
.wl-drawer {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0; z-index: 199;
  background: #fff; padding: 32px 24px;
  flex-direction: column; overflow-y: auto;
}
.wl-drawer.open { display: flex; }
.wl-drawer a {
  font-size: 22px; font-weight: 700; color: var(--black);
  padding: 20px 0; border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.wl-drawer a.on { color: var(--orange); }
.wl-drawer a.wl-drawer-free {
  color: #fff; background: var(--orange);
  text-align: center; border-bottom: none; border-radius: 0;
  padding: 18px 0; font-size: 18px;
}

/* ==============================
   HERO SLIDER
   ============================== */
.wl-slider { position: relative; margin-top: 64px; overflow: hidden; }
.wl-slides { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.wl-slide {
  min-width: 100%; position: relative;
  padding: 90px 20px 100px; text-align: center;
  background: var(--black);
}
.wl-slide-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.25; pointer-events: none;
}
.wl-slide-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.wl-slide-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
}
.wl-slide h1, .wl-slide h2 {
  font-size: clamp(28px, 5.5vw, 50px); font-weight: 800;
  color: #fff; line-height: 1.18; letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.wl-slide-sub {
  font-size: 15px; color: rgba(255,255,255,0.85);
  line-height: 1.8; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto;
}
.wl-slide-btns { display: flex; flex-direction: column; gap: 12px; max-width: 320px; margin: 0 auto; }
@media (min-width: 600px) { .wl-slide-btns { flex-direction: row; max-width: none; justify-content: center; } }
.wl-btn-orange {
  display: inline-block; background: var(--orange); color: #fff;
  font-size: 15px; font-weight: 700; text-align: center;
  padding: 16px 32px; border: none; cursor: pointer;
  transition: opacity .2s; letter-spacing: -0.3px;
}
.wl-btn-orange:hover { opacity: 0.88; color: #fff; }
.wl-btn-ghost {
  display: inline-block; border: 1.5px solid rgba(255,255,255,0.5); color: #fff;
  font-size: 15px; font-weight: 700; text-align: center;
  padding: 15px 32px; background: transparent; cursor: pointer;
  transition: background .2s; letter-spacing: -0.3px;
}
.wl-btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
/* 슬라이더 도트 */
.wl-slider-dots {
  position: absolute; bottom: 20px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px; z-index: 5;
}
.wl-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  padding: 8px; background-clip: content-box;
  transition: background .3s, transform .3s;
  -webkit-tap-highlight-color: transparent;
}
.wl-dot.on { background: var(--orange); background-clip: content-box; transform: scale(1.2); }
/* 슬라이더 화살표 */
.wl-slider-prev, .wl-slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; background: rgba(255,255,255,0.12); border: none;
  color: #fff; width: 44px; height: 44px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; font-size: 20px;
}
.wl-slider-prev { left: 16px; }
.wl-slider-next { right: 16px; }
.wl-slider-prev:hover, .wl-slider-next:hover { background: rgba(255,255,255,0.22); }
@media (max-width: 600px) { .wl-slider-prev, .wl-slider-next { display: none; } }

/* ==============================
   QUICK LINKS BANNER
   ============================== */
.wl-quicklinks {
  background: #fff; border-top: 3px solid var(--orange);
  border-bottom: 1px solid var(--border); padding: 0;
}
.wl-quicklinks-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--border);
}
@media (min-width: 768px) { .wl-quicklinks-grid { grid-template-columns: repeat(4, 1fr); } }
.wl-qlink {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px 20px; gap: 8px; text-align: center;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: background .2s, color .2s;
}
.wl-qlink:hover { background: var(--black); }
.wl-qlink:hover .wl-qlink-icon,
.wl-qlink:hover .wl-qlink-label { color: #fff; }
.wl-qlink-icon {
  font-size: 28px; color: var(--black);
  transition: color .2s;
}
.wl-qlink-label {
  font-size: 13px; font-weight: 700; color: var(--black);
  letter-spacing: -0.3px; transition: color .2s;
}
.wl-qlink-sub { font-size: 13px; color: var(--muted); }

/* ==============================
   TRUST STATS (숫자 증거)
   ============================== */
.wl-trust-stats {
  padding: 48px 20px; background: #f3f4f6; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; text-align: center;
}
.wl-stats-grid {
  display: flex; justify-content: center; gap: 48px;
  max-width: 800px; margin: 0 auto; flex-wrap: wrap;
}
.wl-stat { display: flex; flex-direction: column; align-items: center; min-width: 120px; }
.wl-stat-num {
  font-size: 2rem; font-weight: 800; color: var(--orange);
  line-height: 1.2; letter-spacing: -0.5px;
}
.wl-stat-label {
  font-size: 0.85rem; font-weight: 500; color: #6b7280;
  margin-top: 4px; letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .wl-stats-grid { gap: 24px; }
  .wl-stat { min-width: 80px; }
  .wl-stat-num { font-size: 1.5rem; }
  .wl-stat-label { font-size: 0.7rem; }
}

/* ==============================
   TESTIMONIALS
   ============================== */
.wl-testimonials { background: var(--gray); }
.wl-testimonials-inner { max-width: 1200px; margin: 0 auto; }
.wl-testi-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) { .wl-testi-grid { grid-template-columns: repeat(3, 1fr); } }
.wl-testi-card {
  background: #fff; border: 1px solid var(--border);
  padding: 32px 28px; transition: box-shadow .3s;
}
.wl-testi-card:hover { box-shadow: 0 8px 32px rgba(27,45,79,0.08); }
.wl-testi-stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.wl-testi-text {
  font-size: 17px; color: var(--muted); line-height: 1.9;
  margin-bottom: 24px;
}
.wl-testi-author {
  border-top: 1px solid var(--border); padding-top: 16px;
  display: flex; align-items: center; gap: 12px;
}
.wl-testi-avatar {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: #e5e7eb; color: #374151;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
}
.wl-testi-avatar--inst { background: var(--orange); }
.wl-testi-name { font-size: 16px; font-weight: 700; color: var(--black); display: block; }
.wl-testi-role { font-size: 14px; color: var(--light); margin-top: 2px; display: block; }

/* ==============================
   BEST PROGRAMS
   ============================== */
.wl-best { background: #fff; }
.wl-best-inner { max-width: 1200px; margin: 0 auto; }
.wl-best-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: 32px;
}
@media (min-width: 768px) { .wl-best-grid { grid-template-columns: repeat(3, 1fr); } }
.wl-best-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; border: 1px solid var(--border);
  transition: box-shadow .3s, border-color .3s;
}
.wl-best-card:hover {
  box-shadow: 0 8px 32px rgba(27,45,79,0.08);
  border-color: var(--orange);
}
.wl-best-rank {
  flex-shrink: 0; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange); color: #fff;
  font-size: 16px; font-weight: 800;
}
.wl-best-info h4 {
  font-size: 15px; font-weight: 700; color: var(--black);
  margin-bottom: 6px; letter-spacing: -0.3px;
}
.wl-best-info p {
  font-size: 13px; color: var(--muted); line-height: 1.6;
  margin-bottom: 8px;
}
.wl-best-price {
  font-size: 16px; font-weight: 800; color: var(--orange);
}

/* ==============================
   TRUST BAR
   ============================== */
.wl-trust {
  overflow: hidden; border-bottom: 1px solid var(--border);
  padding: 22px 0; background: #fff;
}
.wl-trust-track {
  display: flex; width: max-content;
  animation: trust-run 28s linear infinite;
}
.wl-trust-track:hover { animation-play-state: paused; }
@keyframes trust-run {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.wl-trust-set { display: flex; gap: 48px; padding: 0 24px; align-items: center; }
.wl-trust-set span {
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; white-space: nowrap;
  color: var(--black); opacity: 0.55;
}

/* ==============================
   SECTION COMMON
   ============================== */
.wl-sec { padding: 96px 20px; }
.wl-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange);
  display: block; margin-bottom: 14px;
}
.wl-title {
  font-size: clamp(22px, 3.5vw, 36px); font-weight: 800;
  color: var(--black); line-height: 1.2; letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.wl-desc {
  font-size: 15px; color: var(--muted); line-height: 1.9;
  max-width: 480px;
}
.wl-link {
  display: inline-block; margin-top: 24px;
  font-size: 14px; font-weight: 700; color: var(--black);
  border-bottom: 2px solid var(--black); padding-bottom: 2px;
  transition: opacity .2s;
}
.wl-link:hover { opacity: 0.6; }
.wl-row-head {
  max-width: 1200px; margin: 0 auto 40px;
  display: flex; align-items: baseline; justify-content: space-between;
}
.wl-see-all {
  font-size: 12px; font-weight: 500; color: var(--light);
  transition: color .2s;
}
.wl-see-all:hover { color: var(--black); }

/* ==============================
   FEATURE: AI TOOLS
   ============================== */
.wl-feature { background: #fff; }
.wl-feature-grid {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 48px;
}
.wl-feature-text { flex: 1; }
.wl-feature-visual {
  flex: 1.2; background: var(--gray);
  border: 1px solid var(--border); padding: 16px;
}
.wl-chat {
  background: #1e293b; padding: 20px; min-height: 220px;
}
.wl-chat-label {
  font-size: 10px; letter-spacing: 2px; font-weight: 700;
  color: rgba(255,255,255,0.3); margin-bottom: 16px; display: block;
  text-transform: uppercase;
}
.wl-bubble {
  border-radius: 4px; padding: 12px 14px; margin-bottom: 10px;
  font-size: 13px; line-height: 1.7; max-width: 88%;
}
.wl-bubble.ai   { background: #243552; color: #e2e8f0; }
.wl-bubble.user { background: var(--orange); color: #fff; margin-left: auto; }
.wl-bubble.dot  { background: #243552; color: rgba(226,232,240,0.35); }
@media (min-width: 900px) {
  .wl-feature-grid { flex-direction: row; align-items: flex-start; gap: 72px; }
}

/* ==============================
   STEPS (gongysd.com key element)
   ============================== */
.wl-steps-sec { background: var(--gray); }
.wl-steps-head { max-width: 1200px; margin: 0 auto 48px; }
.wl-steps-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  border: 1px solid var(--border); background: var(--border); gap: 1px;
}
.wl-step {
  background: #fff; padding: 40px 32px;
  transition: background .2s;
  display: flex; flex-direction: column;
}
.wl-step:hover { background: #fcfcfc; }
.wl-step-num {
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--orange); display: block; margin-bottom: 18px;
}
.wl-step h4 {
  font-size: 22px; font-weight: 800; color: var(--black);
  margin-bottom: 14px; letter-spacing: -0.5px;
}
.wl-step p { font-size: 16px; color: var(--muted); line-height: 1.85; margin-top: auto; }
@media (min-width: 768px) {
  .wl-steps-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==============================
   RESOURCES: FREE EBOOKS
   ============================== */
.wl-resources { background: #fff; }
.wl-cards {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.wl-card {
  background: #fff; border: 1px solid var(--border);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .3s;
}
.wl-card:hover { box-shadow: 0 8px 32px rgba(27,45,79,0.08); }
.wl-card-thumb { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.wl-card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: 1px;
  padding: 5px 12px; text-transform: uppercase;
}
.wl-card-cover {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
  filter: grayscale(1); transition: filter .5s;
}
.wl-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wl-card:hover .wl-card-cover { filter: grayscale(0); }
.wl-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,45,79,0.88) 0%, rgba(27,45,79,0.35) 55%, transparent 100%);
  display: flex; align-items: flex-end; padding: 20px;
}
.wl-cover-txt {
  color: #fff; font-size: 16px; font-weight: 800;
  text-align: left; line-height: 1.5; letter-spacing: -0.5px;
}
.wl-card-body { padding: 20px; }
.wl-card-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 8px; display: block;
}
.wl-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.3px; }
.wl-card p { font-size: 13px; color: var(--light); line-height: 1.6; }
@media (min-width: 768px) {
  .wl-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .wl-cards { grid-template-columns: repeat(4, 1fr); }
}

/* ==============================
   POSTS: LATEST BLOG
   ============================== */
.wl-posts-sec { background: var(--gray); }
.wl-post-list {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column;
  border: 1px solid var(--border); background: var(--border); gap: 1px;
}
.wl-post-item {
  background: #fff; display: flex; flex-direction: column;
  transition: background .2s;
}
.wl-post-item:hover { background: #fcfcfc; }
.wl-post-img {
  width: 100%; aspect-ratio: 16/9;
  overflow: hidden; background: #dde3ec; flex-shrink: 0;
}
.wl-post-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1); transition: filter .4s;
}
.wl-post-item:hover .wl-post-img img { filter: grayscale(0); }
.wl-post-img-ph { width: 100%; height: 100%; background: #dde3ec; }
.wl-post-body { padding: 24px; flex: 1; }
.wl-post-meta {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.wl-post-type {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange);
}
.wl-post-date {
  font-size: 12px; color: var(--light);
}
.wl-post-item h4 {
  font-size: 16px; font-weight: 700; color: #0f172a;
  margin-bottom: 8px; line-height: 1.45; letter-spacing: -0.3px;
}
.wl-post-item h4 a { color: inherit; }
.wl-post-excerpt { font-size: 14px; color: var(--muted); line-height: 1.7; }
@media (min-width: 768px) {
  .wl-post-item { flex-direction: row; }
  .wl-post-img { width: 260px; aspect-ratio: auto; min-height: 160px; }
}

/* ==============================
   ABOUT: LOUIS
   ============================== */
.wl-about { background: #fff; }
.wl-about-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 64px;
}
.wl-avatar {
  width: 220px; height: 220px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: #b0b0b0;
}
.wl-avatar img { width: 100%; height: 100%; object-fit: cover; }
/* 프로필 사진: 얼굴 작게, 배경 넓게 (zoom-out) */
.wl-profile-img {
  width: 160% !important; height: 160% !important;
  object-fit: cover !important;
  margin-left: -30%; margin-top: -20%;
}
.wl-about-content { flex: 1; text-align: left; }
.wl-about h3 {
  font-size: 26px; font-weight: 800; color: var(--black);
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.wl-quote {
  font-size: 16px; color: var(--muted); line-height: 1.9;
  margin-bottom: 28px;
}
.wl-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-start; margin-bottom: 28px; }
.wl-badge {
  font-size: 13px; font-weight: 500; color: var(--black);
  border: 1px solid var(--border); padding: 6px 14px;
  transition: background .2s, color .2s;
}
.wl-badge:hover { background: var(--black); color: #fff; }
@media (max-width: 767px) {
  .wl-about-inner { flex-direction: column; text-align: center; gap: 32px; }
  .wl-about-content { text-align: center; }
  .wl-tags { justify-content: center; }
  .wl-avatar { width: 120px; height: 120px; }
}

/* ==============================
   CTA
   ============================== */
.wl-cta { background: #f3f4f6; border-top: 1px solid #e5e7eb; text-align: center; }
.wl-cta-inner { max-width: 480px; margin: 0 auto; }
.wl-cta h2 {
  font-size: clamp(24px, 4vw, 38px); font-weight: 800;
  color: #111827; margin-bottom: 16px; letter-spacing: -1px;
}
.wl-cta p {
  font-size: 15px; color: #6b7280;
  line-height: 1.9; margin-bottom: 36px;
}
.wl-cta-social {
  font-size: 13px; font-weight: 600; color: var(--orange);
  letter-spacing: 1px; margin-bottom: 12px !important;
}
.wl-cta-sub {
  font-size: 12px; color: #9ca3af;
  margin-top: 12px !important; margin-bottom: 0 !important;
}
.wl-btn-pulse {
  animation: cta-pulse 2.5s ease-in-out infinite;
}
.wl-btn-pulse:hover { animation: none; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(253,112,20,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(253,112,20,0); }
}

/* ==============================
   FOOTER V2 (다크 멀티컬럼)
   ============================== */
.wl-footer-v2 { background: #111; color: #aaa; }

.wl-fv2-top { padding: 64px 20px 48px; }

.wl-fv2-cols {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px) {
  .wl-fv2-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .wl-fv2-cols { grid-template-columns: repeat(5, 1fr) 1.4fr; gap: 32px; }
}

.wl-fv2-col { display: flex; flex-direction: column; gap: 10px; }
.wl-fv2-heading {
  font-size: 14px; font-weight: 700; color: #fff;
  letter-spacing: 0.3px; margin-bottom: 6px;
}
.wl-fv2-col a {
  font-size: 14px; color: #b0b8c4; text-decoration: none;
  transition: color .2s; line-height: 1.6;
}
.wl-fv2-col a:hover { color: #fff; }
.wl-fv2-contact-text {
  font-size: 14px; color: #FD7014; font-weight: 700;
  line-height: 1.7; margin: 0;
}

.wl-fv2-brand {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 20px;
}
@media (min-width: 1024px) {
  .wl-fv2-brand { align-items: flex-end; }
}
.wl-fv2-logo {
  font-size: 28px; font-weight: 900;
  color: #fff; letter-spacing: -1px;
}
.wl-fv2-sns { display: flex; gap: 12px; flex-wrap: wrap; }
.wl-fv2-sns a {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: #aaa; text-decoration: none;
  transition: color .2s;
}
.wl-fv2-sns a:hover { color: #fff; }
.wl-sns-icon { width: 18px; height: 18px; flex-shrink: 0; }

.wl-fv2-bottom {
  border-top: 1px solid #222;
  padding: 24px 20px 96px;
}
.wl-fv2-bottom-inner { max-width: 1200px; margin: 0 auto; }
.wl-fv2-biz {
  font-size: 12px; color: #888; line-height: 1.9; margin-bottom: 8px;
}
.wl-fv2-copy { font-size: 12px; color: #777; }

/* ==============================
   MOBILE BOTTOM NAV
   ============================== */
.wl-bnav {
  display: flex; position: fixed;
  bottom: 0; left: 0; right: 0; z-index: 150;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 0;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  justify-content: space-around;
}
.wl-bnav a {
  display: flex; flex-direction: column; align-items: center;
  font-size: 11px; font-weight: 700; gap: 3px;
  color: var(--light); min-width: 56px; transition: color .2s;
  text-decoration: none;
}
.wl-bnav a.on { color: var(--black); }
.wl-bnav a.wl-bnav-cta { color: var(--orange); }
.wl-bnav svg { flex-shrink: 0; }
@media (min-width: 768px) { .wl-bnav { display: none; } }

/* ==============================
   STICKY CTA BAR
   ============================== */
.wl-sticky-cta {
  position: fixed; bottom: -80px; left: 0; right: 0; z-index: 180;
  background: #fff; border-top: 3px solid var(--orange);
  padding: 12px 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  transition: bottom .4s cubic-bezier(.4,0,.2,1);
}
.wl-sticky-cta.show { bottom: 0; }
.wl-sticky-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.wl-sticky-text {
  font-size: 14px; color: #374151; font-weight: 500;
}
.wl-sticky-text strong { color: var(--orange); font-weight: 800; }
.wl-sticky-btn {
  background: var(--orange); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 10px 24px; white-space: nowrap;
  transition: opacity .2s;
}
.wl-sticky-btn:hover { opacity: 0.88; color: #fff; }
@media (max-width: 768px) {
  .wl-sticky-cta.show { bottom: 72px; }
  .wl-sticky-text { font-size: 13px; }
  .wl-sticky-btn { padding: 8px 16px; font-size: 13px; }
}

/* ==============================
   PAIN POINTS (공감 섹션)
   ============================== */
.wl-pain { background: #fff; }
.wl-pain-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.wl-pain .wl-tag {
  font-size: clamp(16px, 2vw, 22px); letter-spacing: 0.5px;
  text-transform: none; font-weight: 700; color: var(--orange);
  margin-bottom: 24px;
}
.wl-pain-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  margin-top: 40px; margin-bottom: 48px;
}
@media (min-width: 768px) { .wl-pain-grid { grid-template-columns: repeat(3, 1fr); } }
.wl-pain-card {
  background: var(--gray); border: 1px solid var(--border);
  padding: 40px 28px; text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.wl-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,45,79,0.1);
}
.wl-pain-icon {
  font-size: 36px; color: var(--orange); display: block;
  margin-bottom: 20px;
}
.wl-pain-card p {
  font-size: 15px; color: var(--muted); line-height: 1.85;
}
.wl-pain-card strong { color: var(--black); }
.wl-pain-resolve {
  font-size: 17px; color: var(--muted); line-height: 1.9;
  max-width: 480px; margin: 0 auto;
}
.wl-pain-resolve strong { color: var(--orange); font-weight: 800; font-size: 20px; }

/* ==============================
   WHY WELINKER (차별점)
   ============================== */
.wl-why { background: #f3f4f6; border-top: 1px solid #e5e7eb; }
.wl-why-inner { max-width: 1200px; margin: 0 auto; }
.wl-why .wl-tag { color: var(--orange); }
.wl-why .wl-title { color: #111827; }
.wl-why-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .wl-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wl-why-grid { grid-template-columns: repeat(4, 1fr); } }
.wl-why-card {
  background: #fff; border: 1px solid #e5e7eb;
  padding: 40px 32px;
  transition: box-shadow .3s, transform .3s;
}
.wl-why-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.wl-why-num {
  font-size: 13px; font-weight: 800; color: var(--orange);
  letter-spacing: 2px; display: block; margin-bottom: 16px;
}
.wl-why-card h4 {
  font-size: 18px; font-weight: 800; color: #111827;
  margin-bottom: 12px; letter-spacing: -0.5px; line-height: 1.4;
}
.wl-why-card p {
  font-size: 14px; color: #6b7280; line-height: 1.85;
}

/* ==============================
   SCROLL REVEAL ANIMATION
   ============================== */
.wl-reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.wl-reveal.wl-visible {
  opacity: 1; transform: translateY(0);
}

/* ==============================
   MINI CTA (섹션 간 전환 유도)
   ============================== */
.wl-mini-cta {
  text-align: center; margin-top: 48px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.wl-mini-cta p {
  font-size: 16px; font-weight: 700; color: var(--black);
  margin-bottom: 20px; letter-spacing: -0.3px;
}
.wl-mini-cta-dark {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.wl-mini-cta-dark p { color: rgba(255,255,255,0.9); }

/* Steps CTA */
.wl-steps-cta {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.wl-steps-cta-inner {
  background: #fff; border: 1px solid var(--border);
  border-top: none; padding: 32px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap;
}
.wl-steps-cta-inner span {
  font-size: 15px; font-weight: 700; color: var(--black);
}

/* Best Programs: 긴급성 배지 */
.wl-best-urgent {
  display: inline-block; margin-top: 8px;
  font-size: 11px; font-weight: 700; color: #dc2626;
  background: #fef2f2; border: 1px solid #fecaca;
  padding: 3px 10px; letter-spacing: 0.3px;
  animation: urgent-blink 2s ease-in-out infinite;
}
@keyframes urgent-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* About: 버튼 그룹 */
.wl-about-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 24px; flex-wrap: wrap;
}

/* Mobile: disable grayscale (no hover on touch) */
@media (hover: none) {
  .wl-card-cover { filter: grayscale(0); }
  .wl-post-img img { filter: grayscale(0); }
  .wl-avatar { filter: grayscale(0); }
}

/* ==============================
   FOOTER SOCIAL
   ============================== */
.wl-footer-social {
  display: flex; gap: 16px;
}
.wl-footer-social a {
  color: var(--light); transition: color .2s;
}
.wl-footer-social a:hover { color: var(--black); }
.wl-footer-social .material-symbols-outlined { font-size: 22px; }

/* ==============================
   PLATFORM LOGOS
   ============================== */
.wl-platforms {
  background: var(--gray); padding: 20px 20px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.wl-platforms-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--light); margin-bottom: 12px;
}
.wl-platforms-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.wl-platform-item {
  font-size: 15px; font-weight: 700; color: var(--muted);
  letter-spacing: 0.5px; opacity: 0.6;
  transition: opacity .2s;
}
.wl-platform-item:hover { opacity: 1; }
@media (max-width: 768px) {
  .wl-platforms-grid { gap: 20px; }
  .wl-platform-item { font-size: 13px; }
}

/* ==============================
   NEEDS SELECTOR
   ============================== */
.wl-needs { background: #fff; }
.wl-needs-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.wl-needs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 32px; text-align: left;
}
.wl-need-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: var(--gray);
  border: 1px solid var(--border); transition: all .2s;
  text-decoration: none; color: inherit;
}
.wl-need-card:hover {
  border-color: var(--orange); background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253,112,20,0.12);
}
.wl-need-icon {
  font-size: 28px; color: var(--orange);
  flex-shrink: 0;
}
.wl-need-card p {
  font-size: 15px; line-height: 1.6; margin: 0; flex: 1;
  color: var(--black);
}
.wl-need-card p strong { color: var(--orange); }
.wl-need-arrow {
  font-size: 20px; color: var(--light);
  transition: color .2s, transform .2s;
  flex-shrink: 0;
}
.wl-need-card:hover .wl-need-arrow {
  color: var(--orange); transform: translateX(4px);
}
@media (max-width: 768px) {
  .wl-needs-grid { grid-template-columns: 1fr; }
  .wl-need-card { padding: 16px 20px; }
  .wl-need-icon { font-size: 24px; }
  .wl-need-card p { font-size: 14px; }
}

/* ==============================
   WHY CARD HIGHLIGHT (04)
   ============================== */
.wl-why-card-highlight {
  border-left: 3px solid var(--orange);
  background: linear-gradient(135deg, rgba(253,112,20,0.04) 0%, transparent 100%);
}

/* ==============================
   REVIEW INCENTIVE
   ============================== */
.wl-review-incentive {
  font-size: 13px; color: var(--muted); margin-top: 16px;
  text-align: center;
}
.wl-review-incentive strong { color: var(--orange); }
.wl-review-incentive a {
  color: var(--black); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
}
.wl-review-incentive a:hover { color: var(--orange); }

/* ==============================
   BRAND STORY — 왜 위링커인가 (pre-footer)
   ============================== */
.wl-brand-story {
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  padding: 100px 20px;
  color: #111827;
}
.wl-brand-story-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 64px;
}
@media (min-width: 960px) {
  .wl-brand-story-inner { grid-template-columns: 1.15fr 0.85fr; gap: 80px; align-items: start; }
}
.wl-brand-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 22px;
}
.wl-brand-headline {
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 800;
  line-height: 1.35; color: #111827; letter-spacing: -1px;
  margin-bottom: 36px;
}
.wl-brand-headline em { font-style: normal; color: var(--orange); }
.wl-brand-copy p {
  font-size: 16px; line-height: 1.95;
  color: #6b7280; margin-bottom: 22px;
}
.wl-brand-copy p:last-child { margin-bottom: 0; }
.wl-brand-copy strong { color: #111827; }
.wl-brand-mission-block {
  margin-top: 44px;
  border-left: 3px solid var(--orange); padding-left: 22px;
}
.wl-brand-mission-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.wl-brand-mission-block p {
  font-size: 18px; font-weight: 600; color: #111827; line-height: 1.75;
}

/* Team side */
.wl-brand-team-title {
  font-size: clamp(18px, 2vw, 24px); font-weight: 700;
  color: #111827; margin-bottom: 28px; letter-spacing: -0.5px;
}
.wl-brand-profile-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 24px; margin-bottom: 20px;
}
.wl-brand-avatar {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
}
.wl-brand-profile-name {
  display: block; font-size: 16px; font-weight: 700;
  color: #111827; margin-bottom: 4px;
}
.wl-brand-profile-role {
  display: block; font-size: 12px; color: var(--orange);
  font-weight: 600; margin-bottom: 10px; letter-spacing: 0.3px;
}
.wl-brand-profile-desc {
  font-size: 13px; color: #6b7280; line-height: 1.8; margin: 0;
}
.wl-brand-ai-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 24px; margin-bottom: 32px;
}
.wl-brand-ai-header {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--orange);
  margin-bottom: 12px;
}
.wl-brand-ai-header .material-symbols-outlined { font-size: 17px; }
.wl-brand-ai-card > p {
  font-size: 14px; color: #6b7280;
  line-height: 1.8; margin-bottom: 18px;
}
.wl-brand-ai-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.wl-brand-ai-badges span {
  font-size: 12px; font-weight: 600; color: var(--orange);
  border: 1px solid rgba(253,112,20,0.35);
  padding: 4px 13px; border-radius: 20px;
}
.wl-brand-more-link {
  display: inline-block; font-size: 15px; font-weight: 700;
  color: #111827; text-decoration: none;
  border-bottom: 1px solid #d1d5db; padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.wl-brand-more-link:hover { color: var(--orange); border-color: var(--orange); }
