/* =============================================
   웨이투고잇 — 디지털 전환 토탈 솔루션
   Design System v2.0
   ============================================= */

/* ── 접근성: 본문 바로가기 링크 ── */
.skip-to-main {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 99999;
  padding: 10px 20px;
  background: var(--primary, #5B45F0);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-to-main:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* ── 성능/렌더링 최적화 ── */
html {
  font-display: swap;         /* 폰트 로딩 중 시스템 폰트 우선 표시 */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
}
/* 리소스 힌트: 배너 이미지 GPU 레이어 분리
   ⚠️ contain:layout 은 position:fixed 를 격리해 헤더가 밀리므로 제거 */
.wi-effect-banner,
.hero-visual,
.industry-card,
.svc-visual-card {
  will-change: auto;
}
/* 이미지 기본 최적화 */
img {
  max-width: 100%;
  height: auto;
  display: block;
  loading: lazy;
}


/* ── CSS 변수 ── */
:root {
  /* Brand Colors */
  --primary:       #5B45F0;
  --primary-dark:  #4433D4;
  --primary-light: #7C66FF;
  --primary-glow:  rgba(91,69,240,0.25);

  /* Service Colors */
  --ai:      #00C9A7;
  --ai-dark: #009E84;
  --ai-glow: rgba(0,201,167,0.2);

  --builder:      #F7B731;
  --builder-dark: #D99B00;
  --builder-glow: rgba(247,183,49,0.2);

  --pos:      #FC5C65;
  --pos-dark: #E03E47;
  --pos-glow: rgba(252,92,101,0.2);

  --godash:      #A855F7;
  --godash-dark: #9333EA;
  --godash-glow: rgba(168,85,247,0.2);

  /* Neutrals */
  --bg:          #F8F9FF;
  --bg-alt:      #EEF0FB;
  --bg-dark:     #0D0E1A;
  --bg-dark2:    #13152B;
  --surface:     #FFFFFF;

  --text-primary:   #0D0E1A;
  --text-secondary: #4A4D6B;
  --text-muted:     #8589A8;
  --text-white:     #FFFFFF;

  --border:     rgba(91,69,240,0.12);
  --border-dark: rgba(255,255,255,0.1);

  /* Typography */
  --font-main: 'Noto Sans KR', 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(13,14,26,0.06);
  --shadow-md:  0 8px 32px rgba(13,14,26,0.1);
  --shadow-lg:  0 20px 60px rgba(13,14,26,0.15);
  --shadow-xl:  0 40px 100px rgba(13,14,26,0.2);
  --shadow-primary: 0 8px 32px rgba(91,69,240,0.35);

  /* Layout */
  --container: 1200px;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }
input, textarea, select { font-family: var(--font-main); }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section ── */
.section { padding: 100px 0; }
.alt-bg { background: var(--bg-alt); }
.dark-bg { background: var(--bg-dark); }

/* ── Gradient Text ── */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--ai) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Head ── */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91,69,240,0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
  border: 1px solid rgba(91,69,240,0.15);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.light-head .section-eyebrow { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }
.light-head .section-title { color: #fff; }
.light-head .section-desc { color: rgba(255,255,255,0.7); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(91,69,240,0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 15px 32px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-hero-primary {
  background: var(--primary);
  color: #fff;
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(91,69,240,0.4);
}
.btn-hero-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(91,69,240,0.5);
}
.btn-hero-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn-nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.btn-nav-phone:hover { color: var(--primary); }
.btn-primary-sm {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-primary-sm:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* transition:all 대신 명시적 속성만 — transform 포함 시 fixed 좌표 틀어짐 방지 */
  transition: background 0.3s var(--ease),
              box-shadow 0.3s var(--ease),
              backdrop-filter 0.3s var(--ease);
  padding: 0;
  transform: none !important; /* 어떤 경우에도 transform 무효 */
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 24px rgba(13,14,26,0.08);
}
.navbar {
  display: flex;
  align-items: center;
  gap: 0;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
.logo-icon-wrap {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(91,69,240,0.3);
  flex-shrink: 0;
}
.logo-icon-wrap.sm { width: 36px; height: 36px; border-radius: 9px; }
.logo-w {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main { font-size: 1.05rem; font-weight: 800; color: var(--text-primary); }
.logo-sub { font-size: 0.65rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.05em; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo .logo-main { color: #fff; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 24px;
}
/* 데스크탑에서는 모바일 전용 요소 숨김 */
.mobile-sub-links,
.mobile-menu-cta {
  display: none;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--primary); background: rgba(91,69,240,0.06); }
.nav-arrow { font-size: 0.65rem; transition: transform 0.2s; }
.nav-item.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  min-width: 380px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s var(--ease);
  z-index: 100;
}
.nav-item.has-dropdown:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-dropdown-inner { padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.mega-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
  position: relative;
}
.mega-item:hover { background: var(--bg); }
.mega-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.bread-mega .mega-icon { background: rgba(91,69,240,0.1); color: var(--primary); }
.ai-mega .mega-icon { background: rgba(0,201,167,0.1); color: var(--ai); }
.builder-mega .mega-icon { background: rgba(247,183,49,0.1); color: var(--builder-dark); }
.pos-mega .mega-icon { background: rgba(252,92,101,0.1); color: var(--pos); }
.mega-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.mega-text span { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 1px; }
.mega-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--primary);
  color: #fff;
}
.mega-badge.free { background: var(--ai); }
.mega-badge.si { background: var(--pos); }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;       /* 터치 최소 크기 44×44 */
  padding: 10px;
  margin-left: 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12); /* 히어로 위에서도 구분 */
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  position: relative;
  z-index: 1100;                    /* 항상 최상위 */
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
/* 스크롤 후 헤더 흰 배경일 때 */
.header.scrolled .hamburger {
  background: rgba(91,69,240,0.08);
  border-color: rgba(91,69,240,0.18);
}
.hamburger:hover {
  background: rgba(91,69,240,0.15);
  border-color: rgba(91,69,240,0.3);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;               /* 히어로(다크) 위에서 항상 흰색 */
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s, background 0.2s;
  pointer-events: none;
}
/* 스크롤 후 → 어두운 선 */
.header.scrolled .hamburger span {
  background: var(--text-primary);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(0, 7px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(0, -7px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #06070f 0%, #0d0e1a 30%, #1a1040 60%, #0e1635 100%);
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(124,102,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,69,240,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,69,240,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: rgba(91,69,240,0.35); top: -150px; left: -120px; }
.orb-2 { width: 450px; height: 450px; background: rgba(0,201,167,0.2); bottom: -80px; right: 5%; animation-delay: -3s; }
.orb-3 { width: 350px; height: 350px; background: rgba(247,183,49,0.12); top: 40%; left: 38%; animation-delay: -6s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Hero Layout */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--ai);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ai);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-badge-text { font-size: 0.8rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.hero-heading {
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-wrap: normal;
}
/* 각 줄을 독립 블록으로 — 절대 줄바꿈 없음 */
.hero-line1,
.hero-line2 {
  display: block;
  white-space: nowrap;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}
.pc-br { display: block; }
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
  padding: 0 24px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hero-stat-num { display: inline; }
.hero-stat-unit { font-size: 1rem; font-weight: 700; color: var(--ai); }
.hero-stat p { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* Hero Dashboard */
.hero-visual { position: relative; z-index: 1; }
.hero-dashboard { position: relative; }

.dash-card.dash-main {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-dots { display: flex; gap: 6px; }
.dd { width: 10px; height: 10px; border-radius: 50%; }
.dd.red { background: #FC5C65; }
.dd.yellow { background: #F7B731; }
.dd.green { background: #00C9A7; }
.dash-title { font-size: 0.78rem; color: rgba(255,255,255,0.5); flex: 1; text-align: center; }
.dash-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ai);
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--ai);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ai);
  animation: blink 1.5s ease-in-out infinite;
}
.dash-body { padding: 20px 18px; }
.dash-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.dash-kpi {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 12px;
}
.dash-kpi-label { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.dash-kpi-val { display: block; font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.dash-kpi-change { display: flex; align-items: center; gap: 3px; font-size: 0.7rem; font-weight: 600; }
.dash-kpi-change.up { color: var(--ai); }
.dash-chart-area { display: flex; gap: 16px; align-items: flex-end; }
.dash-chart { flex: 1; }
.dash-bar-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}
.dash-bar {
  flex: 1;
  height: var(--bh, 50%);
  background: rgba(91,69,240,0.3);
  border-radius: 4px 4px 0 0;
  transition: height 0.8s cubic-bezier(0.4,0,0.2,1), background 0.3s;
}
.dash-bar.active { background: var(--primary-light); box-shadow: 0 0 12px rgba(124,102,255,0.5); }
.dash-chart-labels {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.dash-chart-labels span { flex: 1; text-align: center; font-size: 0.6rem; color: rgba(255,255,255,0.3); }
.dash-pie-area {
  width: 70px; height: 70px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dash-pie-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(var(--ai) 0% 24%, rgba(255,255,255,0.1) 24% 100%);
}
.dash-pie-center { position: relative; z-index: 1; text-align: center; background: rgba(13,14,26,0.8); border-radius: 50%; width: 46px; height: 46px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.dash-pie-center span { font-size: 0.55rem; color: rgba(255,255,255,0.4); }
.dash-pie-center strong { font-size: 0.85rem; font-weight: 800; color: #fff; }

/* Floating Cards */
.dash-float {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 4s ease-in-out infinite;
}
.dash-float-ai { bottom: -20px; left: -24px; animation-delay: 0s; }
.dash-float-pos { top: -18px; right: -18px; animation-delay: -2s; font-size: 0.82rem; }
.dash-float-notif { top: 50%; right: -28px; transform: translateY(-50%); animation-delay: -1s; font-size: 0.82rem; white-space: nowrap; gap: 8px; }
.dash-float-sale { bottom: -20px; right: -16px; animation: none; opacity: 0; font-size: 0.82rem; z-index: 4; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.dash-float-notif { animation: floatCardH 4s ease-in-out infinite; }
.dash-float-ai { animation: floatCardA 4s ease-in-out infinite; }
@keyframes floatCardA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes floatCardH { 0%, 100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 6px)); } }
.dash-float-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ai-icon { background: rgba(0,201,167,0.12); color: var(--ai); }
.pos-icon { background: rgba(252,92,101,0.12); color: var(--pos); }
.saas-icon { background: rgba(124,102,255,0.12); color: var(--primary); }
.dash-float-text strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-primary); }
.dash-float-text span { display: block; font-size: 0.7rem; color: var(--text-muted); }
.dash-float-pulse {
  position: absolute;
  top: -3px; right: -3px;
  width: 10px; height: 10px;
  background: var(--ai);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ai);
  animation: blink 2s ease-in-out infinite;
}
.notif-icon { color: var(--builder-dark); font-size: 0.95rem; }

/* === 강화된 Hero Dashboard 스타일 === */

/* KPI 스파크라인 미니차트 */
.kpi-spark {
  margin-top: 8px;
  height: 24px;
  overflow: hidden;
}
.kpi-spark-line {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 100%;
}
.kpi-spark-line::before,
.kpi-spark-line::after { content: ''; }
.kpi-spark {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 24px;
}
/* 스파크 바를 JS로 그리는 대신 CSS 클립패스 활용 */
.dash-kpi-hover {
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.dash-kpi-hover:hover {
  background: rgba(124,102,255,0.15) !important;
  transform: translateY(-2px);
}

/* 실시간 피드 */
.dash-feed {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin: 12px 0;
}
.feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  padding: 3px 0;
  transition: color 0.3s, background 0.3s;
  border-radius: 4px;
  padding: 4px 6px;
}
.feed-item.active {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
}
.feed-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ai-dot { background: var(--ai); box-shadow: 0 0 5px var(--ai); animation: blink 1.5s infinite; }
.saas-dot { background: var(--primary-light); }
.gd-dot { background: #F7B731; }
.feed-msg { flex: 1; }
.feed-msg b { color: rgba(255,255,255,0.7); }
.feed-time { font-size: 0.62rem; color: rgba(255,255,255,0.3); flex-shrink: 0; }

/* 새 플로팅 카드: 매출 알림 */
.dash-float-sale {
  bottom: -20px;
  right: -20px;
  animation-delay: -3s;
  z-index: 3;
}
.sale-icon { background: rgba(247,183,49,0.15); color: #F7B731; }

/* 바 높이 CSS 변수 */
/* dash-bar height via CSS var - defined in main rule above */

/* 대시보드 호버 글로우 */
.dash-card.dash-main {
  transition: box-shadow 0.3s;
}
.dash-card.dash-main:hover {
  box-shadow: 0 0 40px rgba(124,102,255,0.25), 0 20px 60px rgba(0,0,0,0.5);
}

/* 라이브 배지 향상 */
.dch-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--ai);
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.2);
  border-radius: 20px;
  padding: 2px 8px;
}
.live-dot-sm {
  width: 5px; height: 5px;
  background: var(--ai);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   TRUSTED BY
   ============================================= */
.trusted-section {
  background: var(--surface);
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trusted-label-wrap {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.trusted-marquee-wrap { overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.trusted-marquee {
  display: flex;
  gap: 0;
  animation: marqueeSlide 28s linear infinite;
  width: max-content;
}
@keyframes marqueeSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trusted-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 32px;
  white-space: nowrap;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  border-right: 1px solid var(--border);
}
.trusted-item i { color: var(--primary); opacity: 0.6; font-size: 0.9rem; }

/* =============================================
   SERVICES SLIDER
   ============================================= */

/* Nav tabs */
.svc-slider-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 4px 4px 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.svc-slider-nav::-webkit-scrollbar { display: none; }
.svc-snav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  min-width: 130px;
  flex-shrink: 0;
  position: relative;
}
.svc-snav:hover {
  border-color: var(--primary);
  background: rgba(91,69,240,0.04);
  transform: translateY(-2px);
}
.svc-snav.active {
  border-color: var(--primary);
  background: linear-gradient(145deg, rgba(91,69,240,0.08) 0%, rgba(91,69,240,0.02) 100%);
  box-shadow: 0 4px 20px rgba(91,69,240,0.12);
}
.svc-snav-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all 0.25s;
}
.svc-snav.active .svc-snav-icon { background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(91,69,240,0.35); }
.svc-snav:nth-child(2).active .svc-snav-icon { background: var(--ai); box-shadow: 0 4px 12px rgba(0,201,167,0.35); }
.svc-snav:nth-child(3).active .svc-snav-icon { background: var(--builder-dark); box-shadow: 0 4px 12px rgba(247,183,49,0.35); }
.svc-snav:nth-child(4).active .svc-snav-icon { background: var(--godash); box-shadow: 0 4px 12px rgba(168,85,247,0.35); }
.svc-snav:nth-child(5).active .svc-snav-icon { background: var(--pos); box-shadow: 0 4px 12px rgba(252,92,101,0.35); }
.svc-snav span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.3;
  transition: color 0.2s;
}
.svc-snav.active span { color: var(--primary); }
.svc-snav-badge {
  position: absolute;
  top: 8px; right: 8px;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.svc-snav-badge.core { background: rgba(91,69,240,0.12); color: var(--primary); }
.svc-snav-badge.new { background: rgba(0,201,167,0.12); color: var(--ai-dark); }
.svc-snav-badge.free { background: rgba(247,183,49,0.15); color: var(--builder-dark); }
.svc-snav-badge.dash { background: rgba(168,85,247,0.12); color: var(--godash); }
.svc-snav-badge.si { background: rgba(252,92,101,0.12); color: var(--pos); }

/* Progress bar */
.svc-progress-wrap {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 0 32px;
  overflow: hidden;
}
.svc-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  width: 0%;
  transition: width 0.12s linear;
}

/* Slides container */
.svc-slides-wrap {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.svc-slide {
  display: none;
  animation: svcFadeIn 0.4s var(--ease);
}
.svc-slide.active { display: block; }
@keyframes svcFadeIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.svc-slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 16px 0 32px;
}
.svc-slide-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}
.svc-slide-content h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.svc-slide-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}
.svc-slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.sst {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}
.saas-st { background: rgba(91,69,240,0.08); color: var(--primary); border: 1px solid rgba(91,69,240,0.15); }
.ai-st { background: rgba(0,201,167,0.08); color: var(--ai-dark); border: 1px solid rgba(0,201,167,0.15); }
.builder-st { background: rgba(247,183,49,0.1); color: var(--builder-dark); border: 1px solid rgba(247,183,49,0.2); }
.godash-st { background: rgba(168,85,247,0.08); color: var(--godash); border: 1px solid rgba(168,85,247,0.15); }
.pos-st { background: rgba(252,92,101,0.08); color: var(--pos); border: 1px solid rgba(252,92,101,0.15); }

/* Slide visual cards */
.svc-visual-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.svc-vc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}
.saas-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.ai-header { background: linear-gradient(135deg, #00C9A7 0%, #009E84 100%); }
.builder-header { background: linear-gradient(135deg, #F7B731 0%, #D99B00 100%); }
.godash-header { background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%); }
.pos-header { background: linear-gradient(135deg, #FC5C65 0%, #E03E47 100%); }

.svc-vc-header span { flex: 1; }
.svc-vc-dots { display: flex; gap: 4px; }
.svc-vc-dots span { width: 8px; height: 8px; background: rgba(255,255,255,0.35); border-radius: 50%; }
.svc-vc-body { padding: 20px; background: #fff; }

/* Slide 1: SaaS mini */
.svc-mini-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.smk {
  text-align: center;
  padding: 12px 8px;
  background: var(--bg);
  border-radius: var(--radius-md);
}
.smk span { display: block; font-size: 0.65rem; color: var(--text-muted); margin-bottom: 4px; }
.smk strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--text-primary); }
.smk em.up { display: block; font-size: 0.65rem; font-weight: 700; color: #10B981; font-style: normal; }

.svc-app-icons-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sai-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  min-width: 56px;
  border: 1.5px solid var(--border);
  font-size: 0.65rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.sai-item:hover { border-color: var(--primary); background: rgba(91,69,240,0.04); }
.saas-c i { font-size: 1rem; color: var(--primary); margin-bottom: 2px; }
.more-sai {
  background: var(--primary);
  color: #fff !important;
  border-color: var(--primary) !important;
  font-weight: 700;
  font-size: 0.75rem !important;
  justify-content: center;
}

/* Slide 2: AI mini */
.ai-metrics-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.ai-metric {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  background: rgba(0,201,167,0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,201,167,0.12);
}
.ai-metric i { display: block; font-size: 1rem; color: var(--ai); margin-bottom: 6px; }
.ai-metric strong { display: block; font-size: 0.95rem; font-weight: 800; color: var(--text-primary); }
.ai-metric span { font-size: 0.65rem; color: var(--text-muted); }
.ai-tasks-list { display: flex; flex-direction: column; gap: 8px; }
.ai-task {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.ai-task em { margin-left: auto; font-style: normal; font-size: 0.65rem; font-weight: 700; }
.at-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.at-dot.running { background: var(--ai); animation: blink 1.5s infinite; }
.at-dot.done { background: #10B981; }

/* Slide 3: Builder mini */
.builder-preview-mini {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
  margin-bottom: 12px;
}
.bpm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
}
.bpm-logo { font-weight: 700; color: var(--text-primary); }
.bpm-links { display: flex; gap: 10px; color: var(--text-muted); }
.bpm-hero {
  padding: 20px 16px;
  text-align: center;
}
.bpm-title { font-size: 0.88rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.bpm-sub { font-size: 0.72rem; color: rgba(255,255,255,0.75); }
.bpm-cards {
  display: flex;
  gap: 6px;
  padding: 8px;
  background: #f9fafb;
}
.bpm-card { flex: 1; height: 28px; background: var(--border); border-radius: 4px; }
.builder-gen-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  background: rgba(247,183,49,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--builder-dark);
  border: 1px solid rgba(247,183,49,0.2);
}

/* Slide 4: GoDash mini */
.gd-mini-kpis {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.gdmk {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  background: rgba(168,85,247,0.06);
  border-radius: var(--radius-sm);
}
.gdmk span { display: block; font-size: 0.62rem; color: var(--text-muted); margin-bottom: 3px; }
.gdmk strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--text-primary); }
.gdmk em { display: block; font-size: 0.62rem; font-weight: 700; color: #10B981; font-style: normal; }
.gd-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 52px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 6px;
  margin-bottom: 10px;
}
.gdmc-bar { flex: 1; background: rgba(168,85,247,0.2); border-radius: 2px 2px 0 0; }
.gdmc-bar.active { background: var(--godash); }
.gd-insight-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(168,85,247,0.06);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  color: var(--text-secondary);
  border-left: 3px solid var(--godash);
}
.gd-insight-mini i { color: var(--godash); }

/* Slide 5: POS mini */
.pos-mini-kpis {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.pmk {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  background: rgba(252,92,101,0.05);
  border-radius: var(--radius-sm);
}
.pmk span { display: block; font-size: 0.62rem; color: var(--text-muted); margin-bottom: 3px; }
.pmk strong { display: block; font-size: 0.78rem; font-weight: 800; color: var(--text-primary); }
.pmk em.up { display: block; font-size: 0.62rem; font-weight: 700; color: #10B981; font-style: normal; }
.pos-system-row {
  display: flex;
  gap: 8px;
}
.psr-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.psr-item i { font-size: 1.2rem; }
.kiosk-psr { border-color: rgba(252,92,101,0.2); }
.kiosk-psr i { color: var(--pos); }
.table-psr { border-color: rgba(247,183,49,0.2); }
.table-psr i { color: var(--builder-dark); }
.pos-psr { border-color: rgba(91,69,240,0.2); }
.pos-psr i { color: var(--primary); }
.psr-item em.on {
  font-size: 0.6rem;
  font-weight: 700;
  font-style: normal;
  padding: 2px 7px;
  border-radius: 100px;
  background: rgba(16,185,129,0.1);
  color: #10B981;
}

/* Slider CTA buttons */
.btn-ai-slide { background: linear-gradient(135deg, var(--ai) 0%, var(--ai-dark) 100%); color: #fff; display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-md); font-weight: 700; font-size: 0.95rem; transition: all 0.25s; box-shadow: 0 6px 20px rgba(0,201,167,0.3); }
.btn-ai-slide:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,201,167,0.45); }
.btn-builder-slide { background: linear-gradient(135deg, #F7B731 0%, #D99B00 100%); color: #fff; display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-md); font-weight: 700; font-size: 0.95rem; transition: all 0.25s; box-shadow: 0 6px 20px rgba(247,183,49,0.3); }
.btn-builder-slide:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(247,183,49,0.45); }
.btn-godash-slide { background: linear-gradient(135deg, var(--godash) 0%, #EC4899 100%); color: #fff; display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-md); font-weight: 700; font-size: 0.95rem; transition: all 0.25s; box-shadow: 0 6px 20px rgba(168,85,247,0.3); }
.btn-godash-slide:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(168,85,247,0.45); }
.btn-pos-slide { background: linear-gradient(135deg, var(--pos) 0%, var(--pos-dark) 100%); color: #fff; display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-md); font-weight: 700; font-size: 0.95rem; transition: all 0.25s; box-shadow: 0 6px 20px rgba(252,92,101,0.3); }
.btn-pos-slide:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(252,92,101,0.45); }

/* Slider controls */
.svc-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.svc-ctrl-prev, .svc-ctrl-next {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.svc-ctrl-prev:hover, .svc-ctrl-next:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(91,69,240,0.05);
}
.svc-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.svc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.svc-dot.active {
  background: var(--primary);
  width: 22px;
  border-radius: 4px;
}

/* =============================================
   DETAIL SECTIONS
   ============================================= */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reverse-grid { direction: ltr; }
.reverse-grid .detail-visual { order: 1; }
.reverse-grid .detail-content { order: 2; }
.detail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.bread-color { background: rgba(91,69,240,0.08); color: var(--primary); }
.ai-color { background: rgba(0,201,167,0.1); color: var(--ai-dark); }
.builder-color { background: rgba(247,183,49,0.1); color: var(--builder-dark); }
.pos-color { background: rgba(252,92,101,0.1); color: var(--pos-dark); }
.detail-content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text-primary);
}
.detail-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}
.feature-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.bread-check { color: var(--primary); font-size: 1rem; }
.detail-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.saas-color { background: rgba(91,69,240,0.08); color: var(--primary); }

/* =============================================
   SAAS APPS GRID — 개선된 버전
   ============================================= */
.saas-apps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 24px 0 28px;
}
.saas-app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 16px 8px 13px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--surface);
  transition: all 0.22s var(--ease);
  cursor: default;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.saas-app-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.22s;
  border-radius: 2px 2px 0 0;
}
.saas-app-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.09); }
.saas-app-item:hover::before { opacity: 1; }
.crm-app::before   { background: var(--primary); }
.sales-app::before { background: var(--ai); }
.sub-app::before   { background: var(--builder); }
.acc-app::before   { background: #10B981; }
.pay-app::before   { background: var(--pos); }
.bill-app::before  { background: #3B82F6; }
.esign-app::before { background: var(--godash); }
.eappr-app::before { background: #F59E0B; }
.econ-app::before  { background: #EC4899; }
.inv-app::before   { background: #06B6D4; }
.hr-app::before    { background: #10B981; }
.pay2-app::before  { background: #22C55E; }
.mkt-app::before   { background: #EF4444; }
.mem-app::before   { background: #6366F1; }
.cs-app::before    { background: #14B8A6; }
.chat-app::before  { background: #FB923C; }
.ai-app::before    { background: var(--ai); }
.ana-app::before   { background: var(--godash); }
.prj-app::before   { background: #0EA5E9; }
.more-app::before  { background: var(--primary); }

.sai-icon-wrap {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 2px;
  transition: all 0.22s;
  position: relative;
}
/* 앱별 컬러 아이콘 */
.crm-app .sai-icon-wrap  { background: rgba(91,69,240,0.12);  color: var(--primary); }
.sales-app .sai-icon-wrap{ background: rgba(0,201,167,0.12);  color: var(--ai-dark); }
.sub-app .sai-icon-wrap  { background: rgba(247,183,49,0.12); color: var(--builder-dark); }
.acc-app .sai-icon-wrap  { background: rgba(16,185,129,0.12); color: #10B981; }
.pay-app .sai-icon-wrap  { background: rgba(252,92,101,0.12); color: var(--pos); }
.bill-app .sai-icon-wrap { background: rgba(59,130,246,0.12); color: #3B82F6; }
.esign-app .sai-icon-wrap{ background: rgba(168,85,247,0.12); color: var(--godash); }
.eappr-app .sai-icon-wrap{ background: rgba(245,158,11,0.12); color: #F59E0B; }
.econ-app .sai-icon-wrap { background: rgba(236,72,153,0.12); color: #EC4899; }
.inv-app .sai-icon-wrap  { background: rgba(6,182,212,0.12);  color: #06B6D4; }
.hr-app .sai-icon-wrap   { background: rgba(16,185,129,0.12); color: #10B981; }
.pay2-app .sai-icon-wrap { background: rgba(34,197,94,0.12);  color: #22C55E; }
.mkt-app .sai-icon-wrap  { background: rgba(239,68,68,0.12);  color: #EF4444; }
.mem-app .sai-icon-wrap  { background: rgba(99,102,241,0.12); color: #6366F1; }
.cs-app .sai-icon-wrap   { background: rgba(20,184,166,0.12); color: #14B8A6; }
.chat-app .sai-icon-wrap { background: rgba(251,146,60,0.12); color: #FB923C; }
.ai-app .sai-icon-wrap   { background: rgba(0,201,167,0.14); color: var(--ai); }
.ana-app .sai-icon-wrap  { background: rgba(168,85,247,0.12); color: var(--godash); }
.prj-app .sai-icon-wrap  { background: rgba(14,165,233,0.12); color: #0EA5E9; }
.more-app .sai-icon-wrap { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; box-shadow: 0 4px 12px rgba(91,69,240,0.3); }

.saas-app-item span {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.saas-app-item em {
  font-size: 0.6rem;
  font-style: normal;
  color: var(--text-muted);
  line-height: 1;
}
.saas-app-item:hover .sai-icon-wrap { transform: scale(1.12) rotate(-3deg); }
.saas-app-more {
  background: rgba(91,69,240,0.04);
  border-color: rgba(91,69,240,0.2);
  cursor: pointer;
}
.saas-app-more:hover { background: var(--primary) !important; border-color: var(--primary) !important; }
.saas-app-more:hover span { color: #fff !important; }
.saas-app-more:hover em { color: rgba(255,255,255,0.7) !important; }
.saas-app-more:hover .sai-icon-wrap { background: rgba(255,255,255,0.25) !important; color: #fff !important; transform: scale(1.1) rotate(0deg) !important; }

/* SaaS Mockup */
.saas-mockup {
  display: flex;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  background: #fff;
  height: 340px;
}
.saas-sidebar {
  width: 100px;
  background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
  padding: 16px 0;
  flex-shrink: 0;
}
.saas-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 8px;
}
.saas-logo-area i { color: rgba(255,255,255,0.9); font-size: 1.1rem; }
.saas-logo-area span { font-size: 0.58rem; font-weight: 700; color: rgba(255,255,255,0.6); text-align: center; line-height: 1.2; }
.saas-menu-items { display: flex; flex-direction: column; gap: 2px; padding: 0 8px; }
.saas-mi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 6px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.saas-mi i { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.saas-mi span { font-size: 0.55rem; color: rgba(255,255,255,0.4); font-weight: 600; }
.saas-mi.active { background: rgba(255,255,255,0.15); }
.saas-mi.active i, .saas-mi.active span { color: rgba(255,255,255,0.95); }
.saas-mi:hover:not(.active) { background: rgba(255,255,255,0.08); }
.saas-main-area { flex: 1; padding: 0; overflow: hidden; }
.saas-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.saas-page-title { font-size: 0.78rem; font-weight: 700; color: var(--text-primary); }
.saas-notif {
  position: relative;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.saas-notif em {
  position: absolute;
  top: -4px; right: -5px;
  width: 14px; height: 14px;
  background: var(--pos);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  font-style: normal;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.saas-kpi-row { display: flex; gap: 8px; padding: 10px 12px; }
.saas-kpi-card {
  flex: 1;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px;
  border: 1px solid var(--border);
}
.saas-kpi-card span { display: block; font-size: 0.58rem; color: var(--text-muted); margin-bottom: 3px; }
.saas-kpi-card strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--text-primary); }
.saas-kpi-card small { display: block; font-size: 0.58rem; font-weight: 700; }
.up-text { color: #10B981; }
.saas-chart-area { padding: 0 12px 8px; }
.saas-chart-label { font-size: 0.65rem; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; }
.saas-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  background: var(--bg);
  border-radius: 6px;
  padding: 6px 6px 0;
}
.saas-bar {
  flex: 1;
  background: rgba(91,69,240,0.2);
  border-radius: 2px 2px 0 0;
  transition: height 0.6s ease;
  position: relative;
}
.saas-bar span {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.saas-bar.highlight { background: var(--primary); }
.saas-apps-row { display: flex; gap: 6px; padding: 6px 12px 10px; }
.saas-app-mini {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.15s;
}
.saas-app-mini.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.saas-app-mini.more-apps { background: rgba(91,69,240,0.1); color: var(--primary); font-weight: 700; font-size: 0.58rem; border-color: rgba(91,69,240,0.2); }
.saas-badge-label {
  position: absolute;
  bottom: -12px; right: -12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(91,69,240,0.35);
  white-space: nowrap;
}

/* SaaS Industries — 이미지 배너 카드 스타일 */
.saas-industries { margin-top: 60px; }
.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

/* 이미지 배너 카드 */
.industry-card.ic-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.industry-card.ic-img-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

/* 실제 배경 이미지 레이어 — 인라인 style로 background-image 지정 */
.ic-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.industry-card.ic-img-card:hover .ic-img-bg {
  transform: scale(1.08);
}

/* 오버레이 레이어 — 아래에서 위로 그라디언트 */
.ic-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
  transition: background 0.3s;
}
.industry-card.ic-img-card:hover .ic-img-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

/* 콘텐츠 레이어 */
.ic-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 18px 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* 아이콘 */
.ic-icon-sm {
  width: 32px; height: 32px;
  background: var(--ic-color, rgba(255,255,255,0.2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 4px;
  border: 1px solid rgba(255,255,255,0.3);
}

.ic-content strong {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  line-height: 1.2;
}
.ic-content span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

/* 태그 바 */
.ic-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.ic-tags em {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 20px;
  padding: 2px 9px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.industry-card.ic-img-card:hover .ic-tags em {
  background: rgba(255,255,255,0.25);
}

/* 기존 .industry-card 호환 유지 (아이콘형) */
.industry-card:not(.ic-img-card) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.industry-card:not(.ic-img-card):hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(91,69,240,0.12); }
.ic-icon {
  width: 48px; height: 48px;
  background: rgba(91,69,240,0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  transition: all 0.25s;
}
.industry-card:not(.ic-img-card):nth-child(1) .ic-icon { background: rgba(16,185,129,0.1); color: #10B981; }
.industry-card:not(.ic-img-card):nth-child(2) .ic-icon { background: rgba(59,130,246,0.12); color: #3B82F6; }
.industry-card:not(.ic-img-card):nth-child(3) .ic-icon { background: rgba(247,183,49,0.12); color: var(--builder-dark); }
.industry-card:not(.ic-img-card):nth-child(4) .ic-icon { background: rgba(252,92,101,0.1); color: var(--pos); }
.industry-card:not(.ic-img-card):nth-child(5) .ic-icon { background: rgba(0,201,167,0.1); color: var(--ai-dark); }
.industry-card:not(.ic-img-card):nth-child(6) .ic-icon { background: rgba(168,85,247,0.1); color: var(--godash); }
.industry-card:not(.ic-img-card):hover .ic-icon { transform: scale(1.1) rotate(-5deg); }
.industry-card:not(.ic-img-card) strong { font-size: 0.95rem; font-weight: 800; color: var(--text-primary); }
.industry-card:not(.ic-img-card) span { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; }

/* Browser Frame */
.browser-frame {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #F4F5F8;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.browser-dots { display: flex; gap: 6px; }
.bd { width: 11px; height: 11px; border-radius: 50%; }
.bd.red { background: #FC5C65; }
.bd.yellow { background: #F7B731; }
.bd.green { background: #00C9A7; }
.browser-url-bar {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0,0,0,0.06);
}
.url-lock { color: var(--ai-dark); font-size: 0.7rem; }
.browser-screen.bread-screen { padding: 20px; background: var(--bg); }
.bs-nav {
  display: flex; align-items: center; gap: 12px;
  background: #fff; padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: 16px;
}
.bs-logo-box { width: 60px; height: 16px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 4px; }
.bs-menu { display: flex; gap: 8px; flex: 1; justify-content: center; }
.bs-mi { width: 40px; height: 8px; background: var(--border); border-radius: 4px; }
.bs-btn-box { width: 60px; height: 24px; background: var(--primary); border-radius: 6px; }
.bs-hero { padding: 24px 14px; background: #fff; border-radius: var(--radius-sm); margin-bottom: 12px; }
.bs-lines { margin-bottom: 14px; display: flex; flex-direction: column; gap: 8px; }
.bs-line { height: 10px; background: var(--border); border-radius: 4px; }
.bs-line.long { width: 80%; }
.bs-line.mid { width: 60%; }
.bs-line.short { width: 40%; }
.bs-btns { display: flex; gap: 8px; }
.bs-btn { height: 28px; border-radius: 7px; }
.bs-btn.primary { width: 80px; background: var(--primary); }
.bs-btn.outline { width: 70px; border: 2px solid var(--border); }
.bs-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.bs-card { height: 60px; background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.editor-cursor-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  padding: 8px;
  background: rgba(91,69,240,0.06);
  border-radius: var(--radius-sm);
  margin-top: 8px;
  animation: cursorBlink 2s ease-in-out infinite;
}
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0.5} }
.template-badge {
  position: absolute;
  bottom: -12px; right: 24px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 16px rgba(91,69,240,0.4);
}

/* Chat Interface */
.chat-interface {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.chat-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--ai) 0%, #00a88c 100%);
  color: #fff;
}
.chat-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.ai-av { background: rgba(255,255,255,0.2); }
.chat-info { flex: 1; }
.chat-info strong { display: block; font-size: 0.9rem; font-weight: 700; }
.online-indicator { display: flex; align-items: center; gap: 5px; font-size: 0.75rem; opacity: 0.85; }
.online-dot-pulse {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
.chat-menu-icon { opacity: 0.7; }
.chat-messages { padding: 16px; display: flex; flex-direction: column; gap: 12px; max-height: 280px; overflow-y: auto; }
.chat-msg { display: flex; align-items: flex-end; gap: 8px; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-av-sm {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.chat-bubble { padding: 10px 14px; border-radius: 16px; font-size: 0.85rem; line-height: 1.5; max-width: 80%; }
.bot-bubble {
  background: var(--bg);
  color: var(--text-primary);
  border-radius: 4px 16px 16px 16px;
}
.user-bubble {
  background: var(--ai);
  color: #fff;
  border-radius: 16px 4px 16px 16px;
}
.chat-ts { font-size: 0.65rem; color: var(--text-muted); margin-bottom: 2px; }
.typing-anim { display: flex; gap: 4px; align-items: center; padding: 12px 16px; }
.typing-anim span {
  width: 7px; height: 7px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingDot 1.2s ease-in-out infinite;
}
.typing-anim span:nth-child(2) { animation-delay: 0.2s; }
.typing-anim span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}
.chat-inputbar {
  display: flex;
  gap: 0;
  padding: 12px;
  border-top: 1px solid var(--border);
  background: #fafbff;
}
.chat-inputbar input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 10px 0 0 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  outline: none;
}
.chat-inputbar input:focus { border-color: var(--ai); }
.chat-inputbar button {
  background: var(--ai);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 10px 10px 0;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.chat-inputbar button:hover { background: var(--ai-dark); }
.effect-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-top: 16px;
  border-left: 3px solid var(--ai);
}
.effect-icon { color: var(--ai); font-size: 1.2rem; }
.effect-badge strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.effect-badge span { font-size: 0.75rem; color: var(--text-muted); }

/* Use Cases */
.use-cases-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.uc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.uc-item:hover { border-color: var(--ai); background: rgba(0,201,167,0.02); }
.uc-icon {
  width: 40px; height: 40px;
  background: rgba(0,201,167,0.1);
  color: var(--ai-dark);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.uc-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.uc-text span { font-size: 0.82rem; color: var(--text-secondary); }

/* ===== AI Benefit Cards — 재설계 ===== */
.ai-benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 28px;
}
.ai-benefit-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 14px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.ai-benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  opacity: 0;
  transition: opacity 0.25s;
}
.ai-benefit-card:nth-child(1)::before { background: linear-gradient(90deg, #10B981, #059669); }
.ai-benefit-card:nth-child(2)::before { background: linear-gradient(90deg, var(--ai), var(--ai-dark)); }
.ai-benefit-card:nth-child(3)::before { background: linear-gradient(90deg, var(--primary-light), var(--primary)); }
.ai-benefit-card:hover {
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.ai-benefit-card:hover::before { opacity: 1; }

/* 아이콘 래퍼 */
.ai-bc-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.ai-benefit-card:hover .ai-bc-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.ai-bc-icon-wrap.cost  { background: rgba(16,185,129,0.12);  color: #10B981; }
.ai-bc-icon-wrap.people{ background: rgba(0,201,167,0.12);   color: var(--ai); }
.ai-bc-icon-wrap.time  { background: rgba(124,102,255,0.12); color: var(--primary-light); }

/* 텍스트 본문 */
.ai-bc-body { display: flex; flex-direction: column; gap: 2px; }
.ai-bc-num {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2px;
}
.ai-benefit-card:nth-child(1) .ai-bc-num { color: #10B981; }
.ai-benefit-card:nth-child(2) .ai-bc-num { color: var(--ai); }
.ai-benefit-card:nth-child(3) .ai-bc-num { color: var(--primary-light); }
.ai-bc-body strong { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); }
.ai-bc-body span   { font-size: 0.72rem; color: var(--text-secondary); line-height: 1.4; }

/* Auto Builder */
.auto-builder-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.ab-header {
  background: linear-gradient(135deg, var(--builder) 0%, #f5a623 100%);
  color: #fff;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ab-body { padding: 20px; }
.ab-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 10px; }
.ab-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ab-chip {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  background: var(--bg);
  transition: all 0.2s;
  cursor: pointer;
}
.ab-chip:hover, .ab-chip.active {
  border-color: var(--builder);
  background: rgba(247,183,49,0.1);
  color: var(--builder-dark);
}
.ab-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.ab-input:focus { border-color: var(--builder); }
.ab-generating { padding: 0 20px 20px; }
.gen-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}
.gen-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--builder), var(--primary));
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease;
}
.gen-steps { display: flex; flex-direction: column; gap: 8px; }
.gen-step { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.gen-step.active { color: var(--primary); font-weight: 600; }
.gen-step.done { color: var(--ai); }
.ab-result { border-top: 1px solid var(--border); }
.ab-result-preview { padding: 14px 18px; }
.abr-nav {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; background: var(--bg); border-radius: var(--radius-sm); margin-bottom: 10px;
}
.abr-logo {
  width: 50px; height: 14px;
  border-radius: 3px;
  background: var(--primary);
}
.abr-menu-items { display: flex; gap: 10px; flex: 1; justify-content: center; }
.abr-menu-items span { font-size: 0.7rem; color: var(--text-secondary); }
.abr-hero {
  padding: 18px 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-bottom: 10px;
}
.abr-title { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.abr-sub { font-size: 0.75rem; color: var(--text-secondary); margin-bottom: 10px; }
.abr-cta-btn {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}
.abr-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.abr-card { height: 40px; background: rgba(0,0,0,0.04); border-radius: var(--radius-sm); }
.ab-result-actions {
  display: flex; gap: 8px;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

/* Process Flow */
.process-flow { margin-bottom: 32px; }
.pf-step { display: flex; align-items: flex-start; gap: 14px; }
.pf-num {
  width: 32px; height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}
.pf-text strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.pf-text span { font-size: 0.82rem; color: var(--text-secondary); }
.pf-arrow {
  padding: 4px 0 4px 15px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* POS Interface */
.pos-interface {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.pos-tab-bar {
  display: flex;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.pos-tab {
  flex: 1;
  padding: 12px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 5px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.pos-tab:hover { color: var(--pos); }
.pos-tab.active { color: var(--pos); border-bottom-color: var(--pos); background: rgba(252,92,101,0.04); }
.pos-panel { display: none; }
.pos-panel.active { display: block; }

/* Kiosk UI */
.kiosk-ui, .table-order-ui, .pos-dash-ui { padding: 16px; }
.kiosk-top { font-size: 0.85rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 12px; }
.kiosk-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 12px; }
.kiosk-item {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.kiosk-item:hover { border-color: var(--pos); background: rgba(252,92,101,0.04); }
.kiosk-item.selected { border-color: var(--pos); background: rgba(252,92,101,0.06); }
.ki-img { font-size: 1.8rem; margin-bottom: 4px; }
.ki-name { font-size: 0.75rem; font-weight: 600; color: var(--text-primary); margin-bottom: 3px; }
.ki-price { font-size: 0.8rem; font-weight: 700; color: var(--pos); }
.kiosk-cart-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-dark); border-radius: var(--radius-md); padding: 10px 14px;
  color: rgba(255,255,255,0.7); font-size: 0.82rem;
}
.kiosk-pay-btn {
  background: var(--pos);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s;
}
.kiosk-pay-btn:hover { background: var(--pos-dark); }

/* Table Order */
.to-header { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.to-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.to-row { display: flex; align-items: center; gap: 8px; }
.to-name { flex: 1; font-size: 0.82rem; color: var(--text-primary); }
.to-qty { display: flex; align-items: center; gap: 6px; }
.to-qty button {
  width: 24px; height: 24px;
  background: var(--pos);
  color: #fff;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}
.to-qty button:hover { background: var(--pos-dark); }
.to-qty span { font-size: 0.88rem; font-weight: 700; min-width: 20px; text-align: center; }
.to-price { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); min-width: 64px; text-align: right; }
.to-total { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-top: 1.5px solid var(--border); font-size: 0.9rem; }
.to-total strong { font-size: 1.1rem; font-weight: 800; color: var(--pos); }

/* POS Dash */
.pd-title { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.pd-kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.pd-kpi {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}
.pd-kpi span { display: block; font-size: 0.65rem; color: var(--text-muted); margin-bottom: 3px; }
.pd-kpi strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--text-primary); }
.pd-kpi small.up-text { font-size: 0.65rem; font-weight: 700; color: var(--ai); }
.pd-chart-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.pd-chart { display: flex; gap: 5px; align-items: flex-end; height: 70px; margin-bottom: 12px; }
.pd-bar {
  flex: 1;
  background: rgba(252,92,101,0.25);
  border-radius: 3px 3px 0 0;
  position: relative;
}
.pd-bar.peak { background: var(--pos); }
.pd-bar span { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); font-size: 0.55rem; color: var(--text-muted); white-space: nowrap; }
.pd-top { display: flex; flex-direction: column; gap: 6px; margin-top: 20px; }
.pd-top-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; }
.pd-top-item span { min-width: 40px; }
.pd-top-item b { flex: 1; font-weight: 600; color: var(--text-primary); }
.pd-top-item em { color: var(--text-muted); font-style: normal; }

/* POS Features */
.pos-features-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pf-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.pf-item:hover { border-color: var(--pos); background: rgba(252,92,101,0.02); }
.pf-icon {
  width: 40px; height: 40px;
  background: rgba(252,92,101,0.1);
  color: var(--pos);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.pf-item strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.pf-item span { font-size: 0.82rem; color: var(--text-secondary); }

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pf-btn {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  transition: all 0.2s;
}
.pf-btn:hover, .pf-btn.active {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}
.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pcard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 0.3s;
}
.pcard:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}
.pcard.hidden { display: none; }
.pcard-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.ai-tag { background: rgba(0,201,167,0.15); color: var(--ai); }
.builder-tag { background: rgba(247,183,49,0.15); color: var(--builder); }
.pos-tag { background: rgba(252,92,101,0.15); color: var(--pos); }
.pcard h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.pcard-problem {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  line-height: 1.5;
}
.prob-label {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-right: 6px;
  margin-bottom: 4px;
}
.pcard-results { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
.pr-item { text-align: center; }
.pr-item strong { display: block; font-size: 1.3rem; font-weight: 900; color: #fff; }
.pr-item span { font-size: 0.7rem; color: rgba(255,255,255,0.5); line-height: 1.3; }
.pcard-quote {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  border-left: 3px solid rgba(255,255,255,0.2);
  padding-left: 12px;
  margin-bottom: 8px;
}
.pcard-author { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* =============================================
   DEMO CENTER
   ============================================= */
.demo-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.demo-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.demo-tab:hover { color: var(--primary); border-color: var(--primary); }
.demo-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(91,69,240,0.3);
}
.demo-panel { display: none; }
.demo-panel.active { display: block; }
.demo-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.demo-panel-inner.center-panel {
  display: block;
  text-align: center;
}
.demo-panel-inner.center-panel h3 { margin-bottom: 12px; }
.demo-panel-inner.center-panel p { color: var(--text-secondary); margin-bottom: 32px; }
.demo-desc-col h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-primary); margin-bottom: 12px; }
.demo-desc-col p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.demo-hint-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.hint-chip {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(91,69,240,0.06);
  color: var(--primary);
  border: 1.5px solid rgba(91,69,240,0.15);
  cursor: pointer;
  transition: all 0.2s;
}
.hint-chip:hover { background: var(--primary); color: #fff; }
.demo-effects { display: flex; flex-direction: column; gap: 10px; }
.demo-effect-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.demo-effect-item i { color: var(--primary); }
.demo-effect-item b { color: var(--text-primary); }

/* Demo Chat */
.demo-chat-window {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.demo-chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
}
.dch-av {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.demo-chat-header strong { display: block; font-size: 0.9rem; font-weight: 700; }
.dch-status { font-size: 0.72rem; opacity: 0.8; display: flex; align-items: center; gap: 4px; }
.dch-status span { width: 6px; height: 6px; background: #fff; border-radius: 50%; }
.demo-chat-body { padding: 16px; min-height: 200px; max-height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.demo-msg { }
.demo-msg.user { text-align: right; }
.demo-bubble {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 85%;
  text-align: left;
}
.demo-msg.bot .demo-bubble {
  background: var(--bg);
  color: var(--text-primary);
  border-radius: 4px 16px 16px 16px;
}
.demo-msg.user .demo-bubble {
  background: var(--primary);
  color: #fff;
  border-radius: 16px 4px 16px 16px;
}
.demo-chat-footer {
  display: flex;
  border-top: 1px solid var(--border);
  background: #fafbff;
}
.demo-chat-footer input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 0.88rem;
  background: transparent;
  outline: none;
}
.demo-chat-footer button {
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.demo-chat-footer button:hover { background: var(--primary-dark); }

/* Demo Builder */
.demo-builder-wrap { max-width: 640px; margin: 0 auto; }
.demo-builder-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.dbf-row { margin-bottom: 20px; }
.dbf-row label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 12px; }
.demo-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.demo-chip {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s;
}
.demo-chip:hover, .demo-chip.active {
  border-color: var(--primary);
  background: rgba(91,69,240,0.06);
  color: var(--primary);
}
.demo-text-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.demo-text-input:focus { border-color: var(--primary); }
.demo-builder-result { text-align: center; }
.dbr-progress { margin-bottom: 16px; }
.dbr-bar { height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 10px; }
.dbr-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--ai)); border-radius: 3px; width: 0; transition: width 0.3s ease; }
.dbr-browser {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.dbr-chrome { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #F4F5F8; }
.dbr-chrome .dbr-dots { display: flex; gap: 5px; }
.dbr-chrome .dbr-dots span { width: 9px; height: 9px; border-radius: 50%; }
.dbr-chrome .dbr-dots span:nth-child(1) { background: #FC5C65; }
.dbr-chrome .dbr-dots span:nth-child(2) { background: #F7B731; }
.dbr-chrome .dbr-dots span:nth-child(3) { background: #00C9A7; }
.dbr-chrome span { font-size: 0.75rem; color: var(--text-muted); }
.dbr-screen { padding: 20px; min-height: 200px; }
.dbr-actions { display: flex; gap: 10px; justify-content: center; }

/* Demo Kiosk */
.full-kiosk {
  background: #1a1a2e;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(255,255,255,0.06);
}
.fk-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  background: rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 700;
}
.fk-time { font-size: 0.88rem; font-family: 'Inter', sans-serif; color: rgba(255,255,255,0.5); }
.fk-categories { display: flex; gap: 0; background: rgba(0,0,0,0.2); }
.fk-cat {
  flex: 1; padding: 10px; font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.4); border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.fk-cat:hover { color: rgba(255,255,255,0.7); }
.fk-cat.active { color: var(--pos); border-bottom-color: var(--pos); }
.fk-menu-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; padding: 14px; }
.fk-item {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.2s;
}
.fk-item:hover { border-color: var(--pos); background: rgba(252,92,101,0.1); }
.fk-img { font-size: 1.8rem; margin-bottom: 6px; }
.fk-name { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 3px; }
.fk-price { font-size: 0.78rem; color: var(--pos); font-weight: 700; }
.fk-cart { border-top: 1px solid rgba(255,255,255,0.08); padding: 14px; }
.fk-cart-items { min-height: 40px; margin-bottom: 10px; }
.fk-cart-item {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fk-cart-total {
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 10px;
}
.fk-cart-total strong { color: #fff; font-size: 1.1rem; font-weight: 800; }
.fk-pay-btn {
  width: 100%;
  background: var(--pos);
  color: #fff;
  padding: 13px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.2s;
}
.fk-pay-btn:disabled { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.3); cursor: default; }
.fk-pay-btn:not(:disabled):hover { background: var(--pos-dark); transform: translateY(-1px); }

/* ROI Calculator */
.roi-calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.roi-inputs-col h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-primary); margin-bottom: 12px; }
.roi-inputs-col p { color: var(--text-secondary); margin-bottom: 28px; font-size: 0.95rem; }
.roi-slider-group { margin-bottom: 22px; }
.roi-slider-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.roi-slider-label label { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.roi-slider-label output { font-size: 0.9rem; font-weight: 700; color: var(--primary); }
input[type="range"] {
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  appearance: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(91,69,240,0.4);
  cursor: pointer;
}
.roi-formula-box {
  background: rgba(91,69,240,0.06);
  border: 1px solid rgba(91,69,240,0.15);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-top: 8px;
}
.roi-formula-box span { display: block; font-size: 0.72rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; letter-spacing: 0.06em; text-transform: uppercase; }
.roi-formula-box code { font-size: 0.82rem; color: var(--text-secondary); font-family: 'Inter', monospace; }
.roi-result-card {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: #fff;
  box-shadow: var(--shadow-primary);
  position: sticky;
  top: 100px;
}
.roi-rc-label { font-size: 0.82rem; opacity: 0.75; margin-bottom: 10px; letter-spacing: 0.05em; }
.roi-rc-value { font-size: 2rem; font-weight: 900; margin-bottom: 6px; line-height: 1; }
.roi-rc-sub { font-size: 0.88rem; opacity: 0.7; margin-bottom: 24px; }
.roi-breakdown-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.roi-bi { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.roi-bi span { font-size: 0.85rem; opacity: 0.75; }
.roi-bi strong { font-size: 0.95rem; font-weight: 700; }
.roi-cta .btn-primary { background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.3); }
.roi-cta .btn-primary:hover { background: rgba(255,255,255,0.3); }

/* =============================================
   PRICING
   ============================================= */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}
.bt-label { font-size: 0.92rem; font-weight: 500; color: var(--text-secondary); }
.toggle-wrap { position: relative; display: inline-block; cursor: pointer; }
.toggle-wrap input { display: none; }
.toggle-track {
  display: block;
  width: 50px; height: 26px;
  background: var(--border);
  border-radius: 13px;
  position: relative;
  transition: background 0.25s;
}
.toggle-wrap input:checked + .toggle-track { background: var(--primary); }
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: left 0.25s var(--ease-bounce);
}
.toggle-wrap input:checked + .toggle-track .toggle-thumb { left: 27px; }
.save-tag {
  background: linear-gradient(90deg, var(--ai), #00a88c);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  font-style: normal;
  margin-left: 4px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: all 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured-price {
  background: linear-gradient(160deg, #f0ecff 0%, #e8f8f5 100%);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
  transform: scale(1.02);
}
.price-card.featured-price:hover { transform: scale(1.02) translateY(-4px); }
.pc-popular {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(91,69,240,0.4);
}
.pc-plan { font-size: 1rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 16px; }
.pc-price { margin-bottom: 10px; line-height: 1; display: flex; align-items: baseline; gap: 3px; }
.pc-currency { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); }
.pc-amount { font-size: 2.6rem; font-weight: 900; color: var(--text-primary); }
.pc-amount-text { font-size: 2rem; font-weight: 900; color: var(--text-primary); }
.pc-period { font-size: 0.85rem; color: var(--text-muted); }
.pc-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }
.pc-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pc-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-secondary); }
.pc-features li.ok i { color: var(--ai); }
.pc-features li.no { color: var(--text-muted); }
.pc-features li.no i { color: var(--border); }

/* =============================================
   CONTACT
   ============================================= */
.contact-section { background: linear-gradient(135deg, #f8f9ff 0%, #eef0fb 100%); }
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.contact-left p { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.contact-benefits-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.cbl-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }
.cbl-item i { color: var(--ai); }
.contact-info-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.ci-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
a.ci-item:hover { border-color: var(--primary); transform: translateX(4px); }
.ci-icon {
  width: 40px; height: 40px;
  background: rgba(91,69,240,0.08);
  color: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.ci-item strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-primary); }
.ci-item span { font-size: 0.82rem; color: var(--text-muted); }
.contact-social { display: flex; gap: 10px; }
.contact-social a {
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all 0.2s;
}
.contact-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Contact Form */
.contact-form {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { margin-bottom: 18px; }
.cf-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.req { color: var(--pos); }
.cf-group input, .cf-group textarea, .cf-group select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  color: var(--text-primary);
}
.cf-group input:focus, .cf-group textarea:focus, .cf-group select:focus {
  border-color: var(--primary);
  background: #fff;
}
.cf-group textarea { resize: vertical; }
.cf-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cf-cb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-secondary);
  cursor: pointer; padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  transition: all 0.15s;
}
.cf-cb:hover { border-color: var(--primary); background: rgba(91,69,240,0.04); }
.cf-cb input { accent-color: var(--primary); width: auto; border: none; padding: 0; }
/* 개인정보 동의 체크박스 */
.cf-privacy-agree {
  margin-top: 16px;
  margin-bottom: 14px;
}
.cf-agree-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
/* 실제 input 숨기기 */
.cf-agree-label input[type="checkbox"] {
  position: absolute;
  width: 0; height: 0;
  opacity: 0;
  pointer-events: none;
}
/* 커스텀 체크박스 박스 */
.cf-agree-box {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 5px;
  border: 2px solid var(--border, #d1d5db);
  background: var(--surface, #fff);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
}
.cf-agree-box i {
  font-size: 0.65rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.15s;
}
/* 체크됐을 때 */
.cf-agree-label input:checked ~ .cf-agree-box {
  background: var(--primary, #5B45F0);
  border-color: var(--primary, #5B45F0);
  transform: scale(1.08);
}
.cf-agree-label input:checked ~ .cf-agree-box i {
  opacity: 1;
}
/* 텍스트 */
.cf-agree-txt {
  font-size: 0.82rem;
  color: var(--text-secondary, #6b7280);
  line-height: 1.5;
}
.cf-agree-txt em {
  font-style: normal;
  font-weight: 700;
  color: var(--primary, #5B45F0);
}
/* 흔들림 애니메이션 (미체크 시) */
@keyframes cfShake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}
.cf-privacy-agree.shake {
  animation: cfShake 0.55s ease;
}
/* 버튼 비활성 상태 */
#cfSubmitBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* =============================================
   ABOUT
   ============================================= */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-left h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}
.about-left p { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 28px; }
.about-values { display: flex; flex-direction: column; gap: 14px; }
.av-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.av-item:hover { border-color: var(--primary); transform: translateX(4px); }
.av-icon {
  width: 42px; height: 42px;
  background: rgba(91,69,240,0.1);
  color: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.av-item strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.av-item span { font-size: 0.82rem; color: var(--text-secondary); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.as-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}
.as-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.as-icon {
  width: 44px; height: 44px;
  background: rgba(91,69,240,0.08);
  color: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 12px;
}
.as-item strong { display: block; font-size: 2rem; font-weight: 900; color: var(--text-primary); line-height: 1; }
.as-unit { font-size: 1rem; font-weight: 700; color: var(--primary); }
.as-item p { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }
.about-timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.about-timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.at-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 12px 0 12px 0;
  position: relative;
}
.at-year {
  width: 38px; height: 38px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.at-item.active .at-year {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(91,69,240,0.2);
}
.at-desc { font-size: 0.85rem; color: var(--text-secondary); padding-top: 10px; line-height: 1.5; }
.at-item.active .at-desc { color: var(--text-primary); font-weight: 500; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-dark);
  position: relative;
  padding-top: 80px;
}
.footer-wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--ai), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.75; margin: 16px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h5 { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.8); margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   MODALS
   ============================================= */
.modal-wrap {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.25s ease;
}
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: modalSlideUp 0.35s var(--ease-bounce);
}
@keyframes modalSlideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.contact-icon { background: rgba(0,201,167,0.1); color: var(--ai); }
.order-icon { background: rgba(247,183,49,0.1); color: var(--builder-dark); }
.modal-box h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-primary); margin-bottom: 10px; }
.modal-box p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }

/* =============================================
   CHAT WIDGET
   ============================================= */
.chat-widget-wrap {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
}
.cw-bubble {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--ai) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(91,69,240,0.45);
  transition: all 0.3s var(--ease-bounce);
  position: relative;
}
.cw-bubble:hover { transform: scale(1.1); }
.cw-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 20px; height: 20px;
  background: var(--pos);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  animation: blink 2s ease-in-out infinite;
}
.cw-panel {
  position: absolute;
  bottom: 72px; right: 0;
  width: 320px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  animation: panelSlide 0.3s var(--ease-bounce);
}
@keyframes panelSlide { from { transform: scale(0.85) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.cw-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
}
.cw-av {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.cw-hinfo { flex: 1; }
.cw-hinfo strong { display: block; font-size: 0.85rem; font-weight: 700; }
.cw-hinfo span { font-size: 0.7rem; opacity: 0.8; display: flex; align-items: center; gap: 4px; }
.cw-online-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; }
.cw-close { color: rgba(255,255,255,0.8); font-size: 0.9rem; transition: color 0.2s; }
.cw-close:hover { color: #fff; }
.cw-body { padding: 14px; max-height: 220px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.cw-msg.bot .cw-bubble-msg {
  display: inline-block;
  background: var(--bg);
  padding: 9px 13px;
  border-radius: 4px 14px 14px 14px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-primary);
  max-width: 90%;
}
.cw-msg.user { text-align: right; }
.cw-msg.user .cw-bubble-msg {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 9px 13px;
  border-radius: 14px 4px 14px 14px;
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 90%;
}
.cw-footer {
  display: flex;
  border-top: 1px solid var(--border);
}
.cw-footer input {
  flex: 1; border: none; padding: 10px 12px; font-size: 0.82rem; outline: none;
}
.cw-footer button {
  background: var(--primary); color: #fff; padding: 10px 14px; font-size: 0.85rem; transition: background 0.2s;
}
.cw-footer button:hover { background: var(--primary-dark); }

/* =============================================
   HERO SOLUTIONS PILLS
   ============================================= */
/* ── 솔루션 pills: 1행 3개 + 2행 2개 (중앙 정렬) ── */
.hero-solutions-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 30px;
  align-items: flex-start;
}
.hs-pills-row {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}
.hs-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
  cursor: default;
}
.hs-pill:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.32);
  transform: translateY(-2px);
}
.hs-pill.free-pill {
  background: rgba(247,183,49,0.15);
  border-color: rgba(247,183,49,0.35);
  color: var(--builder);
}
.hs-pill.insight-pill {
  background: rgba(168,85,247,0.15);
  border-color: rgba(168,85,247,0.35);
  color: #C084FC;
}
.hs-pill.pos-pill {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.28);
  color: #FCA5A5;
}
.hs-pill i { font-size: 0.78rem; }

/* =============================================
   HOMEPAGE SECTION — 새 스타일
   ============================================= */
.homepage-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 28px;
}
.hf-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.hf-item:hover {
  border-color: var(--builder);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.hf-icon {
  width: 42px; height: 42px;
  background: rgba(247,183,49,0.12);
  color: var(--builder-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.hf-item strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.hf-item span { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

/* 홈페이지 제작 통계 row */
.homepage-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.hps-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.hps-item:hover {
  border-color: var(--builder);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(247,183,49,0.12);
}
.hps-icon {
  width: 48px; height: 48px;
  background: rgba(247,183,49,0.1);
  color: var(--builder-dark);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 12px;
}
.hps-item strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--text-primary); line-height: 1; margin-bottom: 6px; }
.hps-item span { font-size: 0.82rem; color: var(--text-muted); }

/* =============================================
   POS ROI CARDS
   ============================================= */
.pos-roi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.pos-roi-card {
  text-align: center;
  padding: 20px 12px;
  background: rgba(252,92,101,0.06);
  border: 1.5px solid rgba(252,92,101,0.15);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
.pos-roi-card:hover {
  background: rgba(252,92,101,0.1);
  transform: translateY(-3px);
}
.pos-roi-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--pos);
  line-height: 1;
  margin-bottom: 6px;
}
.pos-roi-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* =============================================
   GODASH SECTION OVERRIDE
   ============================================= */
.godash-section {
  background: linear-gradient(160deg, #0f0b2e 0%, #1a1340 50%, #0f0b2e 100%);
}
.godash-section .detail-content h2 { color: #fff; }
.godash-section .detail-desc { color: rgba(255,255,255,0.65); }
.godash-section .detail-eyebrow { opacity: 0.9; }
.godash-section .gf-item strong { color: rgba(255,255,255,0.95); }
.godash-section .gf-item span { color: rgba(255,255,255,0.55); }
.text-gradient-godash {
  background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.godash-color { color: var(--godash) !important; }
.btn-godash {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--godash) 0%, #EC4899 100%);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(168,85,247,0.35);
}
.btn-godash:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(168,85,247,0.5); }

/* GoDash Mockup */
.godash-mockup {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  border: 1px solid rgba(168,85,247,0.15);
}
.gd-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
  color: #fff;
}
.gd-logo { font-size: 0.92rem; font-weight: 800; display: flex; align-items: center; gap: 6px; }
.gd-controls { display: flex; gap: 6px; margin-left: auto; }
.gd-period {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background 0.15s;
}
.gd-period.active, .gd-period:hover { background: rgba(255,255,255,0.3); }
.gd-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 700;
  background: rgba(0,0,0,0.2);
  padding: 3px 8px; border-radius: 100px;
}
.gd-live span { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: blink 1.5s infinite; }
.gd-body { padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.gd-kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gd-kpi-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius-md);
}
.gd-kpi-card.blue { background: rgba(59,130,246,0.08); }
.gd-kpi-card.green { background: rgba(16,185,129,0.08); }
.gd-kpi-card.orange { background: rgba(245,158,11,0.08); }
.gd-kpi-card.purple { background: rgba(168,85,247,0.08); }
.gd-kc-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.gd-kpi-card.blue .gd-kc-icon { background: rgba(59,130,246,0.15); color: #3B82F6; }
.gd-kpi-card.green .gd-kc-icon { background: rgba(16,185,129,0.15); color: #10B981; }
.gd-kpi-card.orange .gd-kc-icon { background: rgba(245,158,11,0.15); color: #F59E0B; }
.gd-kpi-card.purple .gd-kc-icon { background: rgba(168,85,247,0.15); color: #A855F7; }
.gd-kpi-card span { display: block; font-size: 0.68rem; color: var(--text-muted); margin-bottom: 2px; }
.gd-kpi-card strong { display: block; font-size: 0.92rem; font-weight: 800; color: var(--text-primary); }
.gd-kpi-card small { display: block; font-size: 0.68rem; color: #10B981; font-weight: 600; }
.gd-channels { background: var(--bg); border-radius: var(--radius-md); padding: 12px; }
.gd-ch-title { font-size: 0.75rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 10px; }
.gd-ch-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 0.72rem; color: var(--text-secondary); }
.gd-ch-row span { width: 90px; flex-shrink: 0; display: flex; align-items: center; gap: 4px; }
.gd-ch-bar { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.gd-ch-fill { height: 100%; border-radius: 3px; transition: width 1s ease; }
.gd-ch-row em { font-size: 0.72rem; font-weight: 700; color: var(--text-primary); font-style: normal; width: 30px; text-align: right; }
.gd-insight-row { display: flex; flex-direction: column; gap: 6px; }
.gd-insight-item {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 9px 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.godash-effect-badge {
  background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
}

/* ===== W-Insight 효과 배너 (재설계) ===== */
/* =======================================================
   W-INSIGHT EFFECT BANNER — Premium Redesign
   ======================================================= */
.wi-effect-banner {
  position: relative;
  margin-top: 28px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #0d0221 0%, #1a0533 35%, #0c1a3a 70%, #080f22 100%);
  border: 1px solid rgba(168,85,247,0.3);
  box-shadow:
    0 0 0 1px rgba(168,85,247,0.1),
    0 16px 48px rgba(168,85,247,0.25),
    0 4px 12px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wi-effect-banner:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(168,85,247,0.2),
    0 24px 64px rgba(168,85,247,0.35),
    0 8px 24px rgba(0,0,0,0.6);
}

/* 배경 레이어 */
.wi-banner-bg { position: absolute; inset: 0; pointer-events: none; }
.wi-banner-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}
.wi-orb1 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(168,85,247,0.5) 0%, transparent 70%);
  top: -60px; left: -40px;
}
.wi-orb2 {
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(236,72,153,0.4) 0%, transparent 70%);
  bottom: -30px; right: -20px;
}
.wi-orb3 {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 70%);
  top: 50%; right: 30%;
  transform: translateY(-50%);
}
.wi-banner-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,85,247,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.07) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 80%);
}

/* 콘텐츠 영역 */
.wi-banner-inner {
  position: relative;
  z-index: 1;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* 헤더 */
.wi-banner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wi-banner-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wi-brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(168,85,247,0.4);
}
.wi-brand-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.wi-brand-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}
.wi-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #34D399;
}
.wi-live-dot {
  width: 6px; height: 6px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: blink 1.4s ease-in-out infinite;
}

/* 메인 지표 3개 */
.wi-metrics-hero {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 14px 18px;
}
.wi-mhero-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
}
.wi-mhero-item:first-child { padding-left: 0; }
.wi-mhero-item:last-child { padding-right: 0; }
.wi-mhero-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
  flex-shrink: 0;
}

/* 링 SVG */
.wi-mhero-ring {
  position: relative;
  width: 44px; height: 44px;
  flex-shrink: 0;
}
.wi-ring-svg { width: 44px; height: 44px; }
.wi-ring-val {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  background: linear-gradient(135deg, #A855F7, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wi-ring-val.wi-val-green {
  background: linear-gradient(135deg, #10B981, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 0.7rem;
}
.wi-ring-val.wi-val-amber {
  background: linear-gradient(135deg, #F7B731, #F59E0B);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 0.68rem;
}
.wi-ring-val small {
  font-size: 0.5rem;
  font-weight: 700;
}
.wi-mhero-txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.wi-mhero-txt strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  display: block;
  line-height: 1.2;
}
.wi-mhero-txt span {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  display: block;
}

/* 트렌드 차트 */
.wi-trend-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wi-trend-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}
.wi-trend-label i { color: #A855F7; font-size: 0.7rem; }
.wi-trend-label span:first-of-type { flex: 1; }
.wi-trend-up {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #34D399;
  background: rgba(16,185,129,0.12);
  padding: 2px 8px;
  border-radius: 100px;
}
.wi-trend-up i { font-size: 0.55rem; }
.wi-sparkline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wi-spark-svg {
  width: 100%;
  height: 36px;
  display: block;
}
.wi-spark-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.25);
}

/* 채널 태그 */
.wi-channels-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wi-ch-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: background 0.2s;
}
.wi-ch-tag i { font-size: 0.65rem; color: #4285F4; }
.wi-ch-tag.wi-ch-ig i { color: #E1306C; }
.wi-ch-tag.wi-ch-kk i { color: #FEE500; }
.wi-ch-tag.wi-ch-yt i { color: #FF0000; }
.wi-ch-more {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  margin-left: auto;
  cursor: pointer;
}
.wi-ch-more:hover { color: rgba(255,255,255,0.6); }

/* 기존 wi-bkpi 스타일 (하위 호환) */
.godash-demo-widget {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(168,85,247,0.15);
}
.gdw-header {
  padding: 12px 18px;
  background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.gdw-body { padding: 16px; }
.gdw-kpi-row { display: flex; gap: 10px; margin-bottom: 14px; }
.gdw-kpi {
  flex: 1;
  text-align: center;
  padding: 12px 6px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}
.gdw-kpi span { display: block; font-size: 0.68rem; color: var(--text-muted); margin-bottom: 4px; }
.gdw-kpi strong { display: block; font-size: 1rem; font-weight: 800; color: var(--text-primary); }
.gdw-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  margin-bottom: 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 8px;
}
.gdw-bar { flex: 1; background: rgba(168,85,247,0.25); border-radius: 3px 3px 0 0; transition: height 0.8s ease; }
.gdw-bar.active { background: var(--godash); }
.gdw-insight {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding: 10px 12px;
  background: rgba(168,85,247,0.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--godash);
  line-height: 1.4;
}

/* =============================================
   ANIMATIONS (AOS-like)
   ============================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos].aos-animate { opacity: 1; transform: translateX(0) translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .homepage-stats-row { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .reverse-grid .detail-visual { order: 1; }
  .reverse-grid .detail-content { order: 2; }
  .portfolio-cards { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-card.featured-price { transform: none; order: -1; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .roi-calc-layout { grid-template-columns: 1fr; }
  .demo-panel-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --container: 100%; }
  .section { padding: 72px 0; }
  .nav-links, .nav-cta .btn-nav-phone { display: none; }
  .nav-cta { gap: 8px; }
  .hamburger { display: flex; }

  /* ── 헤더 항상 배경 표시 (모바일 스크롤 구분용) ── */
  .header {
    background: rgba(6,7,15,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .header.scrolled {
    background: rgba(255,255,255,0.97);
  }

  /* ──────────────────────────────────────────
     모바일 메뉴 완전 재설계
     ────────────────────────────────────────── */
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    /* iOS Safari 주소창 포함한 정확한 높이 */
    top: 72px;
    left: 0;
    right: 0;
    /* dvh 미지원 브라우저 폴백 → 100vh, 지원 시 100dvh */
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    background: rgba(15,16,30,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 20px 16px 40px;
    gap: 0;
    z-index: 1050;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    animation: mobileMenuOpen 0.28s ease-out;
    /* bottom 대신 height 사용 → iOS 잘림 방지 */
  }
  @keyframes mobileMenuOpen {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* 메뉴 각 항목(li) */
  .nav-links.mobile-open .nav-item {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links.mobile-open .nav-item:last-child {
    border-bottom: none;
  }

  /* 메뉴 링크 */
  .nav-links.mobile-open .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    border-radius: 10px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
  }
  .nav-links.mobile-open .nav-link:hover,
  .nav-links.mobile-open .nav-link:active {
    background: rgba(91,69,240,0.2);
    color: #fff;
  }

  /* 메가드롭다운 — 모바일에서는 완전 숨김 */
  .mega-dropdown { display: none !important; }

  /* 모바일 메뉴 오픈 시 전용 요소 표시 */
  .nav-links.mobile-open .mobile-sub-links {
    display: flex;
  }
  .nav-links.mobile-open .mobile-menu-cta {
    display: flex;
  }

  /* 솔루션 소개 하위 링크를 별도 그룹으로 표시 */
  .mobile-sub-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 4px 0 12px 12px;
  }
  .mobile-sub-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
  }
  .mobile-sub-links a:hover,
  .mobile-sub-links a:active {
    background: rgba(91,69,240,0.18);
    color: rgba(255,255,255,0.95);
  }
  .mobile-sub-links .msub-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  /* 모바일 메뉴 하단 CTA */
  .mobile-menu-cta {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-menu-cta .btn-mob-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
  }
  .mobile-menu-cta .btn-mob-consult {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: var(--primary);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(91,69,240,0.4);
  }

  /* ──────────────────────────────────────────
     서비스 슬라이더 네비 — 모바일 5개 전체 표시
     ────────────────────────────────────────── */
  .svc-slider-nav {
    /* 가로 스크롤 → 줄바꿈 그리드로 전환 */
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 1행 3개 */
    gap: 8px;
    overflow-x: visible;
    padding: 4px 0 12px;
    justify-items: center;
  }
  /* 4번째·5번째를 2행 중앙 배치 */
  .svc-snav:nth-child(4) {
    grid-column: 1 / 2;
    justify-self: end;
    margin-right: -4px;
  }
  .svc-snav:nth-child(5) {
    grid-column: 2 / 3;
    justify-self: start;
    margin-left: -4px;
  }
  .svc-snav {
    min-width: unset;
    width: 100%;
    padding: 12px 8px;
  }
  .svc-snav-icon {
    width: 38px; height: 38px;
    font-size: 0.95rem;
  }
  .svc-snav span {
    font-size: 0.7rem;
  }

  .hero { padding: 100px 0 60px; }
  .hero-heading { font-size: 1.9rem; letter-spacing: -0.01em; }
  /* 모바일에서는 자연스럽게 줄바꿈 허용 */
  .hero-line1,
  .hero-line2 { white-space: normal; }
  .hero-sub { font-size: 0.95rem; }
  .pc-br { display: none; }
  .hero-cta-group { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { text-align: center; justify-content: center; }
  .hero-stats { gap: 0; justify-content: space-between; }
  .hero-stat { padding: 0 12px; }
  .hero-stat strong { font-size: 1.4rem; }

  .services-grid { grid-template-columns: 1fr; }
  .homepage-stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pos-roi-row { grid-template-columns: repeat(3, 1fr); }
  .hero-solutions-row { display: flex; gap: 6px; margin: 16px 0 20px; }
  .hs-pill { padding: 6px 12px; font-size: 0.75rem; }
  .hs-pills-row { gap: 6px; flex-wrap: wrap; }
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  /* 모바일: 모든 섹션에서 텍스트(content) 먼저, 이미지(visual) 나중 */
  .detail-grid .detail-content  { order: 1; }
  .detail-grid .detail-visual   { order: 2; }
  /* reverse-grid 도 동일하게 — 이미지가 먼저 나오는 현상 방지 */
  .reverse-grid .detail-content { order: 1; }
  .reverse-grid .detail-visual  { order: 2; }
  .portfolio-cards { grid-template-columns: 1fr; }
  .pcard-results { grid-template-columns: repeat(3,1fr); }

  .demo-tabs { flex-direction: column; align-items: stretch; }
  .demo-tab { justify-content: flex-start; }
  .demo-panel-inner { grid-template-columns: 1fr; gap: 28px; }
  .roi-calc-layout { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured-price { transform: none; }

  .contact-layout { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-checkboxes { grid-template-columns: 1fr; }

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

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cw-panel { width: 290px; right: 0; }
  .modal-box { padding: 28px 20px; }

  .hero-stats { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .hero-stat-divider { display: none; }
  .hero-stat { flex: 0 0 calc(50% - 8px); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .hero-heading { font-size: 1.65rem; letter-spacing: -0.01em; }
  .hero-line1, .hero-line2 { white-space: normal; }
  .section-title { font-size: 1.6rem; }
  .footer-cols { grid-template-columns: 1fr; }
  .demo-tabs { gap: 8px; }
  .demo-tab { padding: 10px 14px; font-size: 0.82rem; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 22px 16px; }
}

/* =============================================
   UI BALANCE IMPROVEMENTS v2.1
   ============================================= */

/* 서비스 슬라이더 - 진행 바 색상 변화 */
.svc-slides-wrap[data-current="1"] ~ .svc-progress-wrap .svc-progress-bar { background: linear-gradient(90deg, var(--ai), var(--ai-dark)); }
.svc-slides-wrap[data-current="2"] ~ .svc-progress-wrap .svc-progress-bar { background: linear-gradient(90deg, var(--builder), var(--builder-dark)); }
.svc-slides-wrap[data-current="3"] ~ .svc-progress-wrap .svc-progress-bar { background: linear-gradient(90deg, var(--godash), #EC4899); }
.svc-slides-wrap[data-current="4"] ~ .svc-progress-wrap .svc-progress-bar { background: linear-gradient(90deg, var(--pos), var(--pos-dark)); }

/* SaaS 앱 그리드 - 반응형 */
@media (max-width: 900px) {
  .saas-apps-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .industry-cards { grid-template-columns: repeat(2, 1fr); }
  .ai-benefit-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .saas-apps-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .sai-icon-wrap { width: 38px; height: 38px; font-size: 1rem; }
  .saas-app-item { padding: 12px 6px 10px; }
  .industry-cards { grid-template-columns: repeat(2, 1fr); }
  .industry-card.ic-img-card { height: 160px; }
  .ai-benefit-row { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 400px) {
  .saas-apps-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
}

/* 서비스 슬라이더 Nav 개선 - 모바일 */
@media (max-width: 768px) {
  .svc-slider-nav { gap: 6px; padding: 4px 4px 12px; }
  .svc-snav { padding: 12px 14px; min-width: 100px; }
  .svc-snav-icon { width: 36px; height: 36px; font-size: 0.95rem; }
  .svc-snav span { font-size: 0.7rem; }
  .svc-slide-inner { grid-template-columns: 1fr; gap: 32px; }
  .svc-slide-content h3 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .svc-snav { padding: 10px 10px; min-width: 78px; }
  .svc-snav span { font-size: 0.62rem; }
  .svc-snav-badge { display: none; }
}

/* 슬라이더 컨트롤 버튼 - 개선 */
.svc-ctrl-prev:hover, .svc-ctrl-next:hover {
  transform: scale(1.1);
}
.svc-dot.active {
  width: 24px;
  background: var(--primary);
}

/* 섹션 간격 균등화 */
.detail-section { padding: 100px 0; }
.section { padding: 100px 0; }

/* 앱 그리드 컨테이너 레이아웃 개선 - 기존 detail-grid 강화 */

/* 업종별 아이콘 섹션 헤딩 */
.saas-industries .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(91,69,240,0.08);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(91,69,240,0.15);
  margin-bottom: 20px;
}

/* 앱 아이템 hover 시 해당 앱의 색상 테두리 표시 */
.crm-app:hover   { border-color: var(--primary) !important; }
.sales-app:hover { border-color: var(--ai) !important; }
.sub-app:hover   { border-color: var(--builder) !important; }
.acc-app:hover   { border-color: #10B981 !important; }
.pay-app:hover   { border-color: var(--pos) !important; }
.bill-app:hover  { border-color: #3B82F6 !important; }
.esign-app:hover { border-color: var(--godash) !important; }
.eappr-app:hover { border-color: #F59E0B !important; }
.econ-app:hover  { border-color: #EC4899 !important; }
.inv-app:hover   { border-color: #06B6D4 !important; }
.hr-app:hover    { border-color: #10B981 !important; }
.pay2-app:hover  { border-color: #22C55E !important; }
.mkt-app:hover   { border-color: #EF4444 !important; }
.mem-app:hover   { border-color: #6366F1 !important; }
.cs-app:hover    { border-color: #14B8A6 !important; }
.chat-app:hover  { border-color: #FB923C !important; }
.ai-app:hover    { border-color: var(--ai) !important; }
.ana-app:hover   { border-color: var(--godash) !important; }
.prj-app:hover   { border-color: #0EA5E9 !important; }

/* 슬라이드 비주얼 카드 버튼 */
.btn-ai-slide {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--ai), var(--ai-dark));
  color: #fff; font-weight: 700; font-size: 0.95rem;
  transition: all 0.25s; box-shadow: 0 8px 20px rgba(0,201,167,0.3);
}
.btn-ai-slide:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,201,167,0.45); }
.btn-builder-slide {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--builder), var(--builder-dark));
  color: #fff; font-weight: 700; font-size: 0.95rem;
  transition: all 0.25s; box-shadow: 0 8px 20px rgba(247,183,49,0.3);
}
.btn-builder-slide:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(247,183,49,0.45); }
.btn-godash-slide {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--godash), #EC4899);
  color: #fff; font-weight: 700; font-size: 0.95rem;
  transition: all 0.25s; box-shadow: 0 8px 20px rgba(168,85,247,0.3);
}
.btn-godash-slide:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(168,85,247,0.45); }
.btn-pos-slide {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--pos), var(--pos-dark));
  color: #fff; font-weight: 700; font-size: 0.95rem;
  transition: all 0.25s; box-shadow: 0 8px 20px rgba(252,92,101,0.3);
}
.btn-pos-slide:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(252,92,101,0.45); }

/* ab-result-preview 개선 */
.ab-result-preview {
  background: #f8f9ff;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.abr-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
}
.abr-menu-items { display: flex; gap: 10px; }
.abr-menu-items span { font-size: 0.62rem; color: var(--text-secondary); font-weight: 600; cursor: pointer; }
.abr-hero {
  border-radius: 10px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  min-height: 90px;
}
.abr-cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 800;
  cursor: pointer;
}
.abr-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

/* =============================================
   HERO DASHBOARD — 강화 인터랙션 스타일
   ============================================= */

/* 차트 헤더 */
.dash-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.dch-label { font-size: 0.6rem; font-weight: 700; color: var(--text-muted); }
.dch-badge { display: flex; align-items: center; gap: 4px; font-size: 0.58rem; font-weight: 700; }
.live-badge { color: #10B981; }
.live-dot-sm {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #10B981;
  animation: livePulse 1.5s infinite;
}
.bar-val {
  display: block;
  font-size: 0.5rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
  font-weight: 600;
}

/* 솔루션 상태 행 */
.dash-solution-row {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.dsr-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 7px 4px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.dsr-item i { font-size: 0.85rem; }
.dsr-item span { font-size: 0.55rem; font-weight: 700; color: var(--text-secondary); }
.dsr-on {
  font-size: 0.5rem !important;
  font-weight: 700 !important;
  padding: 1px 6px;
  border-radius: 20px;
  background: rgba(16,185,129,0.12);
  color: #10B981 !important;
  border: 1px solid rgba(16,185,129,0.2);
  font-style: normal;
}
.dsr-saas i { color: var(--primary); }
.dsr-ai i { color: var(--ai); }
.dsr-gd i { color: var(--godash); }
.dsr-pos i { color: var(--pos); }

/* AI 작업 진행 플로팅 카드 */
.dash-float-task {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,201,167,0.2);
  min-width: 170px;
  animation: floatBob 3s ease-in-out infinite alternate;
}
.dt-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.dt-top i { font-size: 0.85rem; }
.dt-top span { font-size: 0.72rem; font-weight: 700; color: var(--text-primary); flex: 1; }
.dt-top em { font-size: 0.7rem; font-weight: 800; font-style: normal; color: var(--ai); }
.dt-bar {
  height: 5px;
  background: rgba(0,201,167,0.12);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5px;
}
.dt-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ai), #00E5C0);
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}
.dt-label { font-size: 0.58rem; color: var(--text-muted); font-weight: 600; }

/* 알림 텍스트 트랜지션 */
#heroNotifText {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 차트 바 전환 속도 강화 (히어로 인터랙션용) */
.dash-bar { transition: height 0.8s cubic-bezier(0.4,0,0.2,1), background 0.3s; cursor: pointer; }
.dash-bar:hover { background: rgba(91,69,240,0.3); }

/* 히어로 파이 링 — 반응형 크기 유지 */

@media (max-width: 768px) {
  .dash-float-task { display: none; }
  .dash-solution-row { gap: 4px; }
  .dsr-item { padding: 6px 3px; }
}


