@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');

:root {
  /* ── 기존 토큰 (값 design-spec으로 갱신, 이름 유지로 기존 var() 참조 보존) ── */
  --bg: #ffffff;                          /* = --bg-base */
  --surface: #ffffff;
  --surface-subtle: #F7F8FA;              /* 구 #FAFAFA → --bg-soft */
  --text: #18181B;                        /* 구 #0d0d0d → --text-strong (순흑 금지) */
  --text-secondary: #3F444C;              /* 구 #444444 → --text-body */
  --text-muted: #6B7280;                  /* 구 #767676 */
  --green: #24BF58;                       /* = --brand */
  --green-hover: #1C9E47;                 /* = --brand-hover */
  --green-hl: rgba(68,237,122,0.28);      /* 유지 (형광펜 효과) */
  --blue: #0EA5E9;                        /* 유지 (참조 보존) */
  --border: rgba(16,24,40,.06);           /* 구 #E6E6E6 → --border-subtle ⚠️ 전 페이지 파급 */
  --border-medium: rgba(16,24,40,.10);    /* 구 rgba(0,0,0,0.08) → --border-strong */
  --radius-btn: 12px;                     /* 구 10px → --radius-md */
  --radius-input: 8px;                    /* 구 10px → --radius-sm */
  --radius-card: 16px;                    /* 유지 = --radius-lg */
  --radius-hero: 24px;                    /* 유지 = --radius-2xl */
  --radius-pill: 9999px;                  /* 유지 = --radius-full */
  --maxw: 1200px;                         /* 유지 */
  --nav-h: 72px;                          /* 유지 */

  /* ── 신규: design-spec 부록 A 토큰 ────────────────────────────── */
  /* color */
  --bg-base: #FFFFFF;
  --bg-soft: #F7F8FA;
  --text-strong: #18181B;
  --text-body: #3F444C;
  --text-faint: #6C7282;
  --brand: #24BF58;
  --brand-hover: #1C9E47;
  --brand-soft: #E7F7EC;
  --border-subtle: rgba(16,24,40,.06);
  --border-strong: rgba(16,24,40,.10);
  --cta-bg: #18181B;
  --cta-text: #FFFFFF;
  /* radius 풀세트 */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  /* shadow */
  --shadow-xs: 0 1px 2px rgba(16,24,40,.04);
  --shadow-sm: 0 2px 8px rgba(16,24,40,.06);
  --shadow-md: 0 8px 24px rgba(16,24,40,.08);
  --shadow-lg: 0 16px 48px rgba(16,24,40,.10);
  --shadow-xl: 0 24px 64px rgba(16,24,40,.12);
  /* spacing */
  --space-1: 4px;   --space-2: 8px;    --space-3: 12px;  --space-4: 16px;
  --space-5: 24px;  --space-6: 32px;   --space-7: 40px;  --space-8: 48px;
  --space-9: 64px;  --space-10: 80px;  --space-11: 96px; --space-12: 120px;
  --space-13: 160px;
  /* layout & type */
  --container: 1200px;
  --pad-x: 40px;
  --section-y: 120px;
  --gutter: 24px;
  --font-sans: "Pretendard", -apple-system, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  --fs-hero: 48px;
  --fs-h2: 36px;
  --fs-h3: 28px;
  --fs-lead: 20px;
  --fs-body: 16px;
  --fs-caption: 14px;
  --fs-stat: 36px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  background: var(--bg);
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
  padding-top: var(--nav-h);
}

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

a { color: inherit; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-btn);
  padding: 14px 24px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary,
.btn-accent {
  background: var(--green);
  color: var(--text);
}
.btn-primary:hover,
.btn-accent:hover { background: var(--green-hover); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--surface-subtle); border-color: var(--text); }
/* 검정 pill — nav의 .nav-cta와 동일한 톤(검은 배경·흰 글씨) */
.btn-dark {
  background: #0d0d0d;
  color: #fff;
  border-radius: 9999px;
}
.btn-dark:hover { background: #333; color: #fff; }

/* ── Navigation ── */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-logo-text span {
  color: rgba(0,0,0,0.3);
  font-weight: 400;
  margin-left: 1px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-menu li a {
  display: block;
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-menu li a:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 12px; }
/* 언어 스위처 (nav 단일 소스: 여기서만 스타일) */
.nav-lang { position: relative; }
.nav-lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-size: 15px; color: var(--text-secondary); padding: 8px 6px;
}
.nav-lang-toggle:hover { color: var(--text); }
.nav-lang-globe { display: block; }
.nav-lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 132px;
  background: #fff; border: 1px solid var(--border, #e6e6e6); border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08); padding: 6px; z-index: 100;
}
.nav-lang-item {
  display: block; width: 100%; text-align: left; background: none; border: none;
  cursor: pointer; font-size: 14px; color: #444; padding: 8px 10px; border-radius: 8px;
}
.nav-lang-item:hover { background: #fafafa; }
.nav-lang-item[aria-current="true"] { color: var(--text); font-weight: 600; }
@media (max-width: 768px) {
  /* 모바일: CTA는 숨기지만 언어 스위처는 유지 */
  .nav-lang-current { display: none; }
}
.top-nav .nav-cta {
  font-size: 15px;
  padding: 11px 24px;
  border-radius: 9999px;
  background: #0d0d0d;
  color: #fff;
  box-shadow: none;
}
.top-nav .nav-cta:hover { background: #333; color: #fff; box-shadow: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 90;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  overflow-y: auto;
}
.mobile-menu-overlay.open { display: flex; }
.mobile-menu-overlay a {
  display: block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
}
.mobile-menu-overlay a:hover { color: var(--text); }
.mobile-menu-actions { margin-top: 24px; }

@media (max-width: 1024px) {
  .top-nav { padding: 0 24px; }
  .nav-menu li a { padding: 8px 12px; font-size: 15px; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-right .nav-cta { display: none; }
  .top-nav { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  /* mobile: 햄버거 탭타깃을 44px 이상으로 확보(시각적 아이콘 크기는 유지) */
  .nav-hamburger { padding: 14px; }
}

/* ── Section common ── */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 24px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ── Hero ── */

.hl-marker {
  font-weight: 700;
  color: inherit;
  background: linear-gradient(transparent 55%, rgba(68, 237, 122, 0.5) 55%);
  display: inline;
}

.title-underline-wrap {
  position: relative;
  display: inline-block;
}
.title-underline-svg {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 14px;
  overflow: visible;
}
.title-underline-path {
  fill: none;
  stroke: var(--brand);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: title-underline-draw 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}
@keyframes title-underline-draw {
  to { stroke-dashoffset: 0; }
}
.hero-title .hl-flow {
  font-size: clamp(28px, 3.2vw, 46px);
  color: var(--text);
}

.hero-market-word.cycling-out {
  opacity: 0;
  transform: translateY(-10px);
}

.hero-cta-row .btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide.slide-ps,
.hero-slide.slide-ps2,
.hero-slide.slide-ps3,
.hero-slide.slide-ps4,
.hero-slide.slide-kb {
  background: transparent;
}

/* Desktop mock */
.desk-mock {
  width: calc(100% - 24px);
  margin-top: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-bottom: none;
}

.desk-bar .tb.r { background: #ff5f57; }
.desk-bar .tb.y { background: #ffbd2e; }
.desk-bar .tb.g { background: #28c840; }

.desk-placeholder {
  background: #e8e8e8;
  height: clamp(80px, 10vh, 160px);
  margin: 16px;
  border-radius: 8px;
}

.slide-mock-wrap .desk-mock {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.slide-mock-wrap .desk-placeholder {
  height: clamp(90px, 11vh, 160px);
  margin: 12px;
}

/* Stage 1 — 슬라이드2 단독 이미지 (영역 전체 차지) */

/* Preselling slides (1~4) */

/* Slide dots */

.slide-dot.active { transform: scaleX(3.143); background: var(--brand); }

/* ── Social Proof ── */

/* ── Routing ── */

/* ── Service block (4-A / 4-B) ── */

.service-block.kbeauty-bg { background: #fafafa; }

.pain {
  margin-top: 40px;
  padding: 20px 0 6px;
  border-top: 1px solid var(--border);
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm); /* --border 옅어짐 보강 */
  padding: 28px;
}

/* Mock: alert / notification UI (4-A) */

/* Social proof inline (4-A) */

.result-cell .rv { font-size: 24px; font-weight: 700; letter-spacing: -0.5px; color: var(--green); }

/* Mock: yakgibeop (4-B) */

/* Mock: margin calculator (4-B) */

/* Pricing (4-B) */

/* ── Preselling intro section ── */

.preselling-intro {
  text-align: center;
  max-width: 1000px;
  margin: 32px auto;
}
/* 라벨 — 타 페이지(플랫폼 등)와 동일: 짙은 글자 + 초록 형광펜 */

.preselling-title {
  font-family: 'Pretendard', sans-serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.preselling-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}
.preselling-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.preselling-pain-card {
  background: #f7fdf9;
  border: 1px solid rgba(68,237,122,0.18);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  min-height: 148px;
}
.preselling-pain-text { flex: 1; }
.preselling-pain-q {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.6;
  color: var(--text);
  word-break: keep-all;
}
.preselling-pain-highlight { color: #24BF58; }
.pain-icon-slot {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain-icon-img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  transition: transform 0.25s ease;
}
/* 카드마다 살짝 다른 대각선 기울기 — 자유로운 느낌 */
.preselling-pain-card:nth-child(1) .pain-icon-img { transform: rotate(-12deg); }
.preselling-pain-card:nth-child(2) .pain-icon-img { transform: rotate(9deg); }
.preselling-pain-card:nth-child(3) .pain-icon-img { transform: rotate(7deg); }
.preselling-pain-card:hover .pain-icon-img { transform: rotate(0deg) scale(1.08); }
@media (max-width: 900px) {
  .preselling-pain-grid { grid-template-columns: 1fr; }
}

/* ── Autoplay step section ── */

.steps-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: stretch;
}
.steps-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.steps-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  background: none;
  border: none;
  border-left: 2px solid var(--border);
  padding-left: 22px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  opacity: 0.4;
  transition: opacity 0.3s, border-color 0.3s;
}
.steps-item.active {
  opacity: 1;
  border-left-color: var(--green);
}
.step-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  margin-top: 7px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.steps-item.active .step-dot {
  background: var(--green);
  transform: scale(1.4);
  box-shadow: 0 0 0 3px rgba(68,237,122,0.2);
}
.step-info { flex: 1; }
.step-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.step-label {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--text);
}

.steps-panels {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 480px;
}
.steps-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 44px;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  background: linear-gradient(to right, #062e1a 0%, #0c6040 55%, #10a865 100%);
}
.steps-panel.active {
  opacity: 1;
  pointer-events: auto;
}
.panel-copy { flex: 1; }

.panel-title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.35;
  color: #ffffff;
  word-break: keep-all;
}
.panel-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  line-height: 1.75;
  word-break: keep-all;
}
.panel-mock {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel-mock .desk-mock {
  width: 100%;
  border-radius: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
@media (max-width: 900px) {
  .steps-body { grid-template-columns: 1fr; gap: 32px; }
  .steps-nav { flex-direction: row; flex-wrap: wrap; }
  .steps-item { flex: 1; min-width: 140px; border-left: none; border-bottom: 2px solid var(--border); padding-left: 0; padding-bottom: 16px; }
  .steps-item.active { border-left-color: var(--border); border-bottom-color: var(--green); }
  .steps-panels { min-height: 380px; }
  #section-solution .steps-item.active { border-bottom-color: var(--blue); }
}

/* ── Preselling solution intro (국내) ── */

.pbi-desc-hl.is-visible::after {
  transform: scaleX(1);
}

#section-solution {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 56px 24px;
  box-sizing: border-box;
}
/* intro 마진은 flex gap이 담당 — 한 화면 안에 들어오도록 중복 여백 제거 */

#section-solution .steps-panels { min-height: 0; height: 400px; }

/* ── Domestic (Preselling) — blue theme overrides ── */
#section-preselling .eyebrow { color: var(--blue); }
#section-preselling .preselling-pain-card {
  background: #f0f9ff;
  border-color: rgba(14,165,233,0.25);
}
#section-preselling .preselling-pain-highlight { color: #0369a1; }
#section-solution .eyebrow { color: var(--blue); }
#section-solution .steps-item.active { border-left-color: var(--blue); }
#section-solution .steps-item.active .step-dot {
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.2);
}

#section-solution .steps-panel {
  background: linear-gradient(to right, #012233 0%, #074d6e 55%, #0c7eb5 100%);
}

/* ── 국내 마켓 로고 삼각 배치 ── */

/* ── K-Beauty 6단계 — 컴팩트 스텝 ── */
#section-kbeauty .steps-item {
  padding: 18px 0;
  padding-left: 20px;
  gap: 16px;
}
#section-kbeauty .step-label { font-size: 19px; }
#section-kbeauty .step-num { font-size: 11px; letter-spacing: 1.2px; }

/* ── Data section ── */

.data-text .section-title { margin-bottom: 16px; }

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: rgba(0,0,0,0.03) 0px 2px 8px;
}
.platform-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.platform-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ── Section divider ── */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0 48px;
}

/* ── Footer CTA ── */

.footer-cta-actions .btn { padding: 14px 32px; font-size: 16px; }

/* ── Site footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px 24px 32px;
}
.footer-brand { margin-bottom: 28px; }
.footer-logo { font-size: 18px; font-weight: 700; letter-spacing: -0.5px; }
.footer-slogan { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }
.footer-sns { display: flex; gap: 14px; margin-top: 14px; }
.footer-sns a { color: rgba(0,0,0,0.35); transition: color 0.2s; }
.footer-sns a:hover { color: var(--text); }
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.footer-col-title { font-size: 11px; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.footer-col-item { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
.footer-col-item a { text-decoration: none; transition: color 0.2s; }
.footer-col-item a:hover { color: var(--text); }
.footer-bottom { padding-top: 20px; text-align: center; }
.footer-copy { font-size: 12px; color: rgba(0,0,0,0.35); }

/* ── Responsive ── */
/* desktop-first: Hero 패딩 spec 160px top / 96px bottom (min-width mobile-first) */

@media (max-width: 900px) {

  

  
  
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .section { padding: 56px 24px; }

  .footer-inner { padding: 40px 24px 28px; }

  /* mobile: SNS 아이콘 탭타깃 확장(패딩+음수마진으로 시각적 크기·간격은 유지) */
  .footer-sns a { padding: 8px; margin: -8px; }
}

/* ── 지원 채널 ── */

.mkt-group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}

.mkt-cards {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.mkt-section .platform-card {
  width: 100px;
  height: 100px;
  padding: 12px;
  gap: 7px;
}
.mkt-section .platform-logo { height: 34px; }

@media (max-width: 640px) {
  .mkt-cards { gap: 8px; }
}

/* ── K-Beauty 풀페이지 서브섹션 ── */
#section-kbeauty { padding: 0; }

/* 내부 페이지가 자체 상단 패딩을 가지므로 섹션 상단 패딩만 제거 · 하단은 footer와 간격 유지 */
#section-kbeauty { padding-top: 0; padding-bottom: 80px; }

/* ── 데이터 소스 섹션 ── */

.datasrc-platforms .platform-card {
  width: 100px;
  height: 100px;
  padding: 12px;
  gap: 7px;
}
.datasrc-platforms .platform-logo { height: 34px; }

.kbeauty-rest {
  padding: 0;
  background: #0C0C1E;
  background:
    radial-gradient(ellipse 70% 50% at 50% -2%,  rgba(68,237,122,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 92% 88%,  rgba(18,200,130,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 30% 22% at 5%  65%,  rgba(68,237,122,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(14,160,100,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 20% 15% at 20% 20%,  rgba(68,237,122,0.06) 0%, transparent 50%),
    #060C10;
  border-radius: 24px;
  overflow: hidden;
}

/* ── 요금 영역 ── */

.kbeauty-pricing-header .eyebrow {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.3;
  color: #fff;
}

/* ── CTA footer ── */
.kbeauty-cta-footer {
  margin-top: 48px;
  padding: 40px 24px 64px;
  text-align: center;
  background: transparent;
}
.kbeauty-cta-title {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}
.kbeauty-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--surface) !important;
  color: var(--text-strong) !important;
  box-shadow: none !important;
}
.kbeauty-cta-micro {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ── Preselling CTA — 솔루션 메인(.sol-cta-wrap)과 동일 래퍼 ── */

/* 솔루션 메인 CTA 패널(.kbeauty-rest)의 블루 변형 — 그라데이션 색만 블루로 */
.kbeauty-rest.cta-blue {
  background: #05080F;
  background:
    radial-gradient(ellipse 70% 50% at 50% -2%,  rgba(68,237,122,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 92% 88%,  rgba(12,126,181,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 30% 22% at 5%  65%,  rgba(68,237,122,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(7,77,110,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 20% 15% at 20% 20%,  rgba(68,237,122,0.06) 0%, transparent 50%),
    #05080F;
}

/* ── 회사 문의 영역 ── */

/* Solution 소개 블록 */

.kbi-desc-hl.is-visible::after {
  transform: scaleX(1);
}

/* K-Beauty 단계 소개 */
.kbeauty-solution-page .steps-panels { min-height: 360px; }
.kbeauty-solution-page .steps-panel { padding: 32px 36px; }

.kbeauty-pain-page .preselling-pain-grid { margin-top: 40px; }

@media (max-width: 768px) {

  .kbeauty-rest { padding: 0 24px 60px; }
  /* mobile: CTA 버튼 탭타깃을 44px 이상으로 확보 */
  .kbeauty-cta-btn { padding: 15px 28px; }
}

/* 선 채우기 애니메이션 (한국→일본) */
@keyframes mkt-fill-1 {
  0%, 5%  { stroke-dashoffset: 100; opacity: 0; }
  6%      { stroke-dashoffset: 100; opacity: 1; }
  38%     { stroke-dashoffset: 0;   opacity: 1; }
  88%     { stroke-dashoffset: 0;   opacity: 1; }
  96%, 100% { stroke-dashoffset: 0; opacity: 0; }
}
/* 레이블 박동 — 한국(초록) */
@keyframes mkt-kr-ring {
  0%, 10%, 100% { box-shadow: 0 1px 8px rgba(68,237,122,0.35); }
  4% { box-shadow: 0 0 0 10px rgba(68,237,122,0.18), 0 1px 10px rgba(68,237,122,0.5); }
  7% { box-shadow: 0 0 0 16px rgba(68,237,122,0), 0 1px 8px rgba(68,237,122,0.35); }
}
/* 레이블 박동 — 일본(빨강) */
@keyframes mkt-jp-ring {
  0%, 10%, 100% { box-shadow: none; }
  4% { box-shadow: 0 0 0 10px rgba(188,0,45,0.18); }
  7% { box-shadow: 0 0 0 16px rgba(188,0,45,0); }
}

/* ── Partners Marquee ──────────────────────────────── */

/* ── 홈 하단 CTA 래퍼 ── */

/* ============================================================
   Platform Overview Section
   ============================================================ */

/* Cards grid */

.platform-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Mock image area — 카드 폭 100% 꽉 차게, 모서리 없음(카드가 clip) */

/* Platform eyebrow — 텍스트는 검정, 형광펜 효과는 그린 유지 */
#section-platform .eyebrow { color: var(--text); }

/* Platform CTA */
#section-platform .btn {
  font-size: 13px;
  padding: 8px 20px;
  font-weight: 600;
}

/* Platform 형광펜 색상 변형 */

/* Platform 기능 설명 단락 */

/* ── Problem Section ── */

/* ── 셀러 유형별 솔루션 섹션 ── */

/* ── How It Works 섹션 ── */
.hiw-section {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 24px;
  box-sizing: border-box;
}

.hiw-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 홈페이지 HIW — 4카드 그리드 (height: 100vh 해제) */

.hiw-step.active {
  background: rgba(68, 237, 122, 0.05);
  border-radius: 0;
  margin: 0 -16px;
  padding: 0 16px;
}

.hiw-step.active .hiw-step-num {
  color: var(--green);
}

.hiw-step.active .hiw-step-body {
  display: flex;
}

.data-market-label.kr {
  color: var(--text);
  background: var(--green-hl);
}

.data-market-label.jp {
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.05);
}

/* Right mock area */

.hiw-mock-panel.active {
  display: block;
  animation: fsp-in 0.2s ease;
}

@media (max-width: 900px) {
  .hiw-section {
    height: auto;
    padding: 56px 16px;
    align-items: flex-start;
  }
  
  .hiw-mock-panel.active { flex: none; }

  .hiw-step.active { margin: 0 -8px; padding: 0 8px; }
}

/* ── FAQ 섹션 ── */

/* ── Pipeline / Agents 섹션 ── */
.pipeline-section {
  background: var(--surface);
}

/* 연결선 — 원 중심을 가로로 이어주는 선 */

/* 그라데이션: white → #0CCD49 solid 보간 */

.flow-agent {
  display: none;
}

.flow-src {
  display: none;
}

/* ── 실데이터 통계 섹션 ── */

@keyframes dstats-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* ── 비교표 섹션 ── */

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  /* SVG 언더라인 — 즉시 표시 */
  .title-underline-path {
    animation: none;
    stroke-dashoffset: 0;
  }

  /* 무한 반복 애니메이션 — 정지 */
  .mkt-path-1,
  .mkt-group-label.kr,
  .mkt-group-label.jp,
  .dstats-live-dot::after,
  .slide-dot {
    animation: none;
  }

  /* 슬라이드 페이드 — 즉시 전환 */
  
}

