html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #ffffff !important;
}
/* 모바일 전용 줄바꿈 */
.mobile-br { display: none; }
.desktop-br { display: inline; }
@media (max-width: 768px) {
  .mobile-br { display: inline; }
  .desktop-br { display: none; }
}
/* 섹션 스크롤 등장 애니메이션 */
.section-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
html, body {
  max-width: 100vw;
  overflow-x: hidden;
  background: #ffffff !important;
}
/* 전역 커스텀 스크롤바: 어두운 히어로 화면에서 기본 스크롤바가 흰 여백처럼 보이는 문제 개선 */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(12, 100, 150, 0.55) transparent;
}
html::-webkit-scrollbar {
  width: 8px;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: rgba(12, 100, 150, 0.55);
  border-radius: 4px;
}
html::-webkit-scrollbar-thumb:hover {
  background: rgba(12, 100, 150, 0.8);
}
/* 온보딩(히어로) 화면에서는 스크롤바 숨김 → 스크롤 내리면 표시 */
html.hide-scrollbar {
  scrollbar-width: none;
}
html.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
:root {
  --primary: #0C6496;
  --primary-dark: #0A3F76;
  --primary-light: #00BAF1;
  --secondary: #0C6496;
  --secondary-light: #00BAF1;
  --accent: #0C6496;
  --accent-secondary: #00BAF1;
  --neon-green: #4ade80;
  --neon-pink: #f472b6;
  --neon-blue: #00BAF1;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #0C6496;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  --white: #ffffff;
  --black: #09090b;
  --text-primary: #1a1a2e;
  --text-secondary: #3d3d5c;
  --text-muted: #71717a;
  --gradient-primary: linear-gradient(135deg, #0C6496 0%, #0A3F76 100%);
  --gradient-hero: linear-gradient(155deg, #0A3F76 0%, #0C6496 20%, #0C6496 50%, #00BAF1 80%, #0C6496 100%);
  --gradient-card: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  --gradient-accent: linear-gradient(135deg, #0C6496 0%, #0A3F76 100%);
  --gradient-cool: linear-gradient(135deg, #00BAF1 0%, #0A3F76 100%);
  --gradient-warm: linear-gradient(135deg, #0C6496 0%, #00BAF1 100%);
  --gradient-mesh: none;
  --gradient-glow: linear-gradient(
    135deg,
    rgba(12, 100, 150, 0.1) 0%,
    rgba(10, 63, 118, 0.1) 100%
  );
  --shadow-sm:
    0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 12px 16px -4px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-lg:
    0 24px 32px -8px rgba(0, 0, 0, 0.1), 0 12px 16px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 32px 48px -12px rgba(0, 0, 0, 0.18);
  --shadow-2xl: 0 40px 64px -16px rgba(0, 0, 0, 0.24);
  --shadow-glow: 0 0 40px transparent;
  --shadow-glow-pink: 0 0 40px transparent;
  --shadow-glow-blue: 0 0 60px transparent;
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-blur: blur(24px);
  --container-max: 1280px;
  --section-padding: 120px;
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;
  --radius-full: 9999px;
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family:
    "Noto Sans KR",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-primary);
  letter-spacing: -0.008em;
  background: #ffffff;
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.015em;
}
p {
  color: var(--text-secondary);
  line-height: 1.4;
  word-break: keep-all;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before {
  opacity: 1;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow:
    var(--shadow-md),
    0 0 40px transparent;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    var(--shadow-xl),
    0 0 60px transparent;
}
.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}
.btn-glow {
  /* pulse-glow 애니메이션 제거 (호버시 깜빡임 원인) */
}
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-outline:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--gray-800);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: var(--radius-lg);
  gap: 12px;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}
.btn-block {
  width: 100%;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 10px 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--primary);
  background: none;
  border: none;
  border-radius: 0;
  margin-bottom: 8px;
  transition: all var(--transition);
}
.section-badge:hover {
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  transform: translateY(-1px);
}
.section-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gradient-primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.section-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(
    135deg,
    var(--gray-900) 0,
    var(--primary-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.35;
  word-break: keep-all;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px 0;
}
.header.scrolled .logo-img {
  filter: none;
}
.header.scrolled .logo-text {
  color: var(--gray-800);
}
.header.scrolled .nav-list a {
  color: var(--gray-700);
}
.header.scrolled .nav-list a:hover {
  color: var(--primary);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}
.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 800;
  border-radius: var(--radius);
}
.logo-text {
  color: rgba(255, 255, 255, 0.95);
  transition: var(--transition);
}
.logo-img {
  height: 64px;
  width: auto;
  padding: 0;
  background: 0 0;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.nav {
  margin-left: auto;
}
.nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-list a {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: color var(--transition);
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}
.nav-list a:hover {
  color: #c7d2fe;
}
.nav-list a:hover::after {
  width: 100%;
}
.nav-list a.active {
  color: #e0e7ff;
}
.header-cta {
  margin-left: 40px;
  padding: 10px 20px;
  font-size: 14px;
  background: linear-gradient(135deg, rgba(12, 100, 150, 0.95) 0%, rgba(10, 63, 118, 1) 100%);
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: 0 0;
  border: none;
  cursor: pointer;
}
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  transition: var(--transition);
}
.header.scrolled .mobile-menu-btn span {
  background: #1a1a2e;
}

/* ===== Promo Showcase Section ===== */
.promo-showcase {
  position: relative;
  padding: 100px 0 120px;
  overflow: clip;
  background: #fff;
}
.promo-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: #f7f7f7;
  z-index: 0;
  pointer-events: none;
  border-bottom-left-radius: 60px;
}
.promo-showcase-bg {
  display: none;
}
/* 말풍선 pill 레이아웃 */
.promo-headline {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.promo-headline .section-badge {
  margin-bottom: 16px;
}
.promo-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.45;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.promo-br-pc { display: inline; }
@media (min-width: 391px) and (max-width: 480px) {
  .promo-br-pc { display: inline; }
}
@media (min-width: 481px) and (max-width: 768px) {
  .promo-br-pc { display: inline; }
}
@media (min-width: 769px) {
  .promo-br-pc { display: inline; }
}
.promo-highlight {
  color: #0c6496;
  font-size: 1.15em;
}
@media (min-width: 769px) {
  .promo-split-left .promo-highlight { font-size: 1em; }
}

/* 키워드 그리드 */
/* 프로모션 스플릿 레이아웃 */
.promo-split {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  z-index: 1;
  position: relative;
}
.promo-split-left {
  flex: 0 0 440px;
  position: sticky;
  top: 120px;
  transform: translateX(-30px);
}
.promo-split-left .promo-title {
  text-align: left;
  font-size: 40px;
  word-break: keep-all;
}
.promo-split-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin-top: 20px;
}
.promo-split-list {
  list-style: none;
  padding: 0;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.promo-split-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
}
.promo-split-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0c6496;
  flex-shrink: 0;
}
.promo-chips {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.promo-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #334155;
}
.promo-chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0c6496;
  flex-shrink: 0;
}
.promo-split-right {
  flex: 1;
}
.promo-grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  max-width: 660px;
  margin-left: auto;
}
.pgc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  aspect-ratio: 1;
  background: #fff;
  border: none;
  border-radius: 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  cursor: default;
  position: relative;
}
.pgc-card .pgc-tooltip {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #1e293b;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 10px;
  white-space: normal;
  width: 220px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: none;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.pgc-card .pgc-tooltip::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #1e293b;
}
.pgc-card:hover .pgc-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  z-index: 100;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.pgc-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.04);
  z-index: 50;
}
.pgc-card-accent {
  background: #fff;
  border-color: transparent;
}
.pgc-card-accent span {
  color: #4D5A74 !important;
}
.pgc-card-accent .pgc-icon svg {
  stroke: none;
}
.pgc-card-accent:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.04);
}
.pgc-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pgc-icon svg {
  width: 60px;
  height: 60px;
  stroke: none;
  opacity: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}
.pgc-card:hover .pgc-icon svg {
  opacity: 1;
}
.pgc-card span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #4D5A74;
  text-align: center;
}
@media (max-width: 768px) {
  .promo-showcase::before {
    width: 50%;
  }
  .promo-split {
    flex-direction: column;
    gap: 40px;
  }
  .promo-split {
    align-items: center;
  }
  .promo-split-left {
    flex: none;
    width: 100%;
    position: static;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: none;
  }
  .promo-title { font-size: clamp(1.44rem, 6.13vw, 1.8rem) !important; }
  .promo-highlight { font-size: 1em !important; }
  .promo-split-left .promo-title { text-align: center; }
  .promo-split-left .section-badge { margin: 0 auto; }
  .promo-split-list { align-items: center; }
  .promo-showcase {
    overflow: visible !important;
    z-index: 2;
    position: relative;
  }
  .promo-split-right { width: 100%; display: flex; justify-content: center; }
  .promo-grid-cards { grid-template-columns: repeat(3, 1fr); margin-left: 0; margin: 0 auto; max-width: 100%; overflow: visible !important; }
  .pgc-card { overflow: visible !important; }
  .pgc-card .pgc-tooltip {
    bottom: auto;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    width: 180px;
    font-size: 0.7rem;
    padding: 8px 10px;
    z-index: 9999;
  }
  .pgc-card .pgc-tooltip::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: #1e293b;
  }
  .pgc-card:hover .pgc-tooltip {
    transform: translateX(-50%) translateY(0);
    z-index: 9999;
  }
  .pgc-card:hover {
    z-index: 100;
  }
  .pgc-card:not(:hover) .pgc-tooltip {
    z-index: -1;
  }
}

/* 프로모 섹션 모바일 배경 */
@media (max-width: 768px) {
  .promo-showcase { background: #f2f2f2 !important; overflow: visible !important; }
  .promo-showcase::before { display: none !important; }
}

/* 프로모 카드 모바일 슬라이더 */
.pgc-slide-wrap { display: none; }
@media (max-width: 480px) {
  .promo-grid-cards > .pgc-card { display: none !important; }
  .pgc-slide-wrap { display: block !important; }
  .pgc-slide { display: none; }
  .pgc-slide.active { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; animation: pgcFade 0.4s ease; }
  @keyframes pgcFade { from { opacity:0; } to { opacity:1; } }
  .pgc-slide .pgc-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    aspect-ratio: 1 !important;
    padding: 8px !important;
    gap: 4px !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
  }
  .pgc-slide .pgc-card .pgc-icon {
    width: 36px !important;
    height: 36px !important;
    flex-shrink: 0;
  }
  .pgc-slide .pgc-card .pgc-icon svg {
    width: 100% !important;
    height: 100% !important;
  }
  .pgc-slide .pgc-card > span {
    font-size: 0.6rem !important;
    text-align: center !important;
    word-break: keep-all !important;
    line-height: 1.2 !important;
  }
  .pgc-slide .pgc-card .pgc-tooltip {
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 200px !important;
    font-size: 0.72rem !important;
    padding: 12px 14px !important;
    transition: opacity 0.3s !important;
    z-index: 99999 !important;
    background: #1e293b !important;
    color: #fff !important;
    border-radius: 10px !important;
    text-align: center !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
  }
  .pgc-slide .pgc-card .pgc-tooltip::after { display: none !important; }
  .pgc-slide .pgc-card:hover .pgc-tooltip {
    opacity: 1 !important;
  }
  .pgc-slide .pgc-card { position: relative !important; overflow: visible !important; }
  .pgc-slide .pgc-card:hover { z-index: 9999 !important; }
  .pgc-slide.active { overflow: visible !important; }
  .pgc-slide-wrap { overflow: visible !important; }
  .pgc-slide-wrap {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .pgc-slide.active {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    width: 240px !important;
    margin: 0 auto !important;
  }
  .promo-split-right {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .pgc-slide-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
  .pgc-slide-dot { width: 10px; height: 10px; border-radius: 50%; background: #ccc; cursor: pointer; transition: all 0.3s; border: none; }
  .pgc-slide-dot.active { background: #0a3f76; transform: scale(1.2); }
}
@media (min-width: 391px) and (max-width: 480px) {
  .pgc-slide .pgc-card .pgc-icon { width: 56px !important; height: 56px !important; }
  .pgc-slide .pgc-card > span { font-size: 0.85rem !important; }
}

/* 개별 키워드 박스 */
.promo-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
  padding: 12px 14px 10px;
  background: #fff;
  border: 1px solid rgba(14,165,233,0.1);
  border-radius: 16px;
  cursor: default;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  will-change: transform;
  min-height: unset;
}
.promo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(14,165,233,0.15);
  border-color: rgba(14,165,233,0.3);
  z-index: 5;
}
.promo-item-accent {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border-color: transparent;
}
.promo-item-accent .promo-label { color: #fff; }
.promo-item-accent .promo-icon svg { stroke: rgba(255,255,255,0.9); }
.promo-item-accent:hover {
  box-shadow: 0 16px 40px rgba(14,165,233,0.3);
}

/* 아이콘 */
.promo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,165,233,0.08);
  border-radius: 14px;
  transition: all 0.3s ease;
}
.promo-icon svg {
  width: 16px;
  height: 16px;
  stroke: #0ea5e9;
  transition: all 0.3s ease;
}
.promo-item:hover .promo-icon {
  background: rgba(14,165,233,0.15);
  transform: scale(1.08);
}
.promo-item-accent .promo-icon {
  background: rgba(255,255,255,0.2);
}

/* 라벨 */
.promo-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  white-space: nowrap;
}

/* 툴팁 */
.promo-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 260px;
  padding: 16px 18px;
  background: #0f172a;
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  line-height: 1.6;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.promo-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #0f172a;
}
.promo-item:hover .promo-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* 스크롤 패럴랙스 애니메이션 */
.promo-item[data-parallax="1"] { animation: promoFloat1 6s ease-in-out infinite; }
.promo-item[data-parallax="2"] { animation: promoFloat2 7s ease-in-out infinite; }
.promo-item[data-parallax="3"] { animation: promoFloat3 8s ease-in-out infinite; }

@keyframes promoFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes promoFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes promoFloat3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
/* hover 시 float 애니메이션 정지 */
.promo-item:hover {
  animation-play-state: paused;
}

/* 스크롤 인터랙션: 뷰포트 진입 시 등장 */
.promo-item {
  opacity: 0;
  transform: translateY(60px);
}
.promo-item.promo-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.promo-item:nth-child(1).promo-visible { transition-delay: 0s; }
.promo-item:nth-child(2).promo-visible { transition-delay: 0.06s; }
.promo-item:nth-child(3).promo-visible { transition-delay: 0.12s; }
.promo-item:nth-child(4).promo-visible { transition-delay: 0.18s; }
.promo-item:nth-child(5).promo-visible { transition-delay: 0.24s; }
.promo-item:nth-child(6).promo-visible { transition-delay: 0.3s; }
.promo-item:nth-child(7).promo-visible { transition-delay: 0.36s; }
.promo-item:nth-child(8).promo-visible { transition-delay: 0.42s; }
.promo-item:nth-child(9).promo-visible { transition-delay: 0.48s; }
.promo-item:nth-child(10).promo-visible { transition-delay: 0.54s; }
.promo-item:nth-child(11).promo-visible { transition-delay: 0.6s; }

/* 반응형 */
@media (max-width: 768px) {
  .promo-showcase { padding: 60px 0 80px; }
  .promo-headline { margin-bottom: 40px; }
  .hex-cell { width: 100px; height: 108px; }
  .hex-inner svg { width: 22px; height: 22px; }
  .hex-inner span { font-size: 0.7rem; }
  .hex-row { gap: 8px; margin-top: -16px; }
  .promo-icon { width: 40px; height: 40px; }
  .promo-icon svg { width: 20px; height: 20px; }
  .promo-label { font-size: 0.78rem; }
  .promo-tooltip { width: 200px; font-size: 0.75rem; }
}
@media (max-width: 480px) {
  .hex-cell { width: 80px; height: 86px; }
  .hex-inner svg { width: 18px; height: 18px; }
  .hex-inner span { font-size: 0.6rem; }
  .hex-row { gap: 6px; margin-top: -12px; }
}

/* ===== Member Section ===== */
.member-section {
  padding: 100px 0 100px;
  background: #fff;
}
.member-header {
  text-align: center;
  margin-bottom: 32px;
}
.member-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.4;
  color: #0f172a;
}
.member-value {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.member-value-main {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 16px;
}
.member-value-main strong {
  color: #0ea5e9;
}
.member-value-sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #64748b;
}

/* 좌우 레이아웃 */
.member-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

/* 좌측 이미지 */
.member-img-area {
  position: relative;
  background: none;
  border: none;
  box-shadow: none;
  overflow: visible;
}
.member-img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 769px) {
  .member-img { width: 60%; margin: 0 auto; }
}
.member-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}
.member-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
}
.member-img-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(14,165,233,0.8);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.member-img-overlay p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

/* 우측 카드 */
.member-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 100%;
}
@media (min-width: 769px) {
  .member-cards { transform: translateX(-90px); width: calc(100% + 300px); }
}
@media (max-width: 430px) {
  .member-cards { grid-template-columns: 1fr; }
}
.member-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 40px 28px 24px;
  position: relative;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(10,63,118,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: visible;
}
.member-card:hover {
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(10,63,118,0.1);
  transform: translateY(-3px);
}
.member-card-no {
  display: inline-block;
  background: #4A81DD;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 0;
  left: 28px;
}
.member-card-icon-float {
  position: absolute;
  top: 12px;
  right: 20px;
  width: 72px;
  height: 72px;
  z-index: 2;
}
.member-card-icon-float svg {
  width: 72px;
  height: 72px;
  stroke: #4A81DD;
  opacity: 0.3;
}
.member-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 0;
}
.member-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}
.member-card-body h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.6;
  padding-right: 80px;
}
.member-card-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #64748b;
  text-align: left;
}
.member-card-body h4 {
  text-align: left;
}
.member-card-body {
  text-align: left;
}

/* 하단 추가 기능 칩 */
.member-extra {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.member-extra-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f0f7ff;
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0369a1;
  transition: all 0.3s ease;
}
.member-extra-chip svg {
  width: 18px;
  height: 18px;
  stroke: #0ea5e9;
}
.member-extra-chip:hover {
  background: #e0f2fe;
  border-color: rgba(14,165,233,0.3);
  transform: translateY(-2px);
}

/* 스크롤 등장 애니메이션 */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.member-card.scroll-reveal {
  transition-delay: 0s;
}
.member-cards.cards-in-view .member-card,
.inv-grid.cards-in-view .inv-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition-delay: 0s !important;
}
.member-cards:not(.cards-in-view) .member-card,
.inv-grid:not(.cards-in-view) .inv-card {
  opacity: 0 !important;
  transform: translateY(60px) !important;
}

/* 반응형 */
@media (max-width: 768px) {
  .member-section { padding: 40px 0 0; }
  .member-header { text-align: center; }
  .member-header .section-badge { margin: 0 auto; }
  .member-section-title { font-size: clamp(1.25rem, 5.4vw, 1.6rem) !important; }
  .member-section-title .mobile-br { display: none; }
  .member-layout { grid-template-columns: 1fr; gap: 40px; margin-bottom: -16px; }
  .member-img-area { aspect-ratio: 16/9; max-width: 75%; margin: 0 auto 110px; }
  .member-cards { max-width: 100%; }
  .member-card {
    padding: 24px 20px;
    gap: 14px;
    min-height: auto;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #F9FAFB !important;
    transition: none !important;
    -webkit-transition: none !important;
  }
  .member-card-no {
    margin-bottom: 8px;
  }
  .member-card-icon-float {
    width: 56px;
    height: 56px;
    top: 10px;
    right: 12px;
  }
  .member-card:nth-child(n+3) .member-card-icon-float {
    top: 10px;
  }
  .member-card-no {
    font-size: 0.7rem;
    padding: 4px 10px;
    left: 20px;
  }
  .member-card-body h4 {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 8px;
  }
  .member-card-body h4 br { display: none; }
  .member-card-body p {
    font-size: 0.82rem;
    line-height: 1.65;
  }
  .member-card-body p br { display: none; }
  .member-extra { gap: 10px; }
  .member-extra-chip { padding: 8px 14px; font-size: 0.8rem; }
}

/* ===== Discount Section ===== */
.discount-section {
  padding: 120px 0;
  background: #111827;
  position: relative;
  overflow: hidden;
}
.discount-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.discount-title-area {
  text-align: center;
  margin-bottom: 60px;
}
.discount-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
}
.discount-title span {
  background: linear-gradient(135deg, #00BAF1, #0C6496);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.discount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.discount-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.discount-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 100, 150, 0.15), rgba(10, 63, 118, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.discount-card:hover {
  transform: translateY(-6px);
  border-color: rgba(12, 100, 150, 0.5);
  box-shadow: 0 20px 40px rgba(12, 100, 150, 0.15);
}
.discount-card:hover::before {
  opacity: 1;
}
.discount-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 100, 150, 0.15);
  border-radius: 12px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.discount-card:hover .discount-card-icon {
  background: rgba(12, 100, 150, 0.3);
  transform: scale(1.1);
}
.discount-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #00BAF1;
}
.discount-keyword {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
}
.discount-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}
.discount-card:hover .discount-desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 4px;
}
@media (max-width: 1024px) {
  .discount-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .discount-section {
    padding: 80px 0;
  }
  .discount-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .discount-card {
    padding: 20px 18px;
  }
}
@media (max-width: 480px) {
  .discount-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Member Section ===== */
.member-section {
  padding: 100px 0 120px;
  background: #fff;
}
.member-header {
  text-align: center;
  margin-bottom: 60px;
}
.member-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.3;
  margin-top: 16px;
}
.member-title strong {
  color: var(--primary);
}
.member-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.member-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.member-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.member-feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(12, 100, 150, 0.1);
  border-color: var(--primary);
}
.member-feat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 100, 150, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}
.member-feat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}
.member-feat-text h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.member-feat-text p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .member-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .member-features {
    grid-template-columns: 1fr;
  }
}

/* ===== Inventory Section ===== */
.inventory-section {
  padding: 100px 0 120px;
  background: #f8f9fc;
}
.inventory-header {
  text-align: center;
  margin-bottom: 60px;
}
.inventory-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.3;
  margin-top: 16px;
}
.inventory-title strong {
  color: var(--primary);
}
.inventory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.inventory-card {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.3s ease;
}
.inventory-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(12, 100, 150, 0.12);
  border-color: var(--primary);
}
.inventory-card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.inventory-card-img svg {
  width: 56px;
  height: 56px;
  stroke: var(--primary);
  opacity: 0.6;
}
.inventory-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  padding: 24px 28px 8px;
}
.inventory-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  padding: 0 28px 28px;
}
@media (max-width: 768px) {
  .inventory-grid {
    grid-template-columns: 1fr;
  }
  .inventory-card-img {
    height: 160px;
  }
}

/* ===== Sales Section ===== */
.sales-section {
  padding: 100px 0 120px;
  background: #fff;
}
.sales-header {
  text-align: center;
  margin-bottom: 80px;
}
.sales-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.3;
  margin-top: 16px;
}
.sales-title strong {
  color: var(--primary);
}
.sales-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.sales-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.4s ease;
}
.sales-card-up {
  margin-top: 0;
}
.sales-card-down {
  margin-top: 48px;
}
.sales-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(12, 100, 150, 0.12);
  border-color: var(--primary);
}
.sales-card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sales-card-img svg {
  width: 56px;
  height: 56px;
  stroke: var(--primary);
  opacity: 0.5;
}
.sales-card-body {
  padding: 24px;
}
.sales-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: 16px;
}
.sales-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
}
.sales-card-link svg {
  transition: transform 0.3s ease;
}
.sales-card:hover .sales-card-link svg {
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .sales-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sales-card-down {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .sales-title { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }
  .sales-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Franchise Section ===== */
.franchise-section {
  padding: 100px 0 120px;
  background: linear-gradient(to bottom, #f8f9fc 0%, #f8f9fc 100%);
}
.franchise-header {
  text-align: center;
  margin-bottom: 60px;
}
.franchise-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.4;
  margin-top: 16px;
}
.franchise-title strong {
  color: var(--primary);
}
.franchise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ===== Franchise Duo Cards (이미지 스타일) ===== */
.fc-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.fc-duo-card {
  position: relative;
  border-radius: 24px;
  padding: 44px 40px;
  min-height: 280px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s ease;
  display: flex;
  align-items: flex-start;
}
.fc-duo-card:hover {
  transform: translateY(-6px);
}
.fc-duo-card--primary {
  background: linear-gradient(135deg, #0a3f76 0%, #0c2d5a 50%, #091e3a 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(10,63,118,0.3);
}
.fc-duo-card--primary:hover {
  box-shadow: 0 16px 48px rgba(10,63,118,0.4);
}
.fc-duo-card--light {
  background: #fff;
  color: #2d3748;
  border: 1.5px solid #e8ecf2;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.fc-duo-card--light:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
.fc-duo-card__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fc-duo-card__num {
  display: none;
}
.fc-duo-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}
.fc-duo-card__highlight {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
}
.fc-duo-card--primary .fc-duo-card__highlight {
  color: #fff;
}
.fc-duo-card--light .fc-duo-card__highlight {
  color: #0a3f76;
}
.fc-duo-card__sub {
  font-size: 0.82rem;
  opacity: 0.55;
  line-height: 1.5;
  margin: 4px 0 0;
  font-weight: 500;
}
.fc-duo-card--primary .fc-duo-card__title {
  color: rgba(255,255,255,0.8);
}
.fc-duo-card--primary .fc-duo-card__sub {
  color: #fff;
  opacity: 0.6;
}
.fc-duo-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease, opacity 0.3s ease;
}
.fc-duo-card--primary .fc-duo-card__link {
  color: rgba(255,255,255,0.85);
}
.fc-duo-card--primary .fc-duo-card__link:hover {
  color: #fff;
  gap: 10px;
}
.fc-duo-card--light .fc-duo-card__link {
  color: #0a3f76;
}
.fc-duo-card--light .fc-duo-card__link:hover {
  color: #0c6496;
  gap: 10px;
}
.fc-duo-card__deco {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 160px;
  height: 160px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}
.fc-duo-card__deco svg {
  width: 100%;
  height: 100%;
}

/* 프랜차이즈 상세 팝업 */
.fc-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fcFadeIn 0.3s ease;
}
.fc-popup-overlay.active {
  display: flex;
}
@keyframes fcFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fc-popup {
  background: #fff;
  border-radius: 24px;
  padding: 60px 56px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  animation: fcSlideUp 0.35s cubic-bezier(.4,0,.2,1);
}
@keyframes fcSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fc-popup-wrap {
  position: relative;
  max-width: 1280px;
  width: 95%;
}
.fc-popup__close {
  position: absolute;
  top: -16px;
  right: -16px;
  background: #fff;
  border: none;
  font-size: 1.6rem;
  color: #64748b;
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 10;
}
.fc-popup__close:hover {
  background: #f1f5f9;
  color: #1e293b;
  transform: rotate(90deg);
}
.fc-popup__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 32px;
  padding-right: 40px;
}
.fc-popup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fc-popup-card {
  background: #f8fafc;
  border: 1.5px solid #e8ecf2;
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.fc-popup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #7B6CC4;
}
.fc-popup-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.fc-popup-card__icon svg {
  width: 24px;
  height: 24px;
}
.fc-popup-card--purple .fc-popup-card__icon {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: #7c3aed;
}
.fc-popup-card--blue .fc-popup-card__icon {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #2563eb;
}
.fc-popup-card--teal .fc-popup-card__icon {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
  color: #0d9488;
}
.fc-popup-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px;
  line-height: 1.5;
}
.fc-popup-card__desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* 첫 번째 카드: 네이비 스타일 */
.fc-popup-card--featured {
  background: linear-gradient(135deg, #0a3f76 0%, #0c2d5a 50%, #091e3a 100%);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(10,63,118,0.25);
}
.fc-popup-card--featured:hover {
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(10,63,118,0.35);
}
.fc-popup-card--featured .fc-popup-card__icon {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.fc-popup-card--featured .fc-popup-card__icon svg {
  stroke: #fff;
}
.fc-popup-card--featured .fc-popup-card__title {
  color: #fff;
}
.fc-popup-card--featured .fc-popup-card__desc {
  color: rgba(255,255,255,0.7);
}
.fc-popup-card--featured {
  position: relative;
  overflow: hidden;
}
.fc-popup-card__deco {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 110px;
  height: 110px;
  pointer-events: none;
  opacity: 0.9;
}
.fc-popup-card__deco svg {
  width: 100%;
  height: 100%;
}

/* 2번째 하이라이트 카드 */
.fc-popup-card--highlight {
  background: #fff;
  border: 1.5px solid #e8ecf2;
  position: relative;
  overflow: hidden;
  padding-bottom: 90px;
}
.fc-popup-card--highlight:hover {
  border-color: #818cf8;
  box-shadow: 0 8px 24px rgba(99,102,241,0.12);
}
.fc-popup-card__num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0a3f76;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 8px;
}
.fc-popup-card--highlight .fc-popup-card__title {
  color: #0a3f76;
  font-size: 0.95rem;
  line-height: 1.5;
}
.fc-popup-card--highlight .fc-popup-card__desc {
  color: #64748b;
  opacity: 1;
  font-size: 0.82rem;
}
.fc-popup-card__illust {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 150px;
  height: 105px;
  pointer-events: none;
  opacity: 0.9;
}
.fc-popup-card__illust svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .franchise-section { padding: 36px 0 70px; }
  .franchise-header { margin-bottom: 36px; }
  .franchise-header .section-badge { margin: 0 auto; }
  .franchise-title { font-size: clamp(1.31rem, 5.6vw, 1.65rem) !important; line-height: 1.6 !important; }
  .fc-duo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .fc-duo-card {
    padding: 32px 28px;
    min-height: auto;
  }
  .fc-duo-card__title {
    font-size: 14.5px !important;
  }
  .fc-duo-card__deco {
    width: 120px;
    height: 120px;
  }
  .fc-popup-wrap {
    width: 100%;
  }
  .fc-popup {
    padding: 36px 24px;
  }
  .fc-popup__close {
    top: -44px;
    right: 4px;
  }
  .fc-popup__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}
@media (max-width: 622px) {
  .fc-popup__close {
    top: -18px;
    right: -18px;
  }
}
@media (max-width: 480px) {
  .fc-popup__grid {
    grid-template-columns: 1fr;
  }
}
.franchise-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.4s ease;
  min-height: 320px;
  display: flex;
}
.franchise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(12, 100, 150, 0.12);
  border-color: var(--primary);
}
.franchise-card-inner {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.franchise-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 100, 150, 0.1);
  border-radius: 16px;
}
.franchise-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}
.franchise-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.5;
}
.franchise-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
}
.franchise-card-link svg {
  transition: transform 0.3s ease;
}
.franchise-card:hover .franchise-card-link svg {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .franchise-grid {
    grid-template-columns: 1fr;
  }
  .franchise-card-inner {
    padding: 32px 24px;
  }
  .franchise-card {
    min-height: auto;
  }
}

/* ===== Product Manage Section ===== */
.product-manage-section {
  padding: 100px 0 120px;
  background: linear-gradient(to bottom, #fff 0%, #f8f9fc 120px, #f8f9fc 100%);
}
.pm-animate {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pm-animate.pm-visible {
  opacity: 1;
  transform: translateY(0);
}
.pm-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pm-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.pm-title-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0;
}
.pm-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.3;
  margin-top: 4px;
  margin-bottom: 16px;
}
.pm-title-highlight {
  color: var(--primary);
}
.pm-title strong {
  color: var(--gray-900);
  font-size: inherit;
}
.pm-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
}
.pm-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pm-bottom .pm-card {
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.pm-bottom .pm-card-icon-right {
  align-self: flex-end;
  background: none;
  border: none;
  border-radius: 0;
}
.pm-bottom .pm-card-icon-right {
  width: 80px;
  height: 80px;
}
.pm-bottom .pm-card-icon-right .pm-card-icon-img {
  width: 80px;
  height: 80px;
  opacity: 0.85;
}
.pm-card-arrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  margin-top: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(10, 63, 118, 0.06);
  color: #0a3f76;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  position: relative;
  z-index: 3;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.pm-card-arrow svg {
  transition: transform 0.3s ease;
}
.pm-card-arrow-main {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.pm-card-hoverable:hover .pm-card-arrow {
  opacity: 0;
  pointer-events: none;
}
.pm-card-text-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pm-card-arrow:hover {
  transform: translateX(6px);
}
.pm-hover-overlay-main {
  background: linear-gradient(135deg, rgba(12, 100, 150, 0.95) 0%, rgba(10, 63, 118, 1) 100%) !important;
}
.pm-hover-headline-main {
  color: #fff !important;
  border-left: 2px solid #fff !important;
  padding-left: 8px !important;
  font-size: 24px !important;
}
.pm-hover-overlay-main .pm-hover-sub {
  color: rgba(255, 255, 255, 0.75) !important;
}
.pm-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(10, 63, 118, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pm-card.pm-animate {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pm-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(10, 63, 118, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.6);
}
.pm-card-main {
  min-height: 240px;
  background: linear-gradient(135deg, rgba(12, 100, 150, 0.95) 0%, rgba(10, 63, 118, 1) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 186, 241, 0.3);
  box-shadow: 0 8px 32px rgba(10, 63, 118, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: #fff;
}
.pm-card-main:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(12, 100, 150, 0.95) 0%, rgba(10, 63, 118, 1) 100%);
  box-shadow: 0 8px 32px rgba(10, 63, 118, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(0, 186, 241, 0.3);
}
.pm-card-horizontal {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.pm-card-horizontal h3 {
  font-size: 22px;
  line-height: 1.3;
}
.pm-card-main.pm-card-horizontal h3 {
  font-size: 26px;
  color: #fff;
}
.pm-card-icon-right {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 18px;
  flex-shrink: 0;
}
.pm-card-main .pm-card-icon-right {
  width: 96px;
  height: 96px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 20px;
}
.pm-card-icon-right .pm-card-icon-img {
  width: 80px;
  height: 80px;
}
.pm-card-main .pm-card-icon-right .pm-card-icon-img {
  width: 90px;
  height: 90px;
}
.pm-card-main h3 {
  color: #fff;
}
.pm-card-main p {
  color: rgba(255, 255, 255, 0.85);
}
.pm-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 0;
  flex-shrink: 0;
  -webkit-backdrop-filter: blur(8px);
}
.pm-card-main .pm-card-icon {
  background: none;
  border: none;
}
.pm-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}
.pm-card-main .pm-card-icon svg {
  stroke: #fff;
}
.pm-card-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.pm-card:hover .pm-card-icon-img {
  transform: none;
}
.pm-card-main .pm-card-icon-img {
  filter: none;
}
.pm-card-main:hover .pm-card-icon-img {
  transform: none;
}
.pm-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
}
.pm-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* 대량데이터 처리특화 카드 호버 오버레이 */
.pm-card-hoverable {
  position: relative;
  overflow: hidden;
}
.pm-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 24px;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}
.pm-card-hoverable:hover .pm-hover-overlay {
  opacity: 1;
  pointer-events: auto;
}
.pm-hover-content {
  text-align: left;
}
.pm-hover-headline {
  font-size: 20px;
  font-weight: 700;
  color: #0a3f76;
  line-height: 1.45;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  border-left: 2px solid #0a3f76;
  padding-left: 8px;
  display: inline-block;
}
.pm-hover-sub {
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(10, 63, 118, 0.6);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .pm-animate,
  .pm-animate.pm-visible,
  .scroll-reveal,
  .scroll-reveal.revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
    -webkit-transform: none !important;
    -webkit-transition: none !important;
  }
  .product-manage-section {
    padding: 60px 0 80px;
  }
  .pm-layout {
    gap: 12px;
  }
  .pm-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pm-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pm-title-area {
    padding: 20px 0;
    text-align: center;
    align-items: center;
  }
  .pm-title-area .section-badge { margin: 0 auto; }
  .pm-title { font-size: clamp(1.44rem, 6.13vw, 1.8rem) !important; }
  .pm-title strong { font-size: inherit !important; }
  .pm-card {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    padding: 24px 20px;
    gap: 8px;
    min-height: auto;
  }
  .pm-card:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .pm-card-main {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: linear-gradient(135deg, rgba(12, 100, 150, 0.95) 0%, rgba(10, 63, 118, 1) 100%);
    border: 1px solid rgba(0, 186, 241, 0.3);
    box-shadow: 0 8px 32px rgba(10, 63, 118, 0.2);
    min-height: 140px;
    padding: 20px 20px;
  }
  .pm-card-main.pm-card-horizontal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .pm-card-main.pm-card-horizontal h3 {
    font-size: 19.5px;
    color: #fff;
  }
  .pm-card-main .pm-card-icon-right {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
  }
  .pm-card-main .pm-card-icon-right .pm-card-icon-img {
    width: 72px;
    height: 72px;
  }
  .pm-card h3 { font-size: 19.5px; }
  .pm-bottom .pm-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    min-height: 140px;
    padding: 20px 20px;
    gap: 4px 12px;
  }
  .pm-bottom .pm-card h3 {
    grid-column: 1;
    grid-row: 1;
  }
  .pm-bottom .pm-card .pm-card-arrow {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }
  .pm-bottom .pm-card .pm-card-icon-right {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }
  .pm-bottom .pm-card-icon-right {
    width: 70px !important;
    height: 70px !important;
    background: transparent !important;
    border-radius: 0 !important;
    flex-shrink: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .pm-bottom .pm-card-icon-right .pm-card-icon-img {
    width: 56px !important;
    height: 56px !important;
  }
  .pm-card-icon-img {
    filter: none !important;
    box-shadow: none !important;
  }
  .pm-card-icon,
  .pm-card-main .pm-card-icon {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    outline: none !important;
    filter: none !important;
  }
  .pm-card-arrow {
    margin-top: 6px !important;
    padding: 5px 12px !important;
    font-size: 0.72rem !important;
    border-radius: 999px !important;
  }
  .pm-card-arrow svg {
    width: 12px !important;
    height: 12px !important;
  }
  .pm-bottom .pm-card-icon-right .pm-card-icon-img {
    width: 50px; height: 50px;
    opacity: 0.7;
  }
  .pm-hover-overlay { display: flex; }
  .pm-card-main .pm-hover-overlay { display: flex; }
  .pm-hover-headline-main {
    font-size: 17px !important;
    line-height: 1.5 !important;
  }
  .pm-hover-headline {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
  }
  .pm-hover-sub {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }
  .pm-hover-overlay {
    padding: 16px !important;
  }
  .inv-card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .inv-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transform: none;
  }
  .inv-card.pm-animate,
  .inv-card.scroll-reveal {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    will-change: auto !important;
    -webkit-transform: none !important;
  }
  .member-card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    background: #F9FAFB;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .member-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transform: none;
  }
  .fc-duo-card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .cases-review-card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
}

/* ===== Consult Section ===== */
.consult-section { padding: 80px 0 60px; position: relative; background: transparent; }
body.consult-bg-active { background-color: #f0f7ff !important; }
body.inv-fran-bg-active { background-color: #f8f9fc !important; }
.consult-wrapper { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
.consult-header { margin-bottom: 32px; }
.consult-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.consult-sub { font-size: 1rem; color: #64748b; }
.consult-form { display: flex; flex-direction: column; gap: 20px; }
.consult-field label { display: block; font-size: 0.88rem; font-weight: 600; color: #334155; margin-bottom: 6px; }
.req { color: #ef4444; }
.consult-field input[type="text"],
.consult-field input[type="tel"] {
  width: 100%; padding: 14px 16px; border: 2px solid #e2e8f0; border-radius: 10px;
  font-size: 0.95rem; color: #1e293b; transition: border-color 0.3s; background: #fff;
  font-family: inherit;
}
.consult-field input:focus { border-color: #0ea5e9; outline: none; }
.consult-select-wrap { position: relative; }
.consult-select-wrap select {
  width: 100%; padding: 14px 16px; border: 2px solid #e2e8f0; border-radius: 10px;
  font-size: 0.95rem; color: #1e293b; background: #fff; appearance: none; cursor: pointer;
  font-family: inherit;
}
.consult-select-wrap select:focus { border-color: #0ea5e9; outline: none; }
.consult-select-wrap svg { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; stroke: #94a3b8; pointer-events: none; }
.consult-checkbox { margin-top: 4px; }
.consult-check-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.88rem; color: #475569; }
.consult-check-label input { width: 18px; height: 18px; accent-color: #0ea5e9; }
.consult-privacy-link { color: #0ea5e9; text-decoration: underline; }
.consult-submit { width: 100%; justify-content: center; gap: 8px; font-size: 1.05rem; padding: 16px; }
.consult-submit svg { width: 20px; height: 20px; }
/* 우측 정보 */
.consult-info-card {
  background: #fff; border-radius: 20px; padding: 32px; text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06); border: 1px solid #e2e8f0; margin-bottom: 24px;
}
.consult-info-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0ea5e9, #0284c7); border-radius: 16px;
}
.consult-info-icon svg { width: 28px; height: 28px; stroke: #fff; }
.consult-info-card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.consult-phone { font-size: 1.8rem; font-weight: 800; color: #0ea5e9; text-decoration: none; display: block; margin-bottom: 8px; }
.consult-hours { font-size: 0.82rem; color: #94a3b8; line-height: 1.5; }
.consult-benefits {
  background: #fff; border-radius: 16px; padding: 24px;
  border: 1px solid #e2e8f0;
}
.consult-benefits h4 { font-size: 0.95rem; font-weight: 700; color: #0f172a; margin-bottom: 14px; }
.consult-benefits ul { list-style: none; padding: 0; margin: 0; }
.consult-benefits li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 0.85rem; color: #475569; }
.consult-benefits svg { width: 16px; height: 16px; stroke: #10b981; flex-shrink: 0; }
/* 성공 모달 */
.consult-success-modal { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.5); align-items: center; justify-content: center; }
.consult-success-modal.show { display: flex; }
.consult-success-content { background: #fff; border-radius: 20px; padding: 48px; text-align: center; max-width: 400px; }
.consult-success-icon { margin-bottom: 16px; }
.consult-success-icon svg { width: 56px; height: 56px; stroke: #10b981; }
.consult-success-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.consult-success-content p { font-size: 0.9rem; color: #64748b; margin-bottom: 24px; }

/* 이용약관/개인정보 모달 */
.policy-modal-overlay {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); z-index: 10000; backdrop-filter: blur(4px);
}
.policy-modal-overlay.active { display: block; }
.policy-modal {
  display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 90%; max-width: 720px; max-height: 85vh; background: #fff;
  border-radius: 20px; z-index: 10001; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: hidden; flex-direction: column;
}
.policy-modal.active { display: flex; }
.policy-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px 0; flex-shrink: 0;
}
.policy-modal-header .policy-tabs { margin-bottom: 0; }
.policy-modal-close {
  background: none; border: none; cursor: pointer; color: #64748b;
  padding: 8px; border-radius: 8px; transition: all 0.2s;
}
.policy-modal-close:hover { background: #f1f5f9; color: #0f172a; }
.policy-modal-body { padding: 24px 28px 28px; overflow-y: auto; flex: 1; }
.policy-tabs { display: flex; gap: 4px; background: #e2e8f0; border-radius: 12px; padding: 4px; max-width: 400px; }
.policy-tab {
  flex: 1; padding: 12px 20px; border: none; background: transparent;
  border-radius: 8px; font-size: 0.9rem; font-weight: 600; color: #64748b; cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.policy-tab.active { background: #fff; color: #0f172a; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.policy-panel { display: none; }
.policy-panel.active { display: block; }
.policy-doc {
  max-width: 800px; padding: 0; background: transparent; border: none;
  border-radius: 0;
}
.policy-doc h2 { font-size: 1.5rem; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.policy-date { font-size: 0.82rem; color: #94a3b8; margin-bottom: 28px; }
.policy-doc h3 { font-size: 1.05rem; font-weight: 700; color: #1e293b; margin: 24px 0 10px; }
.policy-doc p { font-size: 0.9rem; line-height: 1.75; color: #475569; margin-bottom: 12px; }
.policy-doc ul { padding-left: 20px; margin-bottom: 12px; }
.policy-doc li { font-size: 0.88rem; line-height: 1.7; color: #475569; margin-bottom: 6px; }

@media (max-width: 768px) {
  .consult-wrapper { grid-template-columns: 1fr; }
  .consult-section { padding: 60px 0 10px; }
}

/* ===== Support Section ===== */
.support-section { padding: 80px 0 100px; background: linear-gradient(to bottom, #fff 0%, #f8fafc 120px, #f8fafc 100%); }
/* 탭 */
.sup-tabs { display: flex; gap: 4px; background: #e2e8f0; border-radius: 12px; padding: 4px; margin-bottom: 40px; max-width: 400px; }
.sup-tab {
  flex: 1; padding: 12px 20px; border: none; background: transparent;
  border-radius: 8px; font-size: 0.9rem; font-weight: 600; color: #64748b;
  cursor: pointer; transition: all 0.3s;
}
.sup-tab.active { background: #fff; color: #0f172a; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.sup-panel { display: none; }
.sup-panel.active { display: block; }
/* FAQ 레이아웃 */
.sup-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
/* 검색 */
.sup-search { margin-bottom: 32px; }
.sup-search-title { font-size: 1.4rem; font-weight: 800; color: #0f172a; margin-bottom: 16px; }
.sup-search-box {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  background: #fff; border: 2px solid #e2e8f0; border-radius: 12px; transition: border-color 0.3s;
}
.sup-search-box:focus-within { border-color: #0ea5e9; }
.sup-search-box svg { width: 20px; height: 20px; stroke: #94a3b8; flex-shrink: 0; }
.sup-search-box input {
  flex: 1; border: none; outline: none; font-size: 0.95rem; color: #1e293b;
  background: transparent; font-family: inherit;
}
/* FAQ 아이템 */
.sup-faq-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; max-width: 100%; }
.sup-faq-item { background: #fff; border: none; border-bottom: 1px solid #f0f0f0; border-radius: 0; overflow: hidden; }
.sup-faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; border: none; background: none; text-align: left;
  font-size: 0.95rem; font-weight: 600; color: #1e293b; cursor: pointer; transition: all 0.2s;
}
.sup-faq-q svg { width: 18px; height: 18px; stroke: #0ea5e9; transition: transform 0.3s; flex-shrink: 0; transform: rotate(180deg); }
.sup-faq-item .sup-faq-q { color: #0ea5e9; }
.sup-faq-item.closed .sup-faq-q { color: #1e293b; }
.sup-faq-item.closed .sup-faq-q svg { transform: rotate(0deg); stroke: #94a3b8; }
.sup-faq-a {
  max-height: 200px; overflow: hidden; transition: max-height 0.4s ease;
}
.sup-faq-item.closed .sup-faq-a { max-height: 0; }
.sup-faq-a p { padding: 0 20px 18px; font-size: 0.88rem; line-height: 1.7; color: #64748b; }
/* 매뉴얼 */
.sup-manual {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px; background: #F9FAFB; border: 1px solid rgba(14,165,233,0.15);
  border-radius: 14px;
}
.sup-manual-content { display: flex; align-items: center; gap: 16px; }
.sup-manual-content svg { width: 36px; height: 36px; stroke: #0ea5e9; flex-shrink: 0; }
.sup-manual-content h4 { font-size: 1rem; font-weight: 700; color: #0f172a; }
.sup-manual-content p { font-size: 0.82rem; color: #64748b; }
/* 사이드바 */
.sup-sidebar-title { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 16px; }
.sup-ext-links { display: flex; flex-direction: column; gap: 10px; }
.sup-ext-link {
  display: flex; align-items: center; gap: 14px; padding: 16px;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
  text-decoration: none; color: #1e293b; transition: all 0.3s;
}
.sup-ext-link:hover { border-color: rgba(14,165,233,0.3); box-shadow: 0 4px 16px rgba(14,165,233,0.06); }
.sup-ext-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: rgba(14,165,233,0.08); border-radius: 10px;
}
.sup-ext-icon svg { width: 20px; height: 20px; stroke: #0ea5e9; }
.sup-ext-link span { flex: 1; font-size: 0.88rem; font-weight: 600; }
.sup-ext-arrow { width: 16px; height: 16px; stroke: #94a3b8; }
/* 다운로드 */
.sup-dl-title { font-size: 1.4rem; font-weight: 800; color: #0f172a; margin-bottom: 32px; }
.sup-dl-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.sup-dl-card {
  padding: 28px 20px; background: #fff; border: 1px solid #e2e8f0;
  border-radius: 16px; text-align: center; transition: all 0.35s;
}
.sup-dl-card:hover { border-color: transparent; box-shadow: none; transform: none; }
.sup-dl-icon {
  width: 48px; height: 48px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0ea5e9, #0284c7); border-radius: 12px;
}
.sup-dl-icon svg { width: 24px; height: 24px; stroke: #fff; }
.sup-dl-card h4 { font-size: 0.9rem; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.sup-dl-card p { font-size: 0.78rem; color: #64748b; margin-bottom: 16px; }
.sup-dl-btn {
  display: inline-block; padding: 8px 20px; background: rgba(14,165,233,0.08);
  color: #0284c7; font-size: 0.82rem; font-weight: 600; border-radius: 8px;
  text-decoration: none; transition: all 0.2s;
}
.sup-dl-btn:hover { background: #0ea5e9; color: #fff; }
/* 공지사항 */
.sup-notice-title { font-size: 1.4rem; font-weight: 800; color: #0f172a; margin-bottom: 24px; }
.sup-notice-list { display: flex; flex-direction: column; gap: 0; }
.sup-notice-item {
  border-bottom: 1px solid #e2e8f0;
}
.sup-notice-header {
  display: flex; align-items: center; gap: 16px; padding: 20px 0;
  cursor: pointer; transition: all 0.3s;
}
.sup-notice-header:hover { background: #f8fafc; }
.sup-notice-header h4 { flex: 1; }
.sup-notice-arrow {
  width: 20px; height: 20px; stroke: #94a3b8; flex-shrink: 0;
  transition: transform 0.3s;
}
.sup-notice-item.active .sup-notice-arrow {
  transform: rotate(180deg);
}
.sup-notice-body {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 80px;
}
.sup-notice-item.active .sup-notice-body {
  max-height: 200px;
  padding: 0 0 20px 60px;
}
.sup-notice-body p {
  font-size: 0.9rem; line-height: 1.7; color: #64748b;
}
.sup-notice-badge {
  padding: 4px 12px; background: rgba(14,165,233,0.08);
  color: #0284c7; font-size: 0.72rem; font-weight: 700; border-radius: 6px;
  flex-shrink: 0; margin-top: 2px;
}
.sup-notice-content { flex: 1; }
.sup-notice-content h4 { font-size: 0.95rem; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.sup-notice-content p { font-size: 0.82rem; color: #64748b; line-height: 1.5; }
.sup-notice-date { font-size: 0.78rem; color: #94a3b8; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 1024px) {
  .sup-layout { grid-template-columns: 1fr; }
  .sup-dl-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .support-section { padding: 60px 0 70px; }
  .sup-tabs { max-width: 100%; }
  .sup-tab { padding: 10px 14px; font-size: 0.82rem; }
  .sup-dl-grid { grid-template-columns: 1fr 1fr; }
  .sup-notice-title { font-size: 1.1rem; margin-bottom: 16px; }
  .sup-notice-item { flex-direction: column; gap: 8px; }
  .sup-notice-header { gap: 10px; padding: 14px 0; }
  .sup-notice-content h4 { font-size: 0.85rem; }
  .sup-notice-content p { font-size: 0.78rem; }
  .sup-notice-body { padding: 0 0 0 0; }
  .sup-notice-item.active .sup-notice-body { padding: 0 0 16px 0; }
  .sup-notice-body p { font-size: 0.82rem; }
  .sup-manual {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }
  .sup-manual-content { gap: 12px; }
  .sup-manual-content svg { width: 28px; height: 28px; }
  .sup-manual-content h4 { font-size: 0.9rem; }
  .sup-manual-content p { font-size: 0.78rem; }
  .sup-manual .btn { width: 100%; font-size: 0.9rem; padding: 12px 20px; }
  .sup-faq-q { font-size: 0.88rem; padding: 14px 16px; }
  .sup-faq-a p { padding: 0 16px 14px; font-size: 0.82rem; }
}

/* ===== Location Section ===== */
.loc-section { padding: 0 0 80px; background: #fff; }
.loc-map-full { width: 100%; height: 450px; background: #e2e8f0; }
.loc-map-full iframe { width: 100%; height: 100%; display: block; }
.loc-content {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  margin-top: -40px; position: relative; z-index: 1;
}
/* 회사 정보 카드 */
.loc-info-card {
  background: #fff; border-radius: 20px; padding: 36px 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08); border: 1px solid #e2e8f0;
}
.loc-info-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.loc-info-split {
  display: flex;
  align-items: center;
  gap: 28px;
}
.loc-info-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.loc-info-left h3 { font-size: 1.3rem; font-weight: 800; color: #0f172a; }
.loc-info-divider {
  width: 1px;
  height: 50px;
  background: #d1d5db;
  flex-shrink: 0;
}
.loc-info-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.loc-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.loc-info-item .loc-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  min-width: 60px;
}
.loc-info-item .loc-value {
  font-size: 0.9rem;
  color: #0f172a;
  font-style: normal;
}
.loc-company-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0ea5e9, #0284c7); border-radius: 12px;
}
.loc-company-icon svg { width: 24px; height: 24px; stroke: #fff; }
.loc-info-header h3 { font-size: 1.3rem; font-weight: 800; color: #0f172a; }
.loc-info-list { list-style: none; padding: 0; margin: 0 0 24px; }
.loc-info-list li {
  display: flex; align-items: flex-start; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}
.loc-info-list li:last-child { border-bottom: none; }
.loc-info-list svg { width: 20px; height: 20px; stroke: #0ea5e9; flex-shrink: 0; margin-top: 2px; }
.loc-label { display: block; font-size: 0.75rem; font-weight: 600; color: #94a3b8; margin-bottom: 2px; }
.loc-value { font-size: 0.92rem; color: #1e293b; font-style: normal; line-height: 1.5; }
.loc-phone { font-size: 1.2rem; font-weight: 800; color: #0ea5e9; text-decoration: none; }
.loc-map-btns { display: flex; gap: 10px; }
.loc-map-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 12px; border-radius: 10px; font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: all 0.3s;
}
.loc-map-btn.kakao { background: #fee500; color: #3c1e1e; }
.loc-map-btn.kakao:hover { background: #fdd800; }
.loc-map-btn.naver { background: #03c75a; color: #fff; }
.loc-map-btn.naver:hover { background: #02b350; }

/* 찾아오는 길 */
.loc-directions {
  background: transparent; border-radius: 0; padding: 36px 0;
  box-shadow: none; border: none;
}
.loc-dir-title {
  display: flex; align-items: center; gap: 10px; font-size: 1.4rem;
  font-size: 1.1rem; font-weight: 700; color: #0f172a; margin-bottom: 24px;
}
.loc-dir-title svg { width: 22px; height: 22px; stroke: #0ea5e9; }
.loc-dir-grid { display: flex; flex-direction: column; gap: 20px; }
.loc-dir-card {
  flex: 1;
  padding: 24px; background: #f8fafc; border-radius: 14px;
  border: 1px solid #e2e8f0; transition: all 0.3s;
}
.loc-dir-card:hover { border-color: rgba(14,165,233,0.2); box-shadow: 0 4px 16px rgba(14,165,233,0.06); }
.loc-dir-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; flex-shrink: 0;
}
.loc-dir-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.loc-dir-icon.subway { background: rgba(14,165,233,0.1); }
.loc-dir-icon.subway svg { width: 20px; height: 20px; stroke: #0ea5e9; }
.loc-dir-icon.car { background: rgba(16,185,129,0.1); }
.loc-dir-icon.car svg { width: 20px; height: 20px; stroke: #10b981; }
.loc-dir-card h5 { font-size: 0.95rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.loc-dir-card p { font-size: 0.85rem; line-height: 1.65; color: #64748b; }

@media (max-width: 768px) {
  .loc-section { padding: 0 0 60px; }
  .loc-map-full { height: 250px; }
  .loc-content { grid-template-columns: 1fr; margin-top: -20px; gap: 20px; }
  .loc-info-card { padding: 24px 20px; border-radius: 16px; }
  .loc-info-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .loc-info-left h3 { font-size: 1.05rem; }
  .loc-info-divider { width: 100%; height: 1px; }
  .loc-info-right { width: 100%; }
  .loc-label { font-size: 0.78rem; }
  .loc-value { font-size: 0.85rem; }
  .loc-phone { font-size: 1.1rem; }
  .loc-company-icon { width: 40px; height: 40px; }
  .loc-company-icon svg { width: 20px; height: 20px; }
  .loc-directions { padding: 20px 0; }
  .loc-dir-title { font-size: 0.95rem; margin-bottom: 16px; }
  .loc-dir-title svg { width: 18px; height: 18px; }
  .loc-dir-card { padding: 18px 16px; border-radius: 12px; }
  .loc-dir-card h5 { font-size: 0.88rem; }
  .loc-dir-card p { font-size: 0.78rem; line-height: 1.6; }
  .loc-dir-card p br { display: none; }
  .loc-dir-icon { width: 34px; height: 34px; border-radius: 8px; }
  .loc-dir-icon svg { width: 18px !important; height: 18px !important; }
}

/* ===== Cases Section ===== */
.cases-section { padding: 100px 0; background: #fff; }
.cases-hd { text-align: center; margin-bottom: 48px; }
.cases-hd-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800; line-height: 1.45; color: #0f172a;
}

/* 고객사 로고 슬라이드 */
.cases-logos {
  margin-bottom: 56px; overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.cases-logos-track {
  display: flex; gap: 32px; animation: logosScroll 25s linear infinite;
  width: max-content;
}
.cases-logos-slide {
  margin-bottom: 56px;
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}
.cases-logos-row {
  display: flex;
  gap: 10px;
  width: max-content;
  margin-bottom: 10px;
}
.cases-logos-row-left {
  animation: slideLeft 55s linear infinite;
}
.cases-logos-row-right {
  animation: slideLeft 55s linear infinite;
}
@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes slideRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes logosScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cases-logo-box {
  width: calc(100vw / 5 - 12px); height: 110px;
  display: flex; align-items: center; justify-content: center;
  background: #f1f5f9; border: none; border-radius: 10px;
  font-size: 0.75rem; font-weight: 700; color: #94a3b8; letter-spacing: 0.5px;
  flex-shrink: 0; transition: all 0.3s;
}
.cases-logo-box:hover { background: #e0f2fe; border-color: rgba(14,165,233,0.3); color: #0284c7; }
.cases-logo-box img { max-width: 80%; max-height: 70%; object-fit: contain; mix-blend-mode: multiply; }
.cases-logo-box img.logo-lg { max-width: 95%; max-height: 90%; }

/* 고객 후기 카드 */
.cases-reviews {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.cases-reviews-wrap {
  position: relative;
  margin-bottom: 40px;
}
.cases-reviews-slider {
  overflow: hidden;
}
.cases-reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.cases-reviews-track .cases-review-card {
  min-width: 100%;
  flex-shrink: 0;
}
.cases-reviews-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.cases-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #475569;
}
.cases-nav-btn:hover {
  background: #0c6496;
  border-color: #0c6496;
  color: #fff;
}
.cases-nav-btn:hover svg {
  stroke: #fff;
}
.cases-review-card {
  padding: 32px 28px;
  background: #f5f5f7;
  border: none;
  border-radius: 24px;
  transition: all 0.4s;
  position: relative;
}
.cases-review-card::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 32px;
  width: 20px;
  height: 20px;
  background: #f5f5f7;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.cases-review-card:hover {
  background: #f0f0f3;
}
.cases-review-quote { margin-bottom: 16px; }
.cases-review-quote svg { width: 36px; height: 36px; fill: #94a3b8; }
.cases-review-text {
  font-size: 0.92rem; line-height: 1.75; color: #334155; margin-bottom: 24px;
  min-height: 80px;
}
.cases-review-author { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.cases-review-avatar {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0c6496, #0a3f76); border-radius: 50%;
  font-size: 0.75rem; font-weight: 800; color: #fff;
}
.cases-review-info strong { display: block; font-size: 0.85rem; font-weight: 700; color: #0f172a; }
.cases-review-info span { font-size: 0.75rem; color: #94a3b8; }
.cases-review-card.scroll-reveal { transition-delay: var(--delay, 0s); }

@media (max-width: 1024px) {
  .cases-reviews { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cases-section { padding: 36px 0 40px; }
  .cases-hd { margin-bottom: 28px; }
  .cases-hd .section-badge { margin: 0 auto; }
  .cases-hd-title { font-size: clamp(1.19rem, 5.2vw, 1.53rem) !important; line-height: 1.55; }
  .cases-hd-title br:not(.mobile-br) { display: none; }
  .cases-logos-slide { margin-bottom: 28px; }
  .cases-logos-row { gap: 8px; margin-bottom: 8px; }
  .cases-logo-box { width: 80px; height: 40px; font-size: 0.62rem; border-radius: 8px; }
  .cases-logos-row-left,
  .cases-logos-row-right {
    animation: slideLeft 80s linear infinite !important;
  }
  .cases-logos-track {
    animation: logosScroll 40s linear infinite !important;
  }
  .cases-reviews-wrap { margin-bottom: 24px; overflow: hidden; }
  .cases-reviews { grid-template-columns: 1fr; gap: 16px; }
  .cases-reviews-slider { border-radius: 16px; overflow: hidden; width: 100%; }
  .cases-reviews-track { width: 100%; }
  .cases-reviews-track .cases-review-card {
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: keep-all;
  }
  .cases-review-card { padding: 24px 20px; border-radius: 16px; }
  .cases-review-card::after { display: none; }
  .cases-review-quote { margin-bottom: 10px; }
  .cases-review-quote svg { width: 24px; height: 24px; }
  .cases-review-text {
    font-size: 0.8rem;
    line-height: 1.65;
    min-height: auto;
    margin-bottom: 14px;
    overflow-wrap: break-word;
    word-break: keep-all;
  }
  .cases-review-text br { display: none; }
  .cases-review-text strong { font-size: 0.88rem !important; }
  .cases-review-text b { font-size: 0.8rem; }
  .cases-review-author { gap: 10px; margin-top: 4px; }
  .cases-review-avatar { width: 32px; height: 32px; }
  .cases-review-avatar svg { width: 16px; height: 16px; }
  .cases-review-info strong { font-size: 0.82rem; }
  .cases-review-info span { font-size: 0.72rem; }
  .cases-reviews-nav { gap: 10px; margin-top: 16px; }
  .cases-nav-btn { width: 36px; height: 36px; }
}
@media (max-width: 430px) {
  .cases-hd-title br:not(.mobile-br) { display: inline; }
}

/* ===== Franchise Section ===== */
.fran-section { padding: 100px 0; background: linear-gradient(180deg, #f0f7ff 0%, #fff 50%, #f8fafc 100%); }
.fran-header { text-align: center; margin-bottom: 56px; }
.fran-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800; line-height: 1.45; color: #0f172a;
}
/* 상단 2개 카드 */
.fran-top-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 64px; }
.fran-top-card {
  padding: 36px 32px; background: #fff; border: 1px solid #e2e8f0;
  border-radius: 20px; transition: all 0.4s; position: relative; overflow: hidden;
}
.fran-top-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #0284c7); transform: scaleX(0); transition: transform 0.4s;
}
.fran-top-card:hover { border-color: rgba(14,165,233,0.3); box-shadow: 0 12px 40px rgba(14,165,233,0.1); transform: translateY(-4px); }
.fran-top-card:hover::before { transform: scaleX(1); }
.fran-top-icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0ea5e9, #0284c7); border-radius: 14px; margin-bottom: 18px;
}
.fran-top-icon svg { width: 28px; height: 28px; stroke: #fff; }
.fran-top-badge {
  display: inline-block; padding: 3px 12px; background: rgba(14,165,233,0.08);
  color: #0284c7; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  border-radius: 20px; margin-bottom: 12px;
}
.fran-top-card h3 { font-size: 1.15rem; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.fran-top-card p { font-size: 0.88rem; line-height: 1.65; color: #64748b; margin-bottom: 18px; }
.fran-top-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: #0ea5e9; text-decoration: none; transition: gap 0.2s;
}
.fran-top-link:hover { gap: 10px; }

/* 주요 기능 그리드 */
.fran-features-header { text-align: center; margin-bottom: 32px; }
.fran-features-header h3 { font-size: 1.3rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.fran-features-header p { font-size: 0.9rem; color: #64748b; max-width: 600px; margin: 0 auto; }
.fran-features-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 64px;
}
.fran-feat-card {
  padding: 24px 18px; background: #fff; border: 1px solid #e2e8f0;
  border-radius: 14px; text-align: center; transition: all 0.35s;
}
.fran-feat-card:hover { border-color: rgba(14,165,233,0.3); box-shadow: 0 8px 28px rgba(14,165,233,0.08); transform: translateY(-4px); }
.fran-feat-icon {
  width: 44px; height: 44px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,165,233,0.08); border-radius: 12px;
}
.fran-feat-icon svg { width: 22px; height: 22px; stroke: #0ea5e9; }
.fran-feat-card h4 { font-size: 0.88rem; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.fran-feat-card p { font-size: 0.78rem; color: #64748b; line-height: 1.5; }
.fran-feat-card.scroll-reveal { transition-delay: var(--delay, 0s); }

/* 시스템 연동 */
.fran-integration { margin-bottom: 64px; }
.fran-int-title { font-size: 1.2rem; font-weight: 700; color: #0f172a; text-align: center; margin-bottom: 8px; }
.fran-int-sub { font-size: 0.9rem; color: #64748b; text-align: center; margin-bottom: 32px; }
.fran-int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fran-int-card {
  padding: 28px 22px; background: #fff; border: 1px solid #e2e8f0;
  border-radius: 16px; text-align: center; transition: all 0.35s;
}
.fran-int-card:hover { border-color: rgba(14,165,233,0.25); box-shadow: 0 8px 24px rgba(14,165,233,0.08); transform: translateY(-3px); }
.fran-int-icon {
  width: 48px; height: 48px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0ea5e9, #0284c7); border-radius: 12px;
}
.fran-int-icon svg { width: 24px; height: 24px; stroke: #fff; }
.fran-int-card h4 { font-size: 0.95rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.fran-int-card p { font-size: 0.82rem; color: #64748b; line-height: 1.6; }

/* 운영 시스템 설명 */
.fran-system { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fran-sys-card {
  padding: 28px 22px; background: #fff; border: 1px solid #e2e8f0;
  border-radius: 16px; transition: all 0.35s;
}
.fran-sys-card:hover { border-color: rgba(14,165,233,0.25); box-shadow: 0 6px 20px rgba(14,165,233,0.06); }
.fran-sys-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; background: rgba(14,165,233,0.08);
  border-radius: 8px; font-size: 0.8rem; font-weight: 800; color: #0ea5e9; margin-bottom: 14px;
}
.fran-sys-card h4 { font-size: 0.95rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.fran-sys-card p { font-size: 0.82rem; color: #64748b; line-height: 1.6; }
.fran-sys-card.scroll-reveal { transition-delay: var(--delay, 0s); }

@media (max-width: 1024px) {
  .fran-features-grid { grid-template-columns: repeat(3, 1fr); }
  .fran-int-grid, .fran-system { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .fran-section { padding: 60px 0 70px; }
  .fran-top-cards { grid-template-columns: 1fr; }
  .fran-features-grid { grid-template-columns: 1fr 1fr; }
  .fran-int-grid, .fran-system { grid-template-columns: 1fr; }
}

/* ===== Sales Section ===== */
.sales-section {
  padding: 100px 0 50px;
  background: #fff;
}
.sales-sec-header {
  text-align: center;
  margin-bottom: 56px;
}
.sales-sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.4;
  color: #0f172a;
}
/* 4개 카드 가로 정렬 */
.sales-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.sales-menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 28px;
  min-height: 320px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.sales-menu-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #0284c7);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.sales-menu-card:hover {
  background: #fff;
  border-color: rgba(14,165,233,0.3);
  box-shadow: 0 12px 40px rgba(14,165,233,0.12);
  transform: translateY(-6px) scale(1.02);
}
.sales-menu-card:hover::after {
  transform: scaleX(1);
}
.sales-menu-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border-radius: 16px;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.sales-menu-card:hover .sales-menu-icon {
  transform: scale(1.1);
}
.sales-menu-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
}
.sales-menu-badge {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(14,165,233,0.08);
  color: #0284c7;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.sales-menu-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.sales-menu-card p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.5;
}
.sales-menu-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0ea5e9;
  transition: color 0.2s;
}
.sales-menu-card:hover .sales-menu-link {
  color: #0369a1;
}
.sales-menu-card.scroll-reveal {
  transition-delay: var(--delay, 0s);
}

/* 하단 제품 이미지 */
.sales-devices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sales-device-item {
  text-align: center;
  border-radius: 16px;
  overflow: hidden;
  background: #f1f5f9;
  transition: all 0.4s ease;
}
.sales-device-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.sales-device-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.sales-device-item span {
  display: block;
  padding: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}
/* ===== 이미지 기반 디바이스 쇼케이스 ===== */
.dv-img-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), filter 0.5s ease;
  position: relative;
  cursor: pointer;
  margin-bottom: -200px;
}
.dv-img-item img {
  display: block;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.dv-img-item:hover {
  transform: translateY(-12px);
  z-index: 10;
}
/* 반사 이미지 (유리 거울 바닥 - 완벽 밀착) */
.dv-reflection {
  pointer-events: none;
  overflow: visible;
  height: 140px;
  margin-top: -45px;
  position: relative;
}
.dv-reflection img {
  width: 100%;
  display: block;
  transform: scaleY(-1);
  opacity: 0.6;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.1) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.1) 60%, transparent 100%);
  filter: blur(0.5px);
}
/* 기기 img와 반사 사이 간격 제거 */
.dv-img-item > img {
  margin-bottom: 0;
}
/* Ambient Occlusion - 비활성 */
.dv-img-item::after {
  display: none;
}

/* 글래스모피즘 지시선 + 말풍선 */
.dv-glass-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -15px;
  opacity: 1;
  pointer-events: none;
}
/* 지시선 */
.dv-tag-line {
  width: 1.5px;
  height: 28px;
  background: linear-gradient(180deg, rgba(15,23,42,0.15), rgba(15,23,42,0.5));
}
/* 말풍선 (Navy + White Glassmorphism) */
.dv-tag-bubble {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: #223662;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: none;
  border-radius: 24px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  box-shadow:
    0 4px 16px rgba(15,23,42,0.12),
    0 1px 3px rgba(15,23,42,0.06),
    inset 0 1px 0 rgba(255,255,255,0.1);
  letter-spacing: 0.3px;
}
.dv-tag-bubble svg {
  position: relative;
  top: 1px;
}

/* 개별 사이즈 & 배치 (사진처럼 가깝게) */
.dv-img-pos {
  z-index: 2;
  margin-right: -30px;
  align-self: flex-end;
  margin-bottom: -25px;
}
.dv-img-pos img { width: 250px; }
.dv-img-pos .dv-glass-tag { margin-bottom: -31px; }
.dv-img-pos .dv-tag-line { height: 50px; }

.dv-img-kiosk {
  z-index: 6;
  align-self: flex-end;
  margin-bottom: 0px;
  margin-right: -20px;
  margin-left: -20px;
}
.dv-img-kiosk img { width: 205px; }

.dv-img-laptop {
  z-index: 5;
  margin-left: -155px;
  align-self: flex-end;
  margin-bottom: -55px;
}
.dv-img-laptop img { width: 350px; }
.dv-img-laptop .dv-glass-tag { transform: translate(65px, 31px); }

.dv-img-mobile {
  z-index: 2;
  margin-left: -60px;
  align-self: flex-end;
  margin-bottom: 30px;
}
.dv-img-mobile img { width: 150px; }
.dv-img-mobile .dv-tag-line { height: 55px; }

/* ===== 기계 4대 디바이스 쇼케이스 (아이소메트릭) ===== */
.devices-showcase {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  padding: 0 20px 0;
  margin-top: 250px;
  background:
    linear-gradient(180deg, #eef0f4 0%, #e6e8ec 35%, #dde0e5 65%, #e2e5ea 100%);
  border-radius: 20px;
  position: relative;
  overflow: visible;
  clip-path: inset(-999px -999px 0px -999px);
  height: 270px;
  perspective: 1200px;
}
.devices-showcase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 20px;
  background:
    /* 스튜디오 상단 조명 */
    radial-gradient(ellipse at 50% -10%, rgba(255,255,255,0.6) 0%, transparent 50%),
    /* 바닥 유리 반사광 */
    radial-gradient(ellipse at 50% 110%, rgba(255,255,255,0.95) 0%, transparent 45%),
    /* 은은한 블루 악센트 (좌측) */
    radial-gradient(ellipse at 15% 80%, rgba(14,165,233,0.06) 0%, transparent 40%),
    /* 은은한 오렌지 악센트 (우측) */
    radial-gradient(ellipse at 85% 80%, rgba(251,146,60,0.05) 0%, transparent 40%),
    /* 좌우 하이라이트 */
    radial-gradient(ellipse at 25% 95%, rgba(255,255,255,0.5) 0%, transparent 25%),
    radial-gradient(ellipse at 75% 95%, rgba(255,255,255,0.5) 0%, transparent 25%);
  pointer-events: none;
}
/* 유리 바닥 반사 + Ambient Occlusion */
.devices-showcase::after {
  display: none;
}

/* 공통 아이템 */
.dv-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), filter 0.5s ease;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.dv-item:hover {
  transform: scale(1.12) translateY(-14px);
  z-index: 10;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.18));
}

/* 라벨 */
.dv-label {
  display: block;
  margin-top: 14px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #94a3b8;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.dv-item:hover .dv-label {
  color: #0ea5e9;
}

/* 공통 스크린 */
.dv-screen {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.dv-screen-header {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}
.dv-screen-header.dv-header-blue {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border-bottom: none;
}
.dv-header-title {
  font-size: 0.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.dv-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #cbd5e1;
}
.dv-screen-body {
  padding: 6px;
}

/* ===== 1. POS Terminal ===== */
.dv-pos {
  width: 250px;
  z-index: 2;
  margin-right: -20px;
  margin-bottom: 10px;
}
.dv-pos-body {
  position: relative;
}
.dv-pos-display {
  transform: perspective(600px) rotateX(8deg) rotateY(-3deg);
  transform-origin: bottom center;
}
.dv-pos .dv-screen {
  width: 250px;
  height: 170px;
  border-radius: 8px;
  border: 3px solid #1e293b;
}
.dv-pos-ui {
  display: flex;
  gap: 4px;
  height: 100%;
}
.dv-pos-left {
  flex: 1;
}
.dv-pos-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
}
.dv-pos-menu-item {
  height: 22px;
  background: #f1f5f9;
  border-radius: 3px;
  border: 1px solid #e2e8f0;
}
.dv-pos-menu-item.active {
  background: #dbeafe;
  border-color: #0ea5e9;
}
.dv-pos-right {
  width: 65px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dv-pos-receipt {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dv-pos-receipt-row {
  height: 5px;
  background: #e2e8f0;
  border-radius: 1px;
}
.dv-pos-receipt-row.short {
  width: 60%;
}
.dv-pos-receipt-divider {
  height: 1px;
  background: #cbd5e1;
  margin: 2px 0;
}
.dv-pos-receipt-total {
  height: 8px;
  background: #0f172a;
  border-radius: 2px;
}
.dv-pos-pay-btn {
  height: 20px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border-radius: 4px;
}

/* POS 본체 (하단) */
.dv-pos-base-unit {
  width: 100%;
  height: 36px;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  margin-top: -2px;
}
.dv-pos-card-slot {
  width: 30px;
  height: 6px;
  background: #334155;
  border-radius: 2px;
  border: 1px solid #475569;
}
.dv-pos-printer-slot {
  width: 40px;
  height: 3px;
  background: #475569;
  border-radius: 1px;
}

/* ===== 2. Kiosk ===== */
.dv-kiosk {
  width: 170px;
  margin-bottom: 0;
  z-index: 4;
  margin-right: -15px;
}
.dv-kiosk-body {
  background: linear-gradient(180deg, #1e293b, #0f172a);
  padding: 10px 10px 12px;
  border-radius: 12px 12px 4px 4px;
}
.dv-kiosk .dv-screen {
  width: 100%;
  height: 280px;
  border-radius: 4px;
}
.dv-kiosk-ui {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
}
.dv-kiosk-banner {
  height: 44px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border-radius: 4px;
}
.dv-kiosk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  flex: 1;
}
.dv-kiosk-card {
  background: #f1f5f9;
  border-radius: 4px;
  min-height: 40px;
}
.dv-kiosk-bottom {
  display: flex;
  justify-content: center;
}
.dv-kiosk-btn {
  width: 60%;
  height: 18px;
  background: #0ea5e9;
  border-radius: 8px;
}

/* 키오스크 스탠드 */
.dv-kiosk-stand-bar {
  width: 12px;
  height: 40px;
  background: linear-gradient(180deg, #334155, #475569);
}
.dv-kiosk-stand-base {
  width: 80px;
  height: 10px;
  background: #334155;
  border-radius: 0 0 6px 6px;
}

/* ===== 3. Laptop ===== */
.dv-laptop {
  width: clamp(200px, 25vw, 280px);
  max-width: 100%;
  z-index: 3;
  margin-left: -15px;
  margin-bottom: 5px;
}
.dv-laptop-lid {
  transform: perspective(800px) rotateX(3deg) rotateY(3deg);
  transform-origin: bottom center;
}
.dv-laptop-bezel {
  background: linear-gradient(180deg, #1e293b, #334155);
  padding: 8px 8px 6px;
  border-radius: 12px 12px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dv-laptop-cam {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #475569;
  margin-bottom: 4px;
  box-shadow: 0 0 0 1px #1e293b;
}
.dv-laptop .dv-screen {
  width: 100%;
  height: 175px;
  border-radius: 3px;
}
.dv-screen-header .dv-tab-bar {
  display: flex;
  gap: 3px;
  margin-left: auto;
}
.dv-tab {
  display: block;
  width: 20px;
  height: 6px;
  background: #e2e8f0;
  border-radius: 2px 2px 0 0;
}
.dv-tab.active {
  background: #fff;
}
.dv-dash-ui {
  display: flex;
  gap: 4px;
  height: 100%;
}
.dv-dash-sidebar {
  width: 32px;
  background: #0f172a;
  border-radius: 3px;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dv-dash-logo {
  width: 14px; height: 14px;
  background: #0ea5e9;
  border-radius: 4px;
  margin: 0 auto 4px;
}
.dv-dash-menu {
  height: 5px;
  background: #334155;
  border-radius: 2px;
}
.dv-dash-menu.active {
  background: #0ea5e9;
}
.dv-dash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dv-dash-topbar {
  height: 8px;
  background: #f8fafc;
  border-radius: 2px;
  border: 1px solid #e2e8f0;
}
.dv-dash-cards {
  display: flex;
  gap: 3px;
}
.dv-dash-stat {
  flex: 1;
  height: 30px;
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  border-radius: 3px;
}
.dv-dash-chart {
  height: 36px;
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 3px;
}
.dv-dash-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.dv-dash-table-row {
  height: 6px;
  background: #f8fafc;
  border-radius: 1px;
  border-bottom: 1px solid #f1f5f9;
}

/* 노트북 하판 (키보드) */
.dv-laptop-base {
  width: 112%;
  margin-left: -6%;
  height: 14px;
  background: linear-gradient(180deg, #94a3b8 0%, #64748b 30%, #475569 100%);
  border-radius: 0 0 6px 6px / 0 0 6px 6px;
  position: relative;
  overflow: hidden;
}
.dv-laptop-keyboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 2px 20% 0;
}
.dv-key-row {
  width: 100%;
  height: 1.5px;
  background: rgba(255,255,255,0.15);
  border-radius: 0.5px;
}
.dv-key-row.short {
  width: 70%;
}
.dv-laptop-trackpad {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
  margin-top: 0.5px;
}

/* ===== 4. Mobile ===== */
.dv-mobile {
  width: 110px;
  z-index: 2;
  margin-left: -10px;
  margin-bottom: 10px;
}
.dv-mobile-frame {
  background: linear-gradient(180deg, #1e293b, #0f172a);
  padding: 10px 6px 14px;
  border-radius: 18px;
  position: relative;
}
.dv-mobile-notch {
  width: 36px;
  height: 5px;
  background: #0f172a;
  border-radius: 4px;
  margin: -3px auto 6px;
}
.dv-mobile .dv-screen {
  width: 100%;
  height: 190px;
  border-radius: 6px;
}
.dv-mobile-ui {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
}
.dv-mob-card {
  background: #f8fafc;
  border-radius: 4px;
  padding: 4px;
}
.dv-mob-chart {
  height: 38px;
  background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
  border-radius: 3px;
  opacity: 0.3;
}
.dv-mob-row {
  height: 8px;
  background: #e2e8f0;
  border-radius: 2px;
  margin-bottom: 3px;
}
.dv-mob-row:last-child {
  margin-bottom: 0;
  width: 70%;
}
.dv-mob-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
}
.dv-mob-nav span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e2e8f0;
}
.dv-mob-nav span.active {
  background: #0ea5e9;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .sales-menu-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-showcase { gap: 0; padding: 40px 16px 24px; min-height: 300px; }
  .dv-img-pos img { width: 160px; }
  .dv-img-kiosk img { width: 120px; }
  .dv-img-laptop img { width: 175px; }
  .dv-img-mobile img { width: 80px; }
  .dv-img-pos { margin-right: -20px; }
  .dv-img-kiosk { margin-right: -14px; margin-left: -14px; }
  .dv-img-laptop { margin-left: -18px; }
  .dv-img-mobile { margin-left: -10px; }
  .dv-pos { width: 180px; margin-right: -12px; }
  .dv-pos .dv-screen { width: 180px; height: 120px; }
  .dv-kiosk { width: 130px; }
  .dv-kiosk .dv-screen { height: 200px; }
  .dv-laptop { width: 200px; margin-left: -10px; }
  .dv-laptop .dv-screen { height: 125px; }
  .dv-mobile { width: 80px; margin-left: -8px; }
  .dv-mobile .dv-screen { height: 140px; }
}
@media (max-width: 768px) {
  .sales-section { padding: 60px 0 70px; }
  .sales-sec-title { font-size: 22px !important; line-height: 1.6; margin-top: 12px; }
  .sales-sec-header .section-badge { margin: 0 auto; }
  .sales-menu-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sales-menu-card { padding: 20px 16px 16px; }
  .sales-menu-card h4 { font-size: 0.85rem; }
  .sales-menu-card p { font-size: 0.75rem; margin-bottom: 10px; }
  .sales-menu-icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .sales-menu-icon svg { width: 22px; height: 22px; }
  .sales-menu-badge { font-size: 0.6rem; padding: 2px 8px; }
  .sales-menu-link { font-size: 0.75rem; }
  .sales-devices { grid-template-columns: 1fr; gap: 16px; }
  .devices-showcase {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 30px 20px 20px;
    min-height: auto;
    height: auto;
    margin-top: 60px;
    overflow: visible;
    clip-path: none;
  }
  .dv-img-item {
    margin-bottom: 0 !important;
  }
  .dv-img-pos, .dv-img-kiosk, .dv-img-laptop, .dv-img-mobile {
    margin: 0 !important;
    align-self: center;
  }
  .dv-img-pos img { width: 200px; }
  .dv-img-kiosk img { width: 160px; }
  .dv-img-laptop img { width: 260px; }
  .dv-img-mobile img { width: 170px; }
  .dv-img-item {
    margin-bottom: 0 !important;
    flex-direction: column;
  }
  .dv-glass-tag {
    display: flex;
    order: 2;
    flex-direction: column-reverse;
    margin-bottom: 0;
    margin-top: -10px;
    align-self: center;
  }
  .dv-img-item > img {
    order: 1;
  }
  .dv-tag-bubble { font-size: 0.68rem; padding: 5px 12px; }
  .dv-tag-line { display: none; }
  .dv-img-pos .dv-glass-tag { margin-bottom: 0; }
  .dv-img-pos .dv-tag-line { height: 20px; }
  .dv-img-kiosk {
    align-self: center !important;
    margin: 0 !important;
  }
  .dv-img-kiosk > img {
    margin-left: 20px;
  }
  .dv-img-kiosk .dv-glass-tag { margin-left: 0; }
  .dv-img-laptop {
    align-self: center !important;
    margin: 0 !important;
  }
  .dv-img-laptop > img {
    margin-left: -70px;
  }
  .dv-img-laptop .dv-glass-tag { display: flex; transform: none; align-items: center; }
  .dv-reflection { display: none; }
  .dv-pos { width: 120px; margin-right: -8px; }
  .dv-pos .dv-screen { width: 120px; height: 80px; }
  .dv-pos-base-unit { height: 22px; }
  .dv-kiosk { width: 90px; margin-right: -6px; }
  .dv-kiosk .dv-screen { height: 140px; }
  .dv-kiosk-stand-bar { height: 24px; }
  .dv-laptop { width: 135px; margin-left: -6px; }
  .dv-laptop .dv-screen { height: 85px; }
  .dv-laptop-base { height: 8px; }
  .dv-mobile { width: 65px; margin-left: -6px; }
  .dv-mobile .dv-screen { height: 110px; }
  .dv-mobile-frame { padding: 6px 4px 8px; border-radius: 12px; }
  .dv-label { font-size: 0.45rem; letter-spacing: 1px; margin-top: 8px; }
  .dv-item:hover { transform: scale(1.08) translateY(-8px); }
}

/* ===== Inventory Section ===== */
.inv-section {
  padding: 100px 0 100px;
  background: #f8f9fc;
}
.inv-header {
  text-align: center;
  margin-bottom: 56px;
}
.inv-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.4;
  color: #0f172a;
}
/* 2x2 그리드 */
.inv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.inv-card {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.inv-card::before {
  display: none;
}
.inv-card:hover {
  border-color: #e2e8f0;
  box-shadow: none;
  transform: translateY(-4px);
}
.inv-card:hover::before {
  height: 100%;
}
.inv-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border-radius: 14px;
  margin-bottom: 20px;
}
.inv-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}
.inv-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}
.inv-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 10px;
}
.inv-card-sub {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #475569;
}
.inv-card-bg-icon {
  position: absolute;
  right: 16px;
  bottom: -10px;
  width: 72px;
  height: 120px;
  object-fit: contain;
}
.inv-card {
  min-height: 280px;
}
/* 히어로 카드 스타일 */
.inv-card-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fafafa;
  border-radius: 24px;
  padding: 40px 32px 30px;
}
.inv-card-badge {
  display: inline-block;
  background: #e8ecf2;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.inv-card-hero-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.5;
  margin-bottom: 14px;
}
.inv-card-hero-sub {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 30px;
}
.inv-card-hero-icon {
  width: 100px;
  height: 100px;
}
.inv-card-hero-icon svg {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.inv-card-highlight {
  padding-top: 0;
}
.inv-card-highlight .inv-card-title {
  background: linear-gradient(135deg, #0c6496 0%, #0a3f76 100%);
  color: #fff;
  margin: 0 -32px;
  padding: 24px 32px 8px;
  border-radius: 20px 20px 0 0;
}
.inv-card-highlight .inv-card-desc {
  background: linear-gradient(135deg, #0c6496 0%, #0a3f76 100%);
  color: rgba(255,255,255,0.85);
  margin: 0 -32px;
  padding: 0 32px 24px;
}
.inv-card-highlight .inv-card-sub {
  margin-top: 16px;
  padding-bottom: 100px;
}
/* 스크롤 등장 딜레이 */
.inv-card.scroll-reveal {
  transition-delay: var(--delay, 0s);
}
@media (max-width: 768px) {
  .inv-section { padding: 60px 0 70px; }
  .inv-header { margin-bottom: 36px; }
  .inv-header .section-badge { margin: 0 auto; }
  .inv-title { font-size: clamp(1.31rem, 5.6vw, 1.65rem) !important; }
  .inv-grid { grid-template-columns: 1fr; gap: 16px; }
  .inv-card { padding: 28px 20px; min-height: auto; }
  .inv-card-hero { padding: 28px 20px 24px; }
  .inv-card-badge { font-size: 0.72rem; padding: 5px 14px; margin-bottom: 16px; }
  .inv-card-hero-title { font-size: 1.09rem; line-height: 1.45; margin-bottom: 10px; }
  .inv-card-hero-title br:not(.mobile-br) { display: none; }
  .inv-card-hero-sub { font-size: 0.84rem; line-height: 1.6; margin-bottom: 20px; }
  .inv-card-hero-sub br { display: none; }
  .inv-card-hero-icon { width: 64px; height: 64px; }
}
@media (max-width: 430px) {
  .inv-card-hero-title br:not(.mobile-br):not(.desktop-br) { display: inline; }
}

/* ===== Hero Slider (expos style) ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0c1a2e;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.8s ease-in-out, visibility 1.8s;
  z-index: 0;
}
.hero-slide .hero-slide-title,
.hero-slide .hero-slide-desc,
.hero-slide .hero-slide-buttons {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
/* 슬라이드 전환 시 텍스트 애니메이션 재실행 */
.hero-slide.active .hero-slide-title,
.hero-slide.active .hero-slide-desc,
.hero-slide.active .hero-slide-buttons {
  opacity: 1;
  animation: heroFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-slide.active .hero-slide-title { animation-delay: 0.4s; }
.hero-slide.active .hero-slide-desc { animation-delay: 0.65s; }
.hero-slide.active .hero-slide-buttons { animation-delay: 0.85s; }

/* 오버레이: 어둡고 세련된 그라데이션 */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.5) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 60%);
  z-index: 1;
}
/* 슬라이드 2 (태블릿) 전용: 우측 흰색 키패드 영역을 어둡게 톤다운 */
.hero-slide[style*="%ED%83%9C%EB%B8%94%EB%A6%BF"] .hero-slide-overlay,
.hero-slide[style*="태블릿"] .hero-slide-overlay {
  background:
    radial-gradient(ellipse 55% 60% at 68% 50%, rgba(10,28,56,0.55) 0%, rgba(10,28,56,0.3) 45%, transparent 75%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 35%, rgba(0,0,0,0.65) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.4) 100%);
}

/* 콘텐츠 영역 */
.hero-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 60px 120px;
  color: #fff;
}

/* 메인 타이틀 */
.hero-slide-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-slide-highlight {
  color: #00BAF1;
  -webkit-text-fill-color: #00BAF1;
  text-shadow: none;
}

/* 서브 문구 */
.hero-slide-desc {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 640px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.hero-slide-desc strong {
  color: #fff;
  font-weight: 600;
}

/* CTA 버튼 */
.hero-slide-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-slide-buttons .btn-primary {
  background: linear-gradient(135deg, rgba(12, 100, 150, 0.95) 0%, rgba(10, 63, 118, 1) 100%);
  border-color: rgba(10, 63, 118, 1);
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(12, 100, 150, 0.4);
  transition: all 0.3s ease;
}
.hero-slide-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(12, 100, 150, 0.5);
}
.hero-slide-buttons .btn-outline-light {
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  background: transparent;
  transition: all 0.3s ease;
}
.hero-slide-buttons .btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* 텍스트 등장 애니메이션 */
@keyframes heroFadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 슬라이드 컨트롤 (하단 중앙) */
.hero-slider-controls {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
.hero-slider-indicators {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-indicator {
  border: none;
  background: none;
  padding: 4px 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.indicator-num {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.hero-indicator.active .indicator-num {
  color: #fff;
  font-size: 20px;
}
.indicator-divider {
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  font-weight: 300;
}
/* 재생/일시정지 */
.hero-slider-playpause { display: flex; align-items: center; }
.hero-playpause {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-playpause:hover {
  border-color: #fff;
  color: #fff;
}

/* 좌우 화살표 */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  padding: 0;
}
.hero-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.hero-arrow-prev { left: 32px; }
.hero-arrow-next { right: 32px; }

/* 스크롤 다운 안내 */
.hero-scroll-down {
  position: absolute;
  bottom: 48px;
  left: 60px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-down span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* 반응형 */
@media (max-width: 1024px) {
  .hero-slide-content { padding: 120px 40px 100px; }
  .hero-arrow-prev { left: 16px; }
  .hero-arrow-next { right: 16px; }
}
@media (max-width: 768px) {
  .hero-slider { min-height: 500px; height: 85vh; }
  .hero-slide-content {
    padding: 100px 24px 80px;
    align-items: center;
    text-align: center;
  }
  .hero-slide-title {
    font-size: clamp(1.25rem, 5.33vw, 1.65rem) !important;
    margin-bottom: 20px;
    word-break: keep-all;
  }
  .hero-slide-title br:not(.mobile-br) { display: none; }
  .hero-slide-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .hero-slide-desc br { display: none; }
  .hero-slide-buttons {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-slide-buttons .btn-primary,
  .hero-slide-buttons .btn-outline-light {
    padding: 14px 24px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-slider-arrow { display: none; }
  .hero-scroll-down { display: none; }
  .hero-slider-controls { bottom: 24px; }
}
@media (max-width: 622px) {
  .hero-slide-title br:not(.mobile-br) { display: inline; }
}
.br-430 { display: none; }
@media (max-width: 430px) {
  .br-430 { display: inline; }
}
.br-390 { display: none; }
@media (max-width: 390px) {
  .br-390 { display: inline; }
}
.br-430-only { display: none; }
@media (min-width: 391px) and (max-width: 430px) {
  .br-430-only { display: inline; }
}
.br-pc-and-390 { display: none; }
@media (min-width: 769px) { .br-pc-and-390 { display: inline; } }
@media (max-width: 390px) { .br-pc-and-390 { display: inline; } }
@media (max-width: 480px) {
  .hero-slider { min-height: 440px; height: 80vh; }
  .hero-slide-content {
    padding: 80px 18px 70px;
  }
  .hero-slide-title {
    font-size: clamp(1.25rem, 5vw, 1.6rem);
    margin-bottom: 16px;
    line-height: 1.45;
  }
  .hero-slide-desc {
    font-size: 0.82rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .hero-slide-buttons {
    max-width: 280px;
    gap: 10px;
  }
  .hero-slide-buttons .btn-primary,
  .hero-slide-buttons .btn-outline-light {
    padding: 12px 20px;
    font-size: 0.88rem;
  }
  .hero-slider-controls { bottom: 18px; }
  .hero-indicator { padding: 4px 6px; }
  .indicator-num { font-size: 14px; }
  .hero-indicator.active .indicator-num { font-size: 17px; }
  .hero-playpause { width: 32px; height: 32px; }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(3, 105, 161, 0.1) 0%, transparent 60%),
    linear-gradient(135deg, #0ea5e9 0%, #0284c7 25%, #0369a1 50%, #075985 75%, #0c4a6e 100%) !important;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  border-radius: 0;
  overflow: hidden;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: none; /* 무지개 효과 제거 */
}
.shape {
  display: none;
}
.shape-1 {
  width: 700px;
  height: 700px;
  background: linear-gradient(135deg, var(--primary) 0, var(--accent) 100%);
  top: -250px;
  right: -200px;
  animation-delay: 0s;
}
.shape-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(
    135deg,
    var(--secondary) 0,
    var(--accent-secondary) 100%
  );
  bottom: -150px;
  left: -150px;
  animation-delay: -8s;
}
.shape-3 {
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  max-width: 100%;
  background: linear-gradient(135deg, var(--neon-pink) 0, var(--primary) 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -16s;
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0);
  }
  25% {
    transform: translate(60px, -60px) scale(1.15) rotate(5deg);
  }
  50% {
    transform: translate(0, 60px) scale(0.9) rotate(-5deg);
  }
  75% {
    transform: translate(-60px, -30px) scale(1.1) rotate(3deg);
  }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.4;
  pointer-events: none;
}
.hero-split .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-card {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInRight 0.8s ease both;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero-card:first-child {
  animation-delay: 0.3s;
}
.hero-card:nth-child(2) {
  animation-delay: 0.5s;
}
.hero-card:hover {
  background: #ffffff;
  transform: translateY(-6px) translateX(6px);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.12),
    0 0 40px rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
}
.hero-card:hover::before {
  opacity: 1;
}
.hero-card-image {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
}
.hero-card-image svg {
  width: 36px;
  height: 36px;
  stroke: var(--white);
}
.hero-card-content {
  flex: 1;
}
.hero-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.hero-card-content p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.4;
  margin-bottom: 12px;
}
.hero-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  transition: all 0.2s ease;
}
.hero-card-link svg {
  transition: transform 0.2s ease;
}
.hero-card:hover .hero-card-link {
  color: var(--primary);
}
.hero-card:hover .hero-card-link svg {
  transform: translateX(4px);
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .hero-split .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-cards {
    flex-direction: row;
    gap: 16px;
  }
  .hero-card {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-card-image {
    width: 64px;
    height: 64px;
  }
  .hero-card-image svg {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.6;
  }
  .container {
    padding: 0 16px;
  }
  h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  h2 {
    font-size: 1.35rem;
    line-height: 1.3;
  }
  h3 {
    font-size: 1.15rem;
    line-height: 1.35;
  }
  h4 {
    font-size: 1rem;
    line-height: 1.35;
  }
  p {
    line-height: 1.65;
    font-size: 15px;
    word-break: keep-all;
  }
  .logo-img {
    height: 54px;
    padding: 6px 10px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 14px;
    min-height: 44px;
  }
  .hero-cards {
    flex-direction: column;
    gap: 12px;
  }
  .hero-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 16px;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 700;
  color: #0a0a0f;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(
    135deg,
    var(--neon-green) 0,
    var(--accent-secondary) 100%
  );
  border-radius: 50%;
  animation: pulse-glow-dot 1.5s infinite;
}
@keyframes pulse-glow-dot {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px var(--neon-green);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 16px var(--neon-green);
  }
}
.hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title .title-line {
  display: block;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}
.hero-title .title-highlight {
  display: block;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  margin-top: 12px;
  line-height: 1.2;
}
.gradient-text {
  background: linear-gradient(135deg, #7dd3fc 0%, #fde68a 50%, #7dd3fc 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 4s ease infinite;
}
@keyframes gradient-flow {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-number::after {
  content: "+";
  font-size: 32px;
  color: var(--secondary);
}
.stat-label {
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 8px;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  margin: 0 auto 32px;
  box-shadow: 0 16px 48px transparent;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}
.about-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--white);
  stroke-width: 1.8;
}
.timeline-year {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-secondary);
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.2) 0,
    transparent 100%
  );
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
@keyframes rotate-slow {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.contact {
  padding: 140px 0;
  background: #0A3F76;
  position: relative;
  overflow: hidden;
}
.contact::before {
  display: none;
}
.contact-form {
  padding: 56px 48px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}
.contact-form h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #075985 0, #0A3F76 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.form-group {
  margin-bottom: 28px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 12px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  font-family: inherit;
  border: 2px solid transparent;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: #0C6496;
  background: #ffffff;
  box-shadow: 0 0 0 6px transparent;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.8);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form .btn {
  margin-top: 16px;
  width: 100%;
  padding: 20px;
  font-size: 17px;
  font-weight: 700;
}
.footer {
  background: linear-gradient(180deg, #0f0f23 0, #050510 100%);
  color: var(--gray-400);
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.footer::after {
  display: none;
}
.nav.active {
  display: flex;
}
@media (max-width: 768px) {
  :root {
    --section-padding: 48px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    min-height: calc(100vh - 100%);
  }
  .nav-list {
    flex-direction: column;
    gap: 4px;
  }
  .nav-list a {
    display: block;
    padding: 14px 16px;
    color: var(--gray-800);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  .nav-list a::after {
    display: none;
  }
  .nav-list a:active,
  .nav-list a:hover {
    background: transparent;
    color: #0A3F76;
  }
  .header-cta {
    display: none;
  }
  .header {
    padding: 12px 0;
  }
  .header.scrolled {
    padding: 10px 0;
  }
  .logo {
    margin-left: -12px;
  }
  .logo-img {
    height: 68px;
  }
  .mobile-menu-btn {
    display: flex;
    width: 44px;
    height: 44px;
  }
  .hero-title {
    font-size: clamp(24px, 7vw, 40px);
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 24px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .stat-number {
    font-size: 28px;
  }
  .stat-label {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 13px;
  }
  .container {
    padding: 0 16px;
  }
  .header {
    padding: 10px 0;
  }
  .logo-img {
    height: 62px;
  }
  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1.05rem;
  }
  .hero {
    padding: 80px 0 48px;
  }
  .hero-title {
    font-size: clamp(22px, 6vw, 32px);
  }
  .hero-desc {
    font-size: 14px;
  }
  .hero-badge {
    padding: 8px 16px;
    font-size: 11px;
  }
  .btn {
    padding: 11px 18px;
    font-size: 13px;
  }
  .contact-form {
    padding: 20px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 18px;
    font-size: 15px;
  }
  .footer {
    padding: 60px 0 40px;
  }
}
.panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}
.panel-overlay.active {
  opacity: 1;
  visibility: visible;
}
.slide-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 580px;
  height: 100vh;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0,
    rgba(248, 250, 252, 0.98) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}
.slide-panel.active {
  transform: translateX(0);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.1);
}
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: linear-gradient(135deg, #0A3F76 0, #0C6496 50%, #0C6496 100%);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.panel-header::before {
  display: none;
}
@keyframes panelGlow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20%, 20%);
  }
}
.panel-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}
.panel-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.panel-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.panel-close svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}
.panel-content {
  flex: 1;
  overflow-y: auto;
  padding: 36px;
  overscroll-behavior: contain;
  background: linear-gradient(
    180deg,
    transparent 0,
    transparent 100%
  );
}
.panel-content::-webkit-scrollbar {
  width: 6px;
}
.panel-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}
.panel-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0A3F76, #0C6496);
  border-radius: 3px;
}
.panel-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #075985, #db2777);
}
.panel-section-header {
  margin-bottom: 36px;
}
.panel-title {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #0A3F76 0, #0C6496 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.panel-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.35;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.about-card-panel {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, var(--gray-50) 0, var(--white) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.about-card-panel:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}
.about-card-panel .about-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin: 0;
}
.about-card-panel .about-icon svg {
  width: 28px;
  height: 28px;
}
.about-info h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.about-info p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.4;
}
.company-info-box {
  padding: 24px;
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
}
.company-info-box h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
}
.company-info-box ul {
  list-style: none;
}
.company-info-box li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.company-info-box li:last-child {
  border-bottom: none;
}
.company-info-box li strong {
  color: var(--secondary);
  min-width: 80px;
  flex-shrink: 0;
}
.timeline-panel {
  position: relative;
  padding-left: 32px;
}
.timeline-panel::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}
.timeline-item-panel {
  position: relative;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInTimeline 0.5s ease forwards;
}
.timeline-item-panel:first-child {
  animation-delay: 0.1s;
}
.timeline-item-panel:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item-panel:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item-panel:nth-child(4) {
  animation-delay: 0.4s;
}
.timeline-item-panel:nth-child(5) {
  animation-delay: 0.5s;
}
@keyframes fadeInTimeline {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.timeline-marker {
  position: absolute;
  left: -32px;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--secondary);
  border: 3px solid var(--primary);
  border-radius: 50%;
  box-shadow:
    0 0 0 4px var(--white),
    0 0 20px rgba(6, 182, 212, 0.3);
}
.timeline-marker .timeline-year {
  position: absolute;
  left: 24px;
  top: -4px;
  white-space: nowrap;
  margin: 0;
}
.timeline-content-panel {
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  margin-top: 8px;
  border-left: 3px solid var(--primary);
}
.timeline-content-panel h4 {
  font-size: 16px;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.timeline-content-panel p {
  font-size: 14px;
  color: var(--gray-500);
}
.contact-form-panel {
  padding: 24px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.contact-form-panel h4 {
  font-size: 18px;
  margin-bottom: 24px;
  text-align: center;
  color: var(--gray-900);
}
.nav-list a.active {
  color: var(--primary) !important;
}
.nav-list a.active::after {
  width: 100%;
}
@media (min-width: 769px) {
  .header:not(.scrolled) .nav-list a.active {
    color: #fff !important;
  }
}
@media (max-width: 768px) {
  .slide-panel {
    max-width: 100%;
    border-radius: 24px 24px 0 0;
  }
  .panel-header {
    padding: 16px 20px;
  }
  .panel-header h2 {
    font-size: 18px;
  }
  .panel-close {
    width: 40px;
    height: 40px;
  }
  .panel-content {
    padding: 20px 16px;
  }
  .panel-title {
    font-size: 24px;
  }
  .panel-desc {
    font-size: 14px;
    line-height: 1.35;
  }
  .about-card-panel {
    flex-direction: column;
    gap: 12px;
  }
  .about-card-panel .about-icon {
    width: 44px;
    height: 44px;
  }
  .timeline-panel {
    padding-left: 24px;
  }
  .timeline-marker {
    left: -24px;
    width: 12px;
    height: 12px;
  }
  .timeline-marker .timeline-year {
    left: 18px;
    font-size: 11px;
  }
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-list li {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: var(--transition);
}
.feature-list li:hover {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    transparent 0,
    rgba(6, 182, 212, 0.1) 100%
  );
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}
.feature-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 13px;
  color: var(--gray-500);
}
.company-intro {
  margin-bottom: 32px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}
.company-intro p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.4;
  margin-bottom: 12px;
}
.company-intro p:last-child {
  margin-bottom: 0;
}
.history-section {
  margin-bottom: 32px;
}
.history-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
@media (max-width: 768px) {
  .feature-list li {
    flex-direction: column;
    gap: 12px;
  }
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .modal {
    padding: 16px;
    align-items: flex-end !important;
  }
  .modal-content {
    max-width: calc(100% - 32px);
    max-height: 85vh;
    border-radius: 20px;
    margin-bottom: 80px;
  }
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.modal-content {
  position: relative;
  width: 100%;
  max-width: 660px;
  max-height: 85vh;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0,
    rgba(250, 245, 255, 0.98) 100%
  );
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(40px) scale(0.9);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 32px 80px transparent,
    0 0 0 1px transparent;
}
.modal.active .modal-content {
  transform: translateY(0) scale(1);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: linear-gradient(135deg, #0A3F76 0, #0C6496 50%, #0C6496 100%);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.modal-header::before {
  display: none;
}
@keyframes modalGlow {
  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(-10%, 10%) rotate(180deg);
  }
}
.modal-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}
.modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}
.modal-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}
.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 36px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--gray-600);
  background: linear-gradient(
    180deg,
    transparent 0,
    transparent 100%
  );
}
.modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0A3F76, #0C6496);
  border-radius: 3px;
}
.modal-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 28px 0 14px;
  padding-left: 12px;
  border-left: 3px solid #0A3F76;
}
.modal-body h4:first-child {
  margin-top: 0;
}
.modal-body p {
  margin-bottom: 14px;
}
.modal-body ul {
  margin: 14px 0;
  padding-left: 0;
}
.modal-body ul li {
  margin-bottom: 10px;
  position: relative;
}
.modal-body .trial-list li {
  margin-bottom: 0 !important;
}
.modal-body ul li::marker {
  color: #0A3F76;
}
@media (max-width: 768px) {
  .modal {
    padding: 16px;
    align-items: flex-end;
  }
  .modal-content {
    max-height: 85vh;
    border-radius: 24px 24px 0 0;
    margin-bottom: 0;
  }
  .modal-header {
    padding: 16px 20px;
  }
  .modal-header h3 {
    font-size: 17px;
  }
  .modal-close {
    width: 36px;
    height: 36px;
  }
  .modal-body {
    padding: 20px 16px;
    font-size: 14px;
    line-height: 1.35;
  }
  .modal-body h4 {
    font-size: 15px;
    margin: 20px 0 10px;
  }
  .modal-body p {
    margin-bottom: 12px;
  }
  .modal-body ul {
    padding-left: 20px;
  }
  .modal-body ul li {
    margin-bottom: 8px;
  }
}
.floating-cta {
  position: fixed;
  bottom: 40px;
  right: 24px;
  z-index: 1000;
  animation: floatIn 0.5s ease 0.3s both;
}
.floating-cta.hidden {
  display: none;
}
.floating-cta-close {
  display: none !important;
}
.floating-cta-close:hover {
  background: #f4f4f5;
  transform: scale(1.1);
}
.floating-cta-close svg {
  stroke: #666;
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.floating-cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--gradient-cool);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(10, 63, 118, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.floating-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.floating-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px transparent;
}
.floating-cta-btn:hover::before {
  opacity: 1;
}
.floating-cta-btn:active {
  transform: translateY(-1px);
}
.cta-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.cta-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.cta-arrow {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.floating-cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .floating-cta {
    right: 12px;
    left: 12px;
    bottom: 16px;
  }
  .floating-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    gap: 10px;
  }
  .cta-badge {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
  .cta-text {
    font-size: 15px;
  }
  .cta-arrow {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .floating-cta {
    right: 12px;
    left: 12px;
    bottom: 16px;
  }
  .floating-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}
.footer-full {
  background: var(--gray-900);
  padding: 60px 0 0;
  margin-top: 0;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-hero);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}
.footer-logo .logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-company-info .company-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-300);
}
.footer-company-info .company-address {
  font-size: 13px;
  line-height: 1.4;
  color: var(--gray-500);
}
.footer-company-info .company-email {
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-company-info .company-email a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-company-info .company-email a:hover {
  color: var(--primary);
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.footer-legal-links a {
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover {
  color: var(--white);
}
.footer-legal-links .divider {
  color: var(--gray-600);
  font-size: 12px;
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-end;
  text-align: right;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact .contact-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.footer-contact .contact-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}
.footer-contact .contact-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact .contact-hours p {
  font-size: 13px;
  color: var(--gray-500);
}
.footer-bank {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-bank .bank-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.footer-bank .bank-account {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-300);
}
.footer-bank .bank-holder {
  font-size: 12px;
  color: var(--gray-500);
}
.footer-bottom-bar {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom-bar p {
  font-size: 12px;
  color: var(--gray-600);
}
@media (max-width: 768px) {
  .footer-full {
    padding: 40px 0 0;
    margin-top: 60px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-right {
    align-items: flex-start;
    text-align: left;
  }
  .footer-logo {
    margin-left: -8px;
  }
  .footer-company-info {
    gap: 4px;
  }
  .footer-legal-links {
    margin-top: -8px;
  }
  .footer-contact .contact-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: -6px;
    color: var(--gray-500);
  }
  .footer-bank .bank-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: -4px;
  }
  .footer-bank .bank-account {
    font-size: 15px;
    font-weight: 600;
  }
  .footer-bank .bank-holder {
    font-size: 13px;
    font-weight: 600;
  }
  .footer-contact .contact-number {
    font-size: 28px;
  }
}
.modal-trial {
  max-width: 480px;
}
.trial-benefits {
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  border-radius: var(--radius-md);
  padding: 12px 0;
  margin-bottom: 24px;
  text-align: left;
}
.trial-benefits h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  text-align: left;
}
.trial-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}
.trial-list li {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 14px !important;
  color: var(--gray-700) !important;
  line-height: 1.1 !important;
  padding: 1px 0 !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
}
.trial-list li svg {
  display: none;
}
.trial-list li::before {
  content: '·';
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}
.trial-form .form-group {
  margin-bottom: 16px;
}
.trial-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.trial-form label .required {
  color: var(--danger);
}
.trial-form input,
.trial-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: all 0.2s ease;
  background: #ffffff;
  color: var(--text-primary);
}
.trial-form input:focus,
.trial-form select:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px transparent;
}
.trial-form input::placeholder {
  color: var(--gray-400);
}
.form-agreement {
  margin: 20px 0;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}
/* 무료체험 폼 체크박스: 전역 display:none 규칙을 덮어써 네이티브 체크박스를 표시 */
.trial-form .checkbox-label input[type="checkbox"] {
  display: inline-block;
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.trial-form .checkbox-label .checkmark {
  display: none;
}
.agreement-text {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.4;
}
.agreement-text a {
  color: var(--primary);
  text-decoration: underline;
}
.trial-form .btn-block {
  margin-top: 8px;
}
.case-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.case-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.case-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.case-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  background: var(--gradient-primary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}
.case-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
}
.case-quote {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.4;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
  font-style: italic;
  margin-bottom: 20px;
}
.case-stats {
  display: flex;
  gap: 24px;
}
.case-stat {
  text-align: center;
}
.case-stat .stat-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.case-stat .stat-label {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
}
.cases-cta {
  text-align: center;
  padding: 32px;
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  border-radius: var(--radius-lg);
  margin-top: 24px;
}
.cases-cta p {
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 16px;
}
.support-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.support-contact-card {
  padding: 24px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.3s ease;
}
.support-contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.support-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin: 0 auto 16px;
}
.support-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}
.support-contact-card h4 {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 8px;
}
.support-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.support-email {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.support-hours {
  font-size: 12px;
  color: var(--gray-400);
}
.faq-section {
  margin-bottom: 36px;
}
.faq-title {
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(135deg, #0A3F76 0, #0C6496 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
  border-color: transparent;
  transform: translateX(4px);
}
.faq-item.active {
  border-color: transparent;
  box-shadow: 0 8px 24px transparent;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: 0 0;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}
.faq-question span {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
}
.faq-question svg {
  width: 22px;
  height: 22px;
  stroke: #0C6496;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(180deg);
}
.faq-item.closed .faq-question svg {
  transform: rotate(0deg);
  stroke: #0A3F76;
}
.faq-answer {
  display: block;
  padding: 0 24px 20px;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.closed .faq-answer {
  max-height: 0;
  padding: 0 24px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.35;
  padding-left: 12px;
  border-left: 2px solid transparent;
}
@media (max-width: 768px) {
  .support-contact-grid {
    grid-template-columns: 1fr;
  }
}
.btn-glow {
  position: relative;
}
.btn-outline-light {
  background: 0 0;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
.service-intro {
  padding: 140px 0;
  background: #ffffff !important;
  position: relative;
  overflow: hidden;
}
.service-intro::before {
  display: none;
}
.service-intro::after {
  display: none;
}
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-intro-content {
  max-width: 580px;
}
.service-intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  padding: 12px 24px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 8px 32px transparent;
}
.service-intro-title {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  color: #1a1a2e;
  background-clip: text;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.service-intro-desc {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.4;
  margin-bottom: 40px;
}
.service-intro-desc strong {
  font-weight: 800;
  background: linear-gradient(135deg, #0A3F76 0, #0C6496 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-intro-features {
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.service-intro-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.service-intro-features li:hover {
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 40px transparent;
  transform: translateX(8px);
}
.service-intro-features li svg {
  width: 24px;
  height: 24px;
  stroke: #0C6496;
  flex-shrink: 0;
  stroke-width: 2.5;
}
.service-intro-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.visual-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  min-height: 160px;
}
.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
  border-color: var(--primary);
}
.visual-card:hover::before {
  opacity: 0.04;
}
.visual-card:hover .visual-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.35);
}
.visual-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.visual-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  stroke-width: 2;
}
.visual-card span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .service-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .service-intro-content {
    max-width: 100%;
    text-align: center;
  }
  .service-intro-features {
    align-items: center;
  }
  .service-intro-visual {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .service-intro {
    padding: 60px 0;
  }
  .service-intro-visual {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .visual-card {
    flex-direction: row;
    text-align: left;
    padding: 20px 24px;
    min-height: auto;
  }
  .visual-icon {
    width: 48px;
    height: 48px;
  }
  .visual-icon svg {
    width: 22px;
    height: 22px;
  }
}
.hero.hero-split {
  min-height: auto;
  padding: 100px 0 60px;
}
@media (min-height: 800px) {
  .hero.hero-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
}
.hero-desc strong {
  color: var(--white);
  font-weight: 600;
}
.slide-panel-wide {
  width: 90%;
  max-width: 1200px;
}
.panel-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.panel-breadcrumb a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s ease;
}
.panel-breadcrumb a:hover {
  color: var(--primary);
}
.panel-breadcrumb svg {
  width: 14px;
  height: 14px;
  stroke: var(--gray-400);
}
.panel-breadcrumb span {
  color: var(--gray-900);
  font-weight: 600;
}
.panel-content-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  min-height: calc(100vh - 80px);
}
.panel-main {
  padding-right: 20px;
}
.panel-headline {
  margin-bottom: 40px;
}
.panel-headline .section-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.panel-main-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.3;
}
.panel-main-title .highlight {
  color: var(--primary);
}
.panel-sidebar {
  position: relative;
}
.sidebar-visual {
  position: sticky;
  top: 0;
  height: 100%;
  min-height: 500px;
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sidebar-bg-pattern {
  display: none;
}
.sidebar-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.sidebar-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-5px);
}
.sidebar-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
}
.sidebar-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}
.sidebar-card-text h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.sidebar-card-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 1024px) {
  .slide-panel-wide {
    width: 100%;
    max-width: 100%;
  }
  .panel-content-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .panel-main {
    padding-right: 0;
  }
  .panel-sidebar {
    display: none;
  }
}
@media (max-width: 768px) {
  .panel-breadcrumb {
    font-size: 12px;
  }
}
.panel-main-desc {
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-secondary);
  margin-top: 20px;
}
.sku-highlight {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-right: 4px;
}
.panel-key-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
}
.key-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}
.key-point svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  flex-shrink: 0;
}
.key-point em {
  font-style: normal;
  color: var(--text-muted);
  font-weight: 400;
}
.panel-sub-section {
  margin-top: 40px;
  padding: 28px;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.03) 0,
    rgba(6, 182, 212, 0.03) 100%
  );
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
}
.panel-sub-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.panel-sub-title svg {
  width: 24px;
  height: 24px;
  stroke: #0C6496;
  flex-shrink: 0;
}
.panel-sub-desc {
  font-size: 15px;
  line-height: 1.35;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.panel-sub-desc strong {
  color: var(--text-primary);
  font-weight: 600;
}
.panel-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.panel-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
}
.panel-feature-list li svg {
  width: 18px;
  height: 18px;
  stroke: #0C6496;
  flex-shrink: 0;
}
.panel-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(241, 245, 249, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 100px;
  transition: all 0.25s ease;
}
.chip:hover {
  background: transparent;
  border-color: transparent;
  color: var(--primary);
  transform: translateY(-2px);
}
.chip-primary {
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  border-color: transparent;
  color: var(--primary);
  font-weight: 600;
}
.chip-primary:hover {
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  border-color: transparent;
}
.chip-accent {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.1) 0,
    rgba(34, 211, 238, 0.1) 100%
  );
  border-color: rgba(6, 182, 212, 0.25);
  color: var(--secondary);
  font-weight: 600;
}
.chip-accent:hover {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.15) 0,
    rgba(34, 211, 238, 0.15) 100%
  );
  border-color: rgba(6, 182, 212, 0.4);
}
.sidebar-stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.sidebar-stat-main {
  text-align: center;
  padding: 32px 24px;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
}
.sidebar-stat-main .stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #0A3F76 0, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sidebar-stat-main .stat-value span {
  font-size: 28px;
  font-weight: 600;
}
.sidebar-stat-main .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.sidebar-stat-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sidebar-stat-item {
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s ease;
}
.sidebar-stat-item:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.sidebar-stat-item .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.sidebar-stat-item .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.panel-cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}
.panel-cta .btn {
  padding: 16px 32px;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .panel-sub-section {
    margin-top: 32px;
    padding: 24px;
  }
  .panel-feature-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .panel-main-desc {
    font-size: 15px;
  }
  .sku-highlight {
    font-size: 17px;
    padding: 3px 10px;
  }
  .panel-key-points {
    margin-top: 20px;
    padding: 18px;
    gap: 10px;
  }
  .key-point {
    font-size: 14px;
    gap: 10px;
  }
  .key-point svg {
    width: 18px;
    height: 18px;
  }
  .panel-sub-section {
    margin-top: 28px;
    padding: 20px;
  }
  .panel-sub-title {
    font-size: 16px;
  }
  .panel-sub-title svg {
    width: 20px;
    height: 20px;
  }
  .panel-sub-desc {
    font-size: 14px;
  }
  .panel-feature-list li {
    font-size: 13px;
    padding: 6px 0;
  }
  .panel-feature-list li svg {
    width: 16px;
    height: 16px;
  }
  .panel-chips {
    gap: 10px;
    margin-top: 24px;
  }
  .chip {
    padding: 8px 14px;
    font-size: 13px;
  }
  .sidebar-stat-main .stat-value {
    font-size: 36px;
  }
  .sidebar-stat-main .stat-value span {
    font-size: 22px;
  }
  .sidebar-stat-sub {
    grid-template-columns: 1fr;
  }
  .sidebar-stat-item .stat-value {
    font-size: 20px;
  }
  .panel-cta {
    margin-top: 32px;
    padding-top: 24px;
  }
  .panel-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
.discount-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.discount-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid transparent;
  border-radius: var(--radius-2xl);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.discount-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0A3F76, #0C6496);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.discount-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.discount-card:hover {
  border-color: transparent;
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 24px 48px transparent,
    0 0 0 1px transparent;
}
.discount-card:hover::after,
.discount-card:hover::before {
  opacity: 1;
}
.discount-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}
.discount-card:hover .discount-card-icon {
  background: var(--gradient-primary);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px transparent;
}
.discount-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  transition: all 0.4s ease;
}
.discount-card:hover .discount-card-icon svg {
  stroke: var(--white);
}
.discount-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  text-align: center;
  position: relative;
  z-index: 1;
}
.discount-card-vip {
  background: linear-gradient(
    135deg,
    rgba(251, 146, 60, 0.05) 0,
    rgba(244, 114, 182, 0.05) 100%
  );
  border-color: rgba(251, 146, 60, 0.25);
}
.discount-card-vip::before {
  background: linear-gradient(
    135deg,
    rgba(251, 146, 60, 0.05) 0,
    rgba(244, 114, 182, 0.05) 100%
  );
}
.discount-card-vip .discount-card-icon {
  background: linear-gradient(
    135deg,
    rgba(251, 146, 60, 0.15) 0,
    rgba(244, 114, 182, 0.12) 100%
  );
}
.discount-card-vip .discount-card-icon svg {
  stroke: #fb923c;
}
.discount-card-vip:hover {
  border-color: rgba(251, 146, 60, 0.5);
  box-shadow:
    var(--shadow-xl),
    0 0 40px rgba(251, 146, 60, 0.15);
}
.discount-card-vip:hover .discount-card-icon {
  background: var(--gradient-warm);
  box-shadow: 0 8px 24px rgba(251, 146, 60, 0.4);
}
.discount-card-vip:hover .discount-card-icon svg {
  stroke: var(--white);
}
.panel-seo-section {
  margin-top: 40px;
  padding: 28px;
  background: linear-gradient(
    135deg,
    rgba(241, 245, 249, 0.8) 0,
    rgba(226, 232, 240, 0.5) 100%
  );
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.1);
}
.seo-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.seo-title svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}
.seo-desc {
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-keyword {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 100px;
  transition: all 0.2s ease;
}
.seo-keyword:hover {
  color: var(--primary);
  border-color: transparent;
  background: transparent;
}
.sidebar-integration-msg {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  text-align: center;
}
.sidebar-integration-msg p {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.sidebar-integration-msg span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
}
@media (max-width: 1200px) {
  .discount-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .discount-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .discount-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 24px;
  }
  .discount-card {
    padding: 18px 12px;
    gap: 10px;
  }
  .discount-card-icon {
    width: 40px;
    height: 40px;
  }
  .discount-card-icon svg {
    width: 20px;
    height: 20px;
  }
  .discount-card-title {
    font-size: 13px;
  }
  .panel-seo-section {
    margin-top: 28px;
    padding: 20px;
  }
  .seo-title {
    font-size: 16px;
  }
  .seo-title svg {
    width: 20px;
    height: 20px;
  }
  .seo-desc {
    font-size: 14px;
  }
  .seo-keywords {
    gap: 8px;
  }
  .seo-keyword {
    padding: 5px 12px;
    font-size: 12px;
  }
  .sidebar-integration-msg {
    padding: 16px;
  }
  .sidebar-integration-msg p {
    font-size: 14px;
  }
  .sidebar-integration-msg span {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .discount-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.page-section::before {
  display: none;
}
.page-section::after {
  display: none;
}

/* 섹션 배경색 교차 적용 - 흰색/연회색 */
.service-intro,
.section-product,
.section-discount,
.section-member,
.section-inventory,
.section-sales,
.section-franchise,
.section-cases,
.section-support,
.section-location,
.section-contact {
  background: #ffffff !important;
}

/* 짝수 섹션 - 연회색 배경 */
.section-product,
.section-member,
.section-sales,
.section-cases,
.section-location {
  background: #f5f7fa !important;
}
.section-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}
.section-main {
  max-width: 700px;
}
.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.section-title .highlight {
  background: linear-gradient(135deg, #0A3F76 0, #0C6496 50%, #0C6496 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.text-highlight {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  padding: 2px 10px;
  border-radius: var(--radius-sm);
}
.key-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px transparent;
  position: relative;
  overflow: hidden;
}
.key-points::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0A3F76, #0C6496, #0C6496);
  border-radius: 3px 3px 0 0;
}
.key-points .key-point {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 12px;
  background: transparent;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.key-points .key-point:hover {
  background: transparent;
  transform: translateX(4px);
}
.key-points .key-point svg {
  width: 22px;
  height: 22px;
  stroke: #0A3F76;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px transparent);
}
.feature-box {
  padding: 32px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-xl);
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0C6496, #0C6496);
  border-radius: 4px 0 0 4px;
}
.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.12);
}
.feature-box-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.feature-box-title svg {
  width: 26px;
  height: 26px;
  stroke: #0C6496;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}
.feature-box-desc {
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.feature-box-desc strong {
  color: var(--text-primary);
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.feature-list li svg {
  width: 18px;
  height: 18px;
  stroke: #0C6496;
  flex-shrink: 0;
}
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.section-visual {
  position: sticky;
  top: 100px;
}
.visual-box {
  background: #1e3a5f;
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visual-box-pattern {
  display: none;
}
.visual-stats {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.visual-stat-main {
  text-align: center;
  padding: 28px 20px;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}
.visual-stat-main .stat-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.visual-stat-main .stat-value em {
  font-style: normal;
  font-size: 24px;
  font-weight: 600;
}
.visual-stat-main .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.visual-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.visual-stat-item {
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  text-align: center;
}
.visual-stat-item .stat-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.visual-stat-item .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.visual-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.visual-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.visual-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-5px);
}
.visual-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
}
.visual-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}
.visual-card-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.visual-card-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.visual-message {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  text-align: center;
}
.visual-message p {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.visual-message span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}
.seo-box {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(
    135deg,
    rgba(241, 245, 249, 0.8) 0,
    rgba(226, 232, 240, 0.5) 100%
  );
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.1);
}
.seo-box-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.seo-box-title svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}
.seo-box-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.section-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.section-title-center {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-title-center .highlight {
  color: var(--primary);
}
.section-desc-center {
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-secondary);
}
@media (max-width: 1024px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section-main {
    max-width: none;
  }
  .section-visual {
    position: relative;
    top: 0;
  }
  .visual-box {
    min-height: auto;
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .page-section {
    padding: 48px 0;
  }
  .page-section::before {
    display: none;
  }
  .section-title,
  .section-title-center {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 16px;
  }
  .section-desc,
  .section-desc-center {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .key-points {
    padding: 20px;
    gap: 14px;
  }
  .key-points::before {
    height: 2px;
  }
  .key-points .key-point {
    font-size: 14px;
    padding: 10px 14px;
    gap: 12px;
    line-height: 1.5;
  }
  .key-points .key-point svg {
    width: 20px;
    height: 20px;
  }
  .feature-box {
    padding: 22px;
  }
  .feature-box::before {
    width: 3px;
  }
  .feature-box-title {
    font-size: 16px;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .chip-group {
    gap: 10px;
  }
  .visual-stat-main .stat-value {
    font-size: 28px;
  }
  .visual-stat-main .stat-value em {
    font-size: 18px;
  }
}
.member-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.member-visual-box {
  background: #1e3a5f;
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.member-visual-pattern {
  display: none;
}
.member-visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.member-icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.member-icon-large svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
}
.member-visual-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.member-visual-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.35;
  margin-bottom: 28px;
}
.member-visual-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.member-stat {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  text-align: center;
}
.member-stat .stat-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #c7d2fe;
  margin-bottom: 4px;
}
.member-stat .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.member-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.member-feature-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
}
.member-feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px transparent;
  transform: translateX(8px);
}
.member-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.member-feature-card:hover .member-feature-icon {
  background: var(--gradient-primary);
}
.member-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  transition: all 0.3s ease;
}
.member-feature-card:hover .member-feature-icon svg {
  stroke: var(--white);
}
.member-feature-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.member-feature-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.35;
}
.crm-details {
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(241, 245, 249, 0.8) 0,
    rgba(226, 232, 240, 0.4) 100%
  );
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.1);
}
.crm-header {
  text-align: center;
  margin-bottom: 36px;
}
.crm-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.crm-title svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}
.crm-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
}
.crm-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.crm-card {
  padding: 24px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: all 0.3s ease;
}
.crm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.crm-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.crm-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1) 0,
    rgba(6, 182, 212, 0.1) 100%
  );
  border-radius: var(--radius-sm);
}
.crm-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: #0C6496;
}
.crm-card-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.crm-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.crm-card-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.crm-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .member-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .member-visual-box {
    min-height: 320px;
  }
  .crm-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .member-main-grid {
    gap: 24px;
    margin-bottom: 40px;
  }
  .member-visual-box {
    padding: 32px 24px;
    min-height: auto;
  }
  .member-icon-large {
    width: 64px;
    height: 64px;
  }
  .member-icon-large svg {
    width: 32px;
    height: 32px;
  }
  .member-visual-title {
    font-size: 20px;
  }
  .member-visual-stats {
    flex-direction: column;
    gap: 12px;
  }
  .member-stat {
    padding: 12px 20px;
  }
  .member-feature-card {
    padding: 18px;
    gap: 16px;
  }
  .member-feature-icon {
    width: 40px;
    height: 40px;
  }
  .member-feature-icon svg {
    width: 20px;
    height: 20px;
  }
  .member-feature-content h4 {
    font-size: 15px;
  }
  .member-feature-content p {
    font-size: 13px;
  }
  .crm-details {
    padding: 24px;
  }
  .crm-title {
    font-size: 18px;
  }
  .crm-title svg {
    width: 24px;
    height: 24px;
  }
  .crm-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .crm-card {
    padding: 20px;
  }
}
.section-inventory {
  background: linear-gradient(180deg, var(--bg-light) 0, #0A3F76 100%);
}
.inventory-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}
.inventory-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.inventory-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.inventory-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0, #0A3F76 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.inventory-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.12);
  border-color: rgba(0, 102, 255, 0.2);
}
.inventory-card:hover::before {
  opacity: 1;
}
.inventory-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1) 0,
    transparent 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.inventory-card-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 23px;
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.inventory-card:hover .inventory-card-icon {
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.3);
}
.inventory-card:hover .inventory-card-icon svg {
  stroke: #fff;
}
.inventory-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}
.inventory-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.inventory-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.inventory-visual-box {
  background: linear-gradient(135deg, #0A3F76 0, #e4e4e7 100%);
  border-radius: 24px;
  padding: 32px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.inventory-visual-pattern {
  display: none;
}
.inventory-visual-content {
  position: relative;
  z-index: 1;
}
.inventory-dashboard {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.dashboard-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.dashboard-badge {
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.dashboard-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.dashboard-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 16px;
  border-radius: 12px;
}
.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon svg {
  width: 20px;
  height: 20px;
}
.stat-icon.stock-ok {
  background: rgba(16, 185, 129, 0.2);
}
.stat-icon.stock-ok svg {
  stroke: #0C6496;
}
.stat-icon.stock-warning {
  background: rgba(245, 158, 11, 0.2);
}
.stat-icon.stock-warning svg {
  stroke: #f59e0b;
}
.stat-icon.stock-inout {
  background: transparent;
}
.stat-icon.stock-inout svg {
  stroke: #0A3F76;
}
.stat-info {
  display: flex;
  flex-direction: column;
}
.stat-info .stat-number {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.stat-info .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.dashboard-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 80px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.chart-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.chart-bar::before {
  content: "";
  width: 24px;
  height: var(--height);
  background: linear-gradient(
    180deg,
    transparent 0,
    transparent 100%
  );
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
}
.chart-bar.active::before {
  background: linear-gradient(180deg, #0C6496 0, rgba(16, 185, 129, 0.6) 100%);
}
.chart-bar span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.inventory-details {
  background: linear-gradient(180deg, #0A3F76 0, #0A3F76 100%);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.inventory-details-header {
  text-align: center;
  margin-bottom: 48px;
}
.inventory-details-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.inventory-details-title svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
}
.inventory-details-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
}
.inventory-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.inventory-feature {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inventory-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0, #0A3F76 100%);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: all 0.3s ease;
}
.inventory-feature:hover {
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.12);
  transform: translateY(-8px);
  border-color: rgba(0, 102, 255, 0.15);
}
.inventory-feature:hover::before {
  opacity: 1;
  width: 100%;
}
.inventory-feature-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.inventory-feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.08) 0,
    transparent 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.inventory-feature-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.inventory-feature:hover .inventory-feature-icon {
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.35);
  transform: scale(1.05);
}
.inventory-feature:hover .inventory-feature-icon svg {
  stroke: #fff;
}
.inventory-feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}
.inventory-feature-header h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
}
.inventory-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.inventory-feature-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.inventory-feature-list li:last-child {
  border-bottom: none;
}
.inventory-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 102, 255, 0.3);
}
@media (max-width: 1024px) {
  .inventory-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .inventory-cards {
    order: 2;
  }
  .inventory-visual {
    order: 1;
  }
  .inventory-visual-box {
    min-height: 320px;
  }
  .inventory-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .inventory-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .inventory-card {
    padding: 24px;
  }
  .inventory-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 16px;
  }
  .inventory-card-icon svg {
    width: 26px;
    height: 26px;
  }
  .inventory-card h4 {
    font-size: 1rem;
  }
  .inventory-card p {
    font-size: 0.875rem;
  }
  .inventory-visual-box {
    padding: 24px;
    min-height: auto;
  }
  .dashboard-stat {
    padding: 12px;
  }
  .stat-info .stat-number {
    font-size: 18px;
  }
  .chart-bar::before {
    width: 18px;
  }
  .inventory-details {
    padding: 24px;
    border-radius: 20px;
  }
  .inventory-details-header {
    margin-bottom: 32px;
  }
  .inventory-details-title {
    font-size: 1.25rem;
    flex-direction: column;
    gap: 10px;
  }
  .inventory-details-title svg {
    width: 28px;
    height: 28px;
  }
  .inventory-details-subtitle {
    font-size: 0.9375rem;
  }
  .inventory-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .inventory-feature {
    padding: 24px 20px;
  }
  .inventory-feature-header {
    flex-direction: row;
    text-align: left;
    gap: 14px;
    margin-bottom: 16px;
  }
  .inventory-feature-icon {
    width: 52px;
    height: 52px;
  }
  .inventory-feature-icon svg {
    width: 24px;
    height: 24px;
  }
  .inventory-feature-header h4 {
    font-size: 1rem;
  }
  .inventory-feature-list li {
    font-size: 0.8125rem;
    padding: 6px 0;
    padding-left: 18px;
  }
  .inventory-feature-list li::before {
    width: 6px;
    height: 6px;
  }
}
.section-sales {
  background: linear-gradient(180deg, #0A3F76 0, var(--bg-light) 100%);
}
.sales-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}
.sales-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sales-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.sales-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px transparent;
  border-color: var(--primary-color);
}
.sales-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.sales-card:hover .sales-card-icon {
  transform: scale(1.1);
}
.sales-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
}
.sales-card-icon.pos {
  background: linear-gradient(135deg, #0A3F76, #0C6496);
}
.sales-card-icon.kiosk {
  background: linear-gradient(135deg, #0C6496, #00BAF1);
}
.sales-card-icon.windows {
  background: linear-gradient(135deg, #0C6496, #00BAF1);
}
.sales-card-icon.mobile {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}
.sales-card-icon.quickmenu {
  background: linear-gradient(135deg, #0C6496, #00BAF1);
}
.sales-card-content {
  flex: 1;
}
.sales-card-badge {
  display: inline-block;
  background: #f0f4f8;
  color: #1a1a2e;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.sales-card-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.sales-card-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
}
.sales-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sales-card-features li {
  font-size: 12px;
  color: #3d3d5c;
  background: #f0f4f8;
  padding: 4px 10px;
  border-radius: 20px;
}
.sales-visual-box {
  background: linear-gradient(135deg, #0A3F76 0, #0A3F76 100%);
  border-radius: 24px;
  padding: 40px 32px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.sales-visual-pattern {
  display: none;
}
.sales-visual-content {
  position: relative;
  z-index: 1;
}
.device-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 24px;
}
.device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.device:hover {
  transform: translateY(-8px);
}
.device:hover .device-label {
  color: var(--primary-color);
}
.device-screen {
  background: #ffffff;
  border: 2px solid #e4e4e7;
  border-radius: 8px;
  overflow: hidden;
}
.device-desktop .device-screen {
  width: 180px;
  height: 120px;
}
.device-tablet .device-screen {
  width: 100px;
  height: 130px;
  border-radius: 12px;
}
.device-mobile .device-screen {
  width: 60px;
  height: 100px;
  border-radius: 10px;
}
.screen-header {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: #0A3F76;
}
.screen-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a4a7a;
}
.screen-dot:first-child {
  background: #ef4444;
}
.screen-dot:nth-child(2) {
  background: #f59e0b;
}
.screen-dot:nth-child(3) {
  background: #0C6496;
}
.screen-content {
  padding: 10px;
}
.screen-chart {
  height: 40px;
  background: linear-gradient(
    90deg,
    transparent 0,
    transparent 50%,
    transparent 100%
  );
  border-radius: 4px;
  margin-bottom: 8px;
}
.screen-stats {
  display: flex;
  gap: 6px;
}
.mini-stat {
  flex: 1;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.kiosk-screen {
  padding: 8px;
}
.kiosk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.kiosk-item {
  height: 45px;
  background: rgba(16, 185, 129, 0.3);
  border-radius: 6px;
}
.mobile-screen {
  padding: 8px;
}
.mobile-header {
  height: 12px;
  background: rgba(245, 158, 11, 0.4);
  border-radius: 4px;
  margin-bottom: 8px;
}
.mobile-chart {
  height: 30px;
  background: linear-gradient(
    180deg,
    rgba(245, 158, 11, 0.3) 0,
    transparent 100%
  );
  border-radius: 4px;
  margin-bottom: 8px;
}
.mobile-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-item {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.device-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.sync-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  border-radius: 30px;
  margin: 0 auto;
  width: fit-content;
}
.sync-indicator svg {
  width: 20px;
  height: 20px;
  stroke: #0A3F76;
  animation: sync-rotate 3s linear infinite;
}
@keyframes sync-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sync-indicator span {
  font-size: 13px;
  font-weight: 600;
  color: #0A3F76;
}
.sales-visual-caption {
  text-align: center;
  margin-top: 16px;
}
.sales-visual-caption p {
  font-size: 15px;
  color: var(--text-muted);
}
.sales-visual-caption strong {
  color: var(--text-dark);
}
.sales-features-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: linear-gradient(135deg, #0A3F76 0, #0A3F76 100%);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.sales-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.sales-feature-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0, #0A3F76 100%);
  border-radius: 4px 4px 0 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.sales-feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.12);
  border-color: rgba(0, 102, 255, 0.15);
}
.sales-feature-item:hover::before {
  opacity: 1;
  width: 100%;
}
.sales-feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1) 0,
    transparent 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sales-feature-item:hover .sales-feature-icon {
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  box-shadow: 0 10px 28px rgba(0, 102, 255, 0.3);
  transform: scale(1.08);
}
.sales-feature-item:hover .sales-feature-icon svg {
  stroke: #fff;
}
.sales-feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}
.sales-feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sales-feature-text strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.sales-feature-text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .sales-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sales-visual {
    order: -1;
  }
  .sales-visual-box {
    min-height: 360px;
    padding: 32px 24px;
  }
  .device-desktop .device-screen {
    width: 150px;
    height: 100px;
  }
  .device-tablet .device-screen {
    width: 85px;
    height: 110px;
  }
  .device-mobile .device-screen {
    width: 50px;
    height: 85px;
  }
  .sales-features-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
  }
  .sales-feature-item {
    padding: 20px 12px;
  }
  .sales-feature-icon {
    width: 48px;
    height: 48px;
  }
  .sales-feature-icon svg {
    width: 22px;
    height: 22px;
  }
  .sales-feature-text strong {
    font-size: 0.875rem;
  }
  .sales-feature-text span {
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .sales-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .sales-card:hover {
    transform: translateY(-4px);
  }
  .sales-card-icon {
    margin: 0 auto;
  }
  .sales-card-features {
    justify-content: center;
  }
  .sales-visual-box {
    min-height: auto;
    padding: 24px 16px;
  }
  .device-showcase {
    gap: 12px;
  }
  .device-desktop .device-screen {
    width: 120px;
    height: 80px;
  }
  .device-tablet .device-screen {
    width: 70px;
    height: 90px;
  }
  .device-mobile .device-screen {
    width: 45px;
    height: 75px;
  }
  .screen-header {
    padding: 4px 6px;
  }
  .screen-dot {
    width: 4px;
    height: 4px;
  }
  .screen-content {
    padding: 6px;
  }
  .sync-indicator {
    padding: 10px 16px;
  }
  .sync-indicator svg {
    width: 16px;
    height: 16px;
  }
  .sync-indicator span {
    font-size: 12px;
  }
  .sales-features-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px;
  }
  .sales-feature-item {
    padding: 16px 10px;
    gap: 10px;
  }
  .sales-feature-item::before {
    height: 2px;
  }
  .sales-feature-icon {
    width: 40px;
    height: 40px;
  }
  .sales-feature-icon svg {
    width: 18px;
    height: 18px;
  }
  .sales-feature-text strong {
    font-size: 0.8rem;
  }
  .sales-feature-text span {
    font-size: 0.7rem;
  }
}
@media (max-width: 480px) {
  .sales-features-bar {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }
  .sales-feature-item {
    flex-direction: row;
    text-align: left;
    padding: 14px 16px;
    gap: 14px;
  }
  .sales-feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
  .sales-feature-icon svg {
    width: 20px;
    height: 20px;
  }
  .sales-feature-text {
    text-align: left;
  }
  .sales-feature-text strong {
    font-size: 0.85rem;
  }
  .sales-feature-text span {
    font-size: 0.75rem;
  }
}
.pos-detail-container {
  padding: 40px;
}
.pos-detail-header {
  text-align: center;
  margin-bottom: 50px;
}
.pos-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 16px 0;
}
.pos-detail-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.pos-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.pos-detail-visual {
  position: sticky;
  top: 40px;
}
.pos-screenshot-box {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 30px;
}
.pos-screenshot-mockup {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.mockup-header {
  background: linear-gradient(135deg, #075985 0, #16213e 100%);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.mockup-dot.red {
  background: #ff5f56;
}
.mockup-dot.yellow {
  background: #ffbd2e;
}
.mockup-dot.green {
  background: #27ca40;
}
.mockup-title {
  color: var(--white);
  font-size: 13px;
  margin-left: auto;
  opacity: 0.8;
}
.mockup-screen {
  padding: 20px;
  background: #ffffff;
}
.pos-ui-preview {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.pos-ui-header {
  background: var(--primary);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pos-ui-logo {
  width: 80px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.pos-ui-info {
  display: flex;
  gap: 8px;
}
.pos-ui-info span {
  width: 60px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.pos-ui-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  padding: 16px;
}
.pos-ui-products {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 12px;
}
.pos-ui-category {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.pos-ui-category span {
  flex: 1;
  height: 28px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}
.pos-ui-category span:first-child {
  background: var(--primary);
  border-color: var(--primary);
}
.pos-ui-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.pos-ui-item {
  aspect-ratio: 1;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}
.pos-ui-item:first-child {
  background: linear-gradient(135deg, #ffecd2 0, #fcb69f 100%);
  border: none;
}
.pos-ui-item:nth-child(2) {
  background: linear-gradient(135deg, #a8edea 0, #fed6e3 100%);
  border: none;
}
.pos-ui-item:nth-child(5) {
  background: linear-gradient(135deg, #d299c2 0, #fef9d7 100%);
  border: none;
}
.pos-ui-item:nth-child(6) {
  background: linear-gradient(135deg, #89f7fe 0, #66a6ff 100%);
  border: none;
}
.pos-ui-payment {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.pos-ui-cart {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.cart-item {
  height: 32px;
  background: var(--bg-secondary);
  border-radius: 6px;
}
.pos-ui-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--bg-secondary);
  border-radius: 8px;
  margin-bottom: 12px;
}
.pos-ui-total span {
  font-size: 14px;
  color: var(--text-secondary);
}
.pos-ui-total strong {
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
}
.pos-ui-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pay-btn {
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.pay-btn.card {
  background: var(--primary);
}
.pay-btn.cash {
  background: var(--secondary);
}
.screenshot-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.pos-detail-features {
  padding-right: 20px;
}
.features-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--primary);
}
.features-title svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.feature-item:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
  transform: translateY(-2px);
}
.feature-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--primary) 0,
    var(--primary-dark) 100%
  );
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.feature-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-content li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.feature-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.pos-detail-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}
.cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.sales-card-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.sales-card-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}
.sales-card:hover .sales-card-arrow {
  opacity: 1;
  right: 16px;
}
.sales-card[data-panel] {
  cursor: pointer;
  position: relative;
}
@media (max-width: 1024px) {
  .pos-detail-container {
    padding: 30px;
  }
  .pos-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pos-detail-visual {
    position: static;
  }
  .pos-detail-features {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .pos-detail-container {
    padding: 20px;
  }
  .pos-detail-title {
    font-size: 1.75rem;
  }
  .pos-detail-header {
    margin-bottom: 30px;
  }
  .pos-screenshot-box {
    padding: 16px;
  }
  .feature-item {
    padding: 16px;
    gap: 16px;
  }
  .feature-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .feature-content h4 {
    font-size: 1rem;
  }
  .feature-content li {
    font-size: 13px;
  }
  .features-title {
    font-size: 1.25rem;
  }
  .pos-ui-main {
    grid-template-columns: 1fr;
  }
  .pos-ui-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .sales-card-arrow {
    display: none;
  }
}
.pos-slides-container {
  position: relative;
  overflow: hidden;
}
.pos-slides-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.pos-slide {
  flex: 0 0 100%;
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.pos-slide.pos-slide-active {
  opacity: 1;
  visibility: visible;
}
.pos-slides-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 40px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}
.pos-slide-next,
.pos-slide-prev {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.pos-slide-next:hover:not(:disabled),
.pos-slide-prev:hover:not(:disabled) {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.pos-slide-next:disabled,
.pos-slide-prev:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pos-slide-next svg,
.pos-slide-prev svg {
  width: 18px;
  height: 18px;
}
.pos-slides-indicators {
  display: flex;
  gap: 8px;
}
.pos-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: #ffffff;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.pos-indicator:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pos-indicator.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.quick-action-dashboard {
  background: #0e2a4a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(
    135deg,
    var(--primary) 0,
    var(--primary-dark) 100%
  );
}
.dashboard-header h4 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
}
.dashboard-badge {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 12px;
  color: var(--white);
  font-weight: 500;
}
.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
}
.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  border-radius: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.quick-action-btn:nth-child(1) { background: #1a5190; }
.quick-action-btn:nth-child(2) { background: #1e5f9e; }
.quick-action-btn:nth-child(3) { background: #1e5f9e; }
.quick-action-btn:nth-child(4) { background: #1a5190; }
.quick-action-btn:hover {
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.quick-action-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.quick-action-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}
.quick-action-icon.sales {
  background: linear-gradient(135deg, #0C6496 0, #00BAF1 100%);
}
.quick-action-icon.product {
  background: linear-gradient(135deg, #0C6496 0, #0A3F76 100%);
}
.quick-action-icon.stats {
  background: linear-gradient(135deg, #f59e0b 0, #d97706 100%);
}
.quick-action-icon.inventory {
  background: linear-gradient(135deg, #0C6496 0, #0A3F76 100%);
}
.quick-action-label {
  font-size: 16px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 4px;
}
.quick-action-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.dashboard-footer {
  padding: 16px 24px;
  background: rgba(255,255,255,0.05);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.dashboard-footer p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 768px) {
  .pos-slides-nav {
    padding: 16px 20px;
    gap: 16px;
  }
  .pos-slide-next,
  .pos-slide-prev {
    padding: 10px 16px;
    font-size: 13px;
  }
  .pos-slide-next span,
  .pos-slide-prev span {
    display: none;
  }
  .pos-indicator {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .quick-action-grid {
    gap: 12px;
    padding: 16px;
  }
  .quick-action-btn {
    padding: 24px 16px;
  }
  .quick-action-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }
  .quick-action-icon svg {
    width: 26px;
    height: 26px;
  }
  .quick-action-label {
    font-size: 14px;
  }
  .quick-action-desc {
    font-size: 12px;
  }
}
.kiosk-detail-container {
  padding: 40px;
}
.kiosk-detail-header {
  text-align: center;
  margin-bottom: 50px;
}
.kiosk-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 16px 0;
}
.kiosk-detail-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.kiosk-detail-subtitle strong {
  color: var(--primary);
}
.kiosk-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.kiosk-detail-visual {
  position: sticky;
  top: 40px;
}
.kiosk-diagram {
  position: relative;
  background: #f8fafc;
  border-radius: 24px;
  padding: 60px 40px;
  min-height: 450px;
}
.kiosk-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.kiosk-device {
  width: 140px;
  background: #075985;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.kiosk-screen {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px;
  min-height: 200px;
}
.kiosk-screen-header {
  height: 20px;
  background: linear-gradient(
    135deg,
    var(--primary) 0,
    var(--primary-dark) 100%
  );
  border-radius: 6px;
  margin-bottom: 12px;
}
.kiosk-screen-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.kiosk-screen-menu .menu-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #ffecd2 0, #fcb69f 100%);
  border-radius: 8px;
}
.kiosk-screen-menu .menu-item:nth-child(2) {
  background: linear-gradient(135deg, #a8edea 0, #fed6e3 100%);
}
.kiosk-screen-menu .menu-item:nth-child(3) {
  background: linear-gradient(135deg, #d299c2 0, #fef9d7 100%);
}
.kiosk-screen-menu .menu-item:nth-child(4) {
  background: linear-gradient(135deg, #89f7fe 0, #66a6ff 100%);
}
.kiosk-screen-cart {
  background: var(--primary);
  color: var(--white);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}
.kiosk-label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}
.kiosk-connections {
  position: absolute;
  inset: 0;
}
.kiosk-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.node-icon {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.node-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.2);
}
.node-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}
.node-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}
.node-line {
  position: absolute;
  background: var(--primary);
  opacity: 0.3;
}
.node-top-left {
  top: 30px;
  left: 30px;
}
.node-top-left .node-line {
  width: 60px;
  height: 2px;
  top: 28px;
  right: -60px;
  transform: rotate(35deg);
}
.node-top-right {
  top: 30px;
  right: 30px;
}
.node-top-right .node-line {
  width: 60px;
  height: 2px;
  top: 28px;
  left: -60px;
  transform: rotate(-35deg);
}
.node-bottom-left {
  bottom: 50px;
  left: 30px;
}
.node-bottom-left .node-line {
  width: 60px;
  height: 2px;
  bottom: 50px;
  right: -60px;
  transform: rotate(-35deg);
}
.node-bottom-right {
  bottom: 50px;
  right: 30px;
}
.node-bottom-right .node-line {
  width: 60px;
  height: 2px;
  bottom: 50px;
  left: -60px;
  transform: rotate(35deg);
}
.diagram-caption {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}
.kiosk-detail-features {
  padding-right: 20px;
}
.kiosk-detail-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}
@media (max-width: 1024px) {
  .kiosk-detail-container {
    padding: 30px;
  }
  .kiosk-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .kiosk-detail-visual {
    position: static;
  }
  .kiosk-detail-features {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .kiosk-detail-container {
    padding: 20px;
  }
  .kiosk-detail-title {
    font-size: 1.75rem;
  }
  .kiosk-diagram {
    padding: 40px 20px;
    min-height: 380px;
  }
  .kiosk-device {
    width: 120px;
  }
  .kiosk-screen {
    min-height: 160px;
    padding: 10px;
  }
  .node-icon {
    width: 44px;
    height: 44px;
  }
  .node-icon svg {
    width: 22px;
    height: 22px;
  }
  .node-label {
    font-size: 10px;
  }
  .node-top-left,
  .node-top-right {
    top: 15px;
  }
  .node-bottom-left,
  .node-bottom-right {
    bottom: 30px;
  }
  .node-bottom-left,
  .node-top-left {
    left: 10px;
  }
  .node-bottom-right,
  .node-top-right {
    right: 10px;
  }
  .node-line {
    display: none;
  }
}
.windows-detail-container {
  padding: 40px;
}
.windows-detail-header {
  text-align: center;
  margin-bottom: 50px;
}
.windows-detail-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 16px 0;
  line-height: 1.4;
}
.windows-detail-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.windows-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.windows-detail-visual {
  position: sticky;
  top: 40px;
}
.dashboard-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dashboard-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.dashboard-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
  transform: translateY(-4px);
}
.dashboard-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.dashboard-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}
.dashboard-card-icon.sales-icon {
  background: linear-gradient(135deg, #0C6496 0, #00BAF1 100%);
}
.dashboard-card-icon.settings-icon {
  background: linear-gradient(135deg, #0C6496 0, #0A3F76 100%);
}
.dashboard-card-icon.inventory-icon {
  background: linear-gradient(135deg, #f59e0b 0, #d97706 100%);
}
.dashboard-card-icon.member-icon {
  background: linear-gradient(135deg, #0C6496 0, #0A3F76 100%);
}
.dashboard-card-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.dashboard-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dashboard-card-content li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.dashboard-card-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}
.dashboard-caption {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}
.windows-detail-features {
  padding-right: 20px;
}
.windows-detail-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}
@media (max-width: 1024px) {
  .windows-detail-container {
    padding: 30px;
  }
  .windows-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .windows-detail-visual {
    position: static;
  }
  .windows-detail-features {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .windows-detail-container {
    padding: 20px;
  }
  .windows-detail-title {
    font-size: 1.5rem;
  }
  .dashboard-cards-grid {
    gap: 12px;
  }
  .dashboard-card {
    padding: 16px;
  }
  .dashboard-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .dashboard-card-icon svg {
    width: 22px;
    height: 22px;
  }
  .dashboard-card-content h4 {
    font-size: 14px;
  }
  .dashboard-card-content li {
    font-size: 12px;
  }
}
.mobile-detail-container {
  padding: 40px;
}
.mobile-detail-header {
  text-align: center;
  margin-bottom: 50px;
}
.mobile-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 16px 0;
}
.mobile-detail-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.mobile-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.mobile-detail-visual {
  position: sticky;
  top: 40px;
}
.app-screenshots-container {
  background: #f8fafc;
  border-radius: 24px;
  padding: 40px 20px;
  overflow-x: auto;
}
.app-screenshots-wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.app-phone {
  flex-shrink: 0;
  text-align: center;
}
.phone-frame {
  width: 140px;
  background: #075985;
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.phone-notch {
  width: 60px;
  height: 20px;
  background: #075985;
  border-radius: 0 0 12px 12px;
  margin: 0 auto -10px;
  position: relative;
  z-index: 2;
}
.phone-screen {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 12px 16px;
  min-height: 240px;
}
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}
.app-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}
.app-date {
  font-size: 10px;
  color: var(--text-muted);
}
.app-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.stat-card {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 10px;
  text-align: left;
}
.stat-label {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.stat-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.app-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  padding: 8px;
  background: var(--bg-secondary);
  border-radius: 8px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(
    180deg,
    var(--primary-light) 0,
    var(--primary) 100%
  );
  border-radius: 4px 4px 0 0;
  opacity: 0.6;
}
.chart-bar.active {
  opacity: 1;
  background: linear-gradient(
    180deg,
    var(--secondary) 0,
    var(--secondary) 100%
  );
}
.app-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: var(--bg-secondary);
  border-radius: 8px;
}
.item-info {
  text-align: left;
}
.item-name {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
}
.item-time {
  font-size: 9px;
  color: var(--text-muted);
}
.item-price {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
}
.app-inventory {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inventory-item {
  position: relative;
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 10px;
  overflow: hidden;
}
.inventory-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 102, 255, 0.1) 0,
    rgba(0, 102, 255, 0.2) 100%
  );
}
.inventory-item.warning .inventory-progress {
  background: linear-gradient(
    90deg,
    rgba(239, 68, 68, 0.1) 0,
    rgba(239, 68, 68, 0.2) 100%
  );
}
.inventory-name {
  position: relative;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-primary);
}
.inventory-count {
  position: relative;
  float: right;
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
}
.inventory-item.warning .inventory-count {
  color: #ef4444;
}
.app-report {
  padding: 8px 0;
}
.report-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.report-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: var(--bg-secondary);
  border-radius: 8px;
}
.report-label {
  font-size: 10px;
  color: var(--text-secondary);
}
.report-value {
  font-size: 12px;
  font-weight: 600;
}
.report-value.up {
  color: #0C6496;
}
.screen-label {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}
.screenshots-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.mobile-detail-features {
  padding-right: 20px;
}
.mobile-detail-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}
@media (max-width: 1024px) {
  .mobile-detail-container {
    padding: 30px;
  }
  .mobile-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mobile-detail-visual {
    position: static;
  }
  .mobile-detail-features {
    padding-right: 0;
  }
  .app-screenshots-wrapper {
    justify-content: flex-start;
    padding-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .mobile-detail-container {
    padding: 20px;
  }
  .mobile-detail-title {
    font-size: 1.75rem;
  }
  .app-screenshots-container {
    padding: 24px 16px;
  }
  .phone-frame {
    width: 120px;
  }
  .phone-screen {
    min-height: 200px;
    padding: 20px 10px 14px;
  }
  .app-screenshots-wrapper {
    gap: 16px;
  }
}
.section-franchise {
  background: linear-gradient(180deg, var(--bg-secondary) 0, var(--white) 100%);
}
.franchise-main-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.franchise-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
}
.franchise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.franchise-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}
.franchise-card:hover::before {
  transform: scaleX(1);
}
.franchise-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.franchise-card-icon svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}
.franchise-card-primary .franchise-card-icon {
  background: linear-gradient(
    135deg,
    var(--primary) 0,
    var(--primary-dark) 100%
  );
}
.franchise-card-secondary .franchise-card-icon {
  background: linear-gradient(135deg, var(--secondary) 0, #e85d04 100%);
}
.franchise-card-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bg-secondary);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.franchise-card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.franchise-card-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 20px;
}
.franchise-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.3s ease;
}
.franchise-card-link svg {
  width: 18px;
  height: 18px;
}
.franchise-card:hover .franchise-card-link {
  gap: 12px;
}
.franchise-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.franchise-feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.franchise-feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}
.franchise-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1) 0,
    rgba(0, 102, 255, 0.05) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.franchise-feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}
.franchise-feature-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}
.franchise-feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .franchise-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .franchise-main-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .franchise-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .franchise-card {
    padding: 24px;
  }
  .franchise-card-icon {
    width: 56px;
    height: 56px;
  }
  .franchise-card-icon svg {
    width: 28px;
    height: 28px;
  }
  .franchise-card-content h3 {
    font-size: 1.25rem;
  }
  .franchise-feature-card {
    padding: 20px 16px;
  }
  .franchise-feature-icon {
    width: 48px;
    height: 48px;
  }
  .franchise-feature-icon svg {
    width: 24px;
    height: 24px;
  }
  .franchise-feature-card h4 {
    font-size: 13px;
  }
  .franchise-feature-card p {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .franchise-features-grid {
    grid-template-columns: 1fr;
  }
}
.franchise-detail-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.franchise-detail-header {
  text-align: center;
  margin-bottom: 48px;
}
.franchise-detail-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.franchise-detail-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.35;
}
.franchise-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.franchise-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.franchise-detail-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.1);
}
.franchise-detail-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.franchise-detail-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.4;
}
.franchise-detail-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.franchise-detail-content ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.franchise-detail-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}
.franchise-detail-content ul li:last-child {
  margin-bottom: 0;
}
.franchise-detail-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.franchise-integration-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.franchise-integration-header {
  text-align: center;
  margin-bottom: 48px;
}
.franchise-integration-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.franchise-integration-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.35;
}
.franchise-integration-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.integration-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.integration-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.12);
}
.integration-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.integration-card-icon svg {
  width: 32px;
  height: 32px;
}
.integration-card-icon.customer {
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  color: #0A3F76;
}
.integration-card-icon.sales {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15) 0,
    rgba(16, 185, 129, 0.05) 100%
  );
  color: #0C6496;
}
.integration-card-icon.logistics {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.15) 0,
    rgba(245, 158, 11, 0.05) 100%
  );
  color: #f59e0b;
}
.integration-card-icon.inventory {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.15) 0,
    rgba(239, 68, 68, 0.05) 100%
  );
  color: #ef4444;
}
.integration-card-icon.member {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.15) 0,
    rgba(0, 102, 255, 0.05) 100%
  );
  color: var(--primary);
}
.integration-card:hover .integration-card-icon.customer {
  background: linear-gradient(135deg, #0A3F76 0, #0A3F76 100%);
  color: #fff;
}
.integration-card:hover .integration-card-icon.sales {
  background: linear-gradient(135deg, #0C6496 0, #00BAF1 100%);
  color: #fff;
}
.integration-card:hover .integration-card-icon.logistics {
  background: linear-gradient(135deg, #f59e0b 0, #d97706 100%);
  color: #fff;
}
.integration-card:hover .integration-card-icon.inventory {
  background: linear-gradient(135deg, #ef4444 0, #dc2626 100%);
  color: #fff;
}
.integration-card:hover .integration-card-icon.member {
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  color: #fff;
}
.integration-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.integration-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .franchise-integration-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .franchise-detail-section,
  .franchise-integration-section {
    margin-top: 60px;
    padding-top: 40px;
  }
  .franchise-detail-title,
  .franchise-integration-title {
    font-size: 1.5rem;
  }
  .franchise-detail-desc,
  .franchise-integration-desc {
    font-size: 1rem;
  }
  .franchise-detail-grid {
    grid-template-columns: 1fr;
  }
  .franchise-detail-item {
    padding: 24px;
  }
  .franchise-detail-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .franchise-detail-content h4 {
    font-size: 1.125rem;
  }
  .franchise-integration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .integration-card {
    padding: 20px 16px;
  }
  .integration-card-icon {
    width: 52px;
    height: 52px;
  }
  .integration-card-icon svg {
    width: 26px;
    height: 26px;
  }
  .integration-card h4 {
    font-size: 0.9rem;
  }
  .integration-card p {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .franchise-integration-grid {
    grid-template-columns: 1fr;
  }
}
.data-integration-detail-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.data-integration-header {
  text-align: center;
  margin-bottom: 48px;
}
.data-integration-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.data-integration-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.35;
}
.data-integration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.data-integration-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}
.data-integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.08);
  border-color: var(--primary);
}
.data-integration-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.data-integration-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.data-integration-icon svg {
  width: 24px;
  height: 24px;
}
.data-integration-icon.sales {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15) 0,
    rgba(16, 185, 129, 0.05) 100%
  );
  color: #0C6496;
}
.data-integration-icon.logistics {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.15) 0,
    rgba(245, 158, 11, 0.05) 100%
  );
  color: #f59e0b;
}
.data-integration-icon.customer {
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  color: #0A3F76;
}
.data-integration-icon.crm {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.15) 0,
    rgba(0, 102, 255, 0.05) 100%
  );
  color: var(--primary);
}
.data-integration-card:hover .data-integration-icon.sales {
  background: linear-gradient(135deg, #0C6496 0, #00BAF1 100%);
  color: #fff;
}
.data-integration-card:hover .data-integration-icon.logistics {
  background: linear-gradient(135deg, #f59e0b 0, #d97706 100%);
  color: #fff;
}
.data-integration-card:hover .data-integration-icon.customer {
  background: linear-gradient(135deg, #0A3F76 0, #0A3F76 100%);
  color: #fff;
}
.data-integration-card:hover .data-integration-icon.crm {
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  color: #fff;
}
.data-integration-card-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}
.data-integration-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.data-integration-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.data-integration-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
@media (max-width: 768px) {
  .data-integration-detail-section {
    margin-top: 60px;
    padding-top: 40px;
  }
  .data-integration-title {
    font-size: 1.5rem;
  }
  .data-integration-desc {
    font-size: 1rem;
  }
  .data-integration-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .data-integration-card {
    padding: 24px;
  }
  .data-integration-card-header h4 {
    font-size: 1.125rem;
  }
  .data-integration-icon {
    width: 44px;
    height: 44px;
  }
  .data-integration-icon svg {
    width: 22px;
    height: 22px;
  }
  .data-integration-list li {
    font-size: 0.875rem;
  }
  .data-integration-list li svg {
    width: 16px;
    height: 16px;
  }
}
.section-cases {
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0,
    var(--bg-secondary) 100%
  );
}
.cases-header {
  text-align: center;
  margin-bottom: 48px;
}
.cases-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 16px;
}
.cases-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.cases-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.cases-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  margin-bottom: 60px;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0, 102, 255, 0.15);
  border-color: var(--primary);
}
.case-card:hover .case-card-image {
  background-size: 150% 150%;
}
.case-card:hover .case-logo-placeholder {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.25);
}
.case-card:hover .case-logo-placeholder svg {
  color: var(--primary);
}
.case-card-image {
  height: 140px;
  background: linear-gradient(135deg, #0A3F76 0, #0C6496 50%, #00BAF1 100%);
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-size 0.5s ease;
}
.case-card-image::before {
  display: none;
}
.case-card[data-category="franchise"] .case-card-image {
  background: linear-gradient(135deg, #06f 0, #00c6ff 100%);
}
.case-card[data-category="convenience"] .case-card-image {
  background: linear-gradient(135deg, #11998e 0, #38ef7d 100%);
}
.case-card[data-category="food"] .case-card-image {
  background: linear-gradient(135deg, #f2994a 0, #00BAF1 100%);
}
.case-card[data-category="fashion"] .case-card-image {
  background: linear-gradient(135deg, #ee0979 0, #ff6a00 100%);
}
.case-card[data-category="mart"] .case-card-image {
  background: linear-gradient(135deg, #4facfe 0, #00f2fe 100%);
}
.case-card[data-category="wholesale"] .case-card-image {
  background: linear-gradient(135deg, #6a11cb 0, #2575fc 100%);
}
.case-logo-placeholder {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.case-logo-placeholder svg {
  width: 36px;
  height: 36px;
  color: #64748b;
  transition: color 0.3s ease;
}
.case-card-content {
  padding: 24px;
}
.case-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 102, 255, 0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 12px;
}
.case-company {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.case-review {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.35;
  margin-bottom: 16px;
}
.case-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: 0 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.case-detail-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.case-detail-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.case-detail-btn:hover svg {
  transform: translateX(4px);
}
.cases-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cases-trust-box {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.05) 0,
    transparent 100%
  );
  border: 1px solid rgba(0, 102, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.trust-badge {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-badge svg {
  width: 28px;
  height: 28px;
  color: #fff;
}
.cases-trust-box h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.cases-trust-box p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.cases-logos {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.cases-logos h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.logo-item {
  height: 48px;
  background: var(--bg-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}
.cases-cta-banner {
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.cases-cta-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  line-height: 1.4;
}
.cases-cta-banner p strong {
  color: #fff;
  font-weight: 600;
}
.cases-cta-banner .btn {
  width: 100%;
  justify-content: center;
  background: #ffffff;
  color: var(--primary);
}
.cases-cta-banner .btn:hover {
  background: rgba(255, 255, 255, 0.9);
}
.cases-detail-section {
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.cases-detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 40px;
}
.cases-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cases-detail-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.cases-detail-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.08);
}
.detail-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1) 0,
    rgba(0, 102, 255, 0.05) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}
.cases-detail-item:hover .detail-icon {
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
}
.cases-detail-item:hover .detail-icon svg {
  color: #fff;
}
.detail-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.detail-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.35;
}
@media (max-width: 1200px) {
  .cases-content {
    grid-template-columns: 1fr;
  }
  .cases-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cases-sidebar > * {
    flex: 1 1 280px;
    min-width: min(280px, 100%);
  }
  .cases-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cases-title {
    font-size: 1.75rem;
  }
  .cases-filter {
    gap: 8px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cases-sidebar {
    flex-direction: column;
  }
  .cases-sidebar > * {
    min-width: 100%;
  }
  .cases-detail-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cases-detail-item {
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .cases-title {
    font-size: 1.5rem;
  }
  .case-card-image {
    height: 100px;
  }
  .case-card-content {
    padding: 20px;
  }
}
.section-location {
  background: var(--bg-secondary);
}
.location-header {
  text-align: center;
  margin-bottom: 48px;
}
.location-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.location-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}
.location-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
}
.location-map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location-map {
  width: 100%;
  height: 400px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #f8fafc;
}
.map-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
  opacity: 0.6;
}
.map-placeholder p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.map-actions {
  display: flex;
  gap: 12px;
}
.map-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.map-action-btn svg {
  width: 20px;
  height: 20px;
}
.map-action-btn.kakao {
  background: #fee500;
  color: #3c1e1e;
}
.map-action-btn.kakao:hover {
  background: #f5dc00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 229, 0, 0.4);
}
.map-action-btn.naver {
  background: #03c75a;
  color: #fff;
}
.map-action-btn.naver:hover {
  background: #02b350;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 199, 90, 0.4);
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.company-info-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.company-info-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.company-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.company-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1) 0,
    rgba(0, 102, 255, 0.05) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}
.info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-style: normal;
  line-height: 1.4;
}
.info-value.phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.info-value.phone:hover {
  text-decoration: underline;
}
.info-value.address {
  font-size: 0.9375rem;
}
.directions-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.directions-box > h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.directions-box > h4 svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}
.direction-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.direction-item:last-child {
  margin-bottom: 0;
}
.direction-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.direction-icon svg {
  width: 22px;
  height: 22px;
}
.direction-icon.subway {
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  color: #0A3F76;
}
.direction-icon.car {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15) 0,
    rgba(16, 185, 129, 0.05) 100%
  );
  color: #0C6496;
}
.direction-content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.direction-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.direction-content ul li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.direction-content ul li strong {
  color: var(--text-primary);
  font-weight: 600;
}
.line {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  margin-right: 4px;
}
.line-2 {
  background: #33a23d;
}
.line-3 {
  background: #fe5d10;
}
.location-cta-box {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.05) 0,
    transparent 100%
  );
  border: 1px solid rgba(0, 102, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.building-image-placeholder {
  width: 100%;
  height: 120px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.building-image-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--text-muted);
  opacity: 0.5;
}
.building-image-placeholder span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}
.location-cta-btn {
  width: 100%;
  justify-content: center;
}
.location-cta-btn svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  .location-content {
    grid-template-columns: 1fr;
  }
  .location-map {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .location-title {
    font-size: 1.75rem;
  }
  .location-map {
    height: 300px;
  }
  .map-actions {
    flex-direction: column;
  }
  .company-info-box,
  .directions-box,
  .location-cta-box {
    padding: 24px;
  }
  .company-info-box h3 {
    font-size: 1.25rem;
  }
  .direction-icon,
  .info-icon {
    width: 40px;
    height: 40px;
  }
  .direction-icon svg,
  .info-icon svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .location-title {
    font-size: 1.5rem;
  }
  .location-map {
    height: 250px;
  }
  .company-info-list li {
    flex-direction: column;
    gap: 12px;
  }
  .direction-item {
    flex-direction: column;
    gap: 12px;
  }
}
.section-support {
  background: linear-gradient(
    180deg,
    rgba(250, 245, 255, 0.6) 0,
    rgba(240, 249, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.8) 100%
  );
  position: relative;
}
.section-support::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 10%,
    transparent,
    transparent,
    transparent 90%
  );
}
.support-header {
  text-align: center;
  margin-bottom: 48px;
}
.support-title {
  font-size: 2.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0A3F76 0, #0C6496 50%, #0C6496 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.faq-search-wrapper {
  max-width: 640px;
  margin: 0 auto 56px;
}
.faq-search {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid transparent;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px transparent;
}
.faq-search:focus-within {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px transparent;
  transform: translateY(-2px);
}
.faq-search > svg {
  width: 24px;
  height: 24px;
  color: #0A3F76;
  flex-shrink: 0;
}
.faq-search input {
  flex: 1;
  border: none;
  background: 0 0;
  font-size: 1rem;
  color: var(--text-primary);
  outline: 0;
}
.faq-search input::placeholder {
  color: var(--text-muted);
}
.search-clear {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: var(--text-muted);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.search-clear:hover {
  opacity: 1;
}
.search-clear svg {
  width: 14px;
  height: 14px;
  color: #fff;
}
.support-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
}
.faq-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.faq-section-title svg {
  width: 28px;
  height: 28px;
  color: #0A3F76;
  filter: drop-shadow(0 2px 4px transparent);
}
.support-content .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.support-content .faq-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.support-content .faq-item:hover {
  border-color: transparent;
  transform: translateY(-2px);
}
.support-content .faq-item.active {
  border-color: transparent;
  box-shadow: 0 12px 32px transparent;
}
.support-content .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  background: 0 0;
  border: none;
  cursor: pointer;
  text-align: left;
}
.support-content .faq-question span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.support-content .faq-question svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #0A3F76;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.support-content .faq-question svg {
  transform: rotate(180deg);
  color: #0C6496;
}
.support-content .faq-item.closed .faq-question svg {
  transform: rotate(0deg);
  color: #0A3F76;
}
.faq-answer {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.closed .faq-answer {
  max-height: 0;
  padding: 0 24px;
}
.faq-answer p {
  padding: 0 24px 24px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.faq-no-results {
  padding: 60px 20px;
  text-align: center;
}
.faq-no-results svg {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  opacity: 0.5;
  margin-bottom: 16px;
}
.faq-no-results p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.faq-no-results span {
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.manual-download {
  margin-top: 32px;
  text-align: center;
}
.manual-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.manual-btn svg {
  width: 20px;
  height: 20px;
}
.support-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.support-contact-box {
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  color: #fff;
}
.support-contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-contact-icon svg {
  width: 28px;
  height: 28px;
}
.support-contact-box h4 {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 8px;
}
.support-phone {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 12px;
}
.support-phone:hover {
  text-decoration: underline;
}
.support-contact-box p {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.4;
}
.support-links {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.support-links h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.support-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.support-links ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.support-links ul li a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateX(4px);
}
.support-links ul li a > svg:first-child {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.support-links ul li a .arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.support-links ul li a:hover .arrow {
  opacity: 1;
  color: var(--primary);
}
.remote-support-banner {
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.remote-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #0A3F76 0, #0C6496 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.remote-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}
.remote-support-banner h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.remote-support-banner p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 20px;
}
.remote-support-banner .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 1024px) {
  .support-content {
    grid-template-columns: 1fr;
  }
  .support-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .support-sidebar > * {
    flex: 1 1 280px;
    min-width: min(280px, 100%);
  }
}
@media (max-width: 768px) {
  .support-title {
    font-size: 1.75rem;
  }
  .faq-search {
    padding: 14px 20px;
  }
  .faq-question {
    padding: 16px 20px;
  }
  .faq-answer p {
    padding: 0 20px 20px;
  }
  .support-sidebar {
    flex-direction: column;
  }
  .support-sidebar > * {
    min-width: 100%;
  }
}
@media (max-width: 480px) {
  .support-title {
    font-size: 1.5rem;
  }
  .faq-search-wrapper {
    margin-bottom: 32px;
  }
  .faq-question span {
    font-size: 0.9375rem;
  }
  .faq-answer p {
    font-size: 0.875rem;
  }
}
.section-contact {
  background: linear-gradient(135deg, var(--primary) 0, #0A3F76 100%);
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.contact-form-area {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.contact-header {
  margin-bottom: 32px;
}
.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.contact-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}
.form-group label .required {
  color: #ef4444;
  margin-left: 2px;
}
.form-group input[type="tel"],
.form-group input[type="text"],
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--text-primary);
  background: #ffffff;
  transition: all 0.3s ease;
  outline: 0;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}
.form-group input::placeholder {
  color: var(--text-muted);
}
.error-message {
  font-size: 0.8125rem;
  color: #ef4444;
  display: none;
}
.select-wrapper {
  position: relative;
}
.select-wrapper select {
  appearance: none;
  padding-right: 44px;
  cursor: pointer;
}
.select-wrapper svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  pointer-events: none;
}
.form-group-checkbox {
  margin-top: 8px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  display: none;
}
.checkbox-custom {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-top: 1px;
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: "";
  width: 8px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  margin-bottom: 3px;
}
.checkbox-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.privacy-link {
  color: var(--primary);
  text-decoration: underline;
}
.privacy-link:hover {
  text-decoration: none;
}
.contact-submit-btn {
  margin-top: 12px;
  padding: 18px 32px;
  font-size: 1.125rem;
  justify-content: center;
  gap: 10px;
}
.contact-submit-btn svg {
  width: 22px;
  height: 22px;
}
.btn-xl {
  padding: 18px 36px;
  font-size: 1.125rem;
}
.contact-info-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
}
.contact-info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}
.info-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card-icon svg {
  width: 32px;
  height: 32px;
}
.contact-info-card h3 {
  font-size: 1.125rem;
  font-weight: 700 !important;
  color: #f1f5f9 !important;
  margin-bottom: 12px;
}
.info-phone {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #0A3F76 !important;
  text-decoration: none;
  margin-bottom: 12px;
}
.info-phone:hover {
  text-decoration: underline;
}
.info-hours {
  font-size: 0.9375rem;
  color: #cbd5e1 !important;
  line-height: 1.4;
}
.contact-benefits {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 28px;
}
.contact-benefits h4 {
  font-size: 1rem;
  font-weight: 700 !important;
  margin-bottom: 20px;
  color: #f1f5f9 !important;
}
.contact-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-benefits ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: #cbd5e1 !important;
}
.contact-benefits ul li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #4ade80;
}
.contact-trust {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 24px;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}
.contact-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}
.contact-success-modal.active {
  display: flex;
}
.success-modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #0C6496 0, #00BAF1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}
.success-modal-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.success-modal-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-bottom: 28px;
}
.success-modal-content .btn {
  min-width: 140px;
}
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-info-area {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-info-area > * {
    flex: 1 1 280px;
    min-width: min(280px, 100%);
  }
}
@media (max-width: 768px) {
  .contact-form-area {
    padding: 32px 24px;
  }
  .contact-title {
    font-size: 1.5rem;
  }
  .contact-info-area {
    flex-direction: column;
  }
  .contact-info-area > * {
    min-width: 100%;
  }
  .info-phone {
    font-size: 1.75rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .contact-form-area {
    padding: 28px 20px;
  }
  .contact-title {
    font-size: 1.375rem;
  }
  .form-group input[type="tel"],
  .form-group input[type="text"],
  .form-group select {
    padding: 12px 16px;
  }
  .contact-submit-btn {
    padding: 16px 24px;
    font-size: 1rem;
  }
  .trust-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.slide-panel-legal {
  width: 90%;
  max-width: 1100px;
}
.legal-panel-body {
  display: flex;
  gap: 0;
  height: calc(100vh - 70px);
  overflow: hidden;
}
.legal-sidebar {
  width: 260px;
  min-width: 260px;
  background: #f5f7fa;
  border-right: 1px solid #e2e8f0;
  padding: 32px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.legal-toc h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #3d3d5c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.toc-item {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: #64748b;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  line-height: 1.4;
}
.toc-item:hover {
  background: #e4e4e7;
  color: #e2e8f0;
}
.toc-item.active {
  background: var(--primary);
  color: #fff;
  font-weight: 500;
}
.legal-info-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-top: auto;
}
.legal-info-box .info-label {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 4px;
}
.legal-info-box .info-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 12px;
}
.legal-info-box .info-value:last-child {
  margin-bottom: 0;
}
.legal-content {
  flex: 1;
  padding: 40px 48px;
  overflow-y: auto;
  background: #ffffff;
}
.legal-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid #e2e8f0;
}
.legal-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 16px;
  line-height: 1.3;
}
.legal-intro {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.4;
  max-width: 720px;
}
.legal-article {
  margin-bottom: 48px;
  scroll-margin-top: 24px;
}
.legal-article h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  line-height: 1.4;
}
.legal-article h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #cbd5e1;
  margin: 28px 0 12px;
  line-height: 1.4;
}
.article-content {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.35;
}
.article-content p {
  margin-bottom: 14px;
}
.article-content p:last-child {
  margin-bottom: 0;
}
.legal-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.legal-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: #f5f7fa;
  border-radius: 8px;
  margin-bottom: 8px;
  border-left: 3px solid var(--primary);
}
.legal-list li strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0C6496;
}
.legal-list li span {
  font-size: 0.875rem;
  color: #3d3d5c;
  line-height: 1.4;
}
.legal-list-simple {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.legal-list-simple li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.35;
}
.legal-list-simple li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.legal-list-simple li strong {
  color: #e2e8f0;
}
.info-table-wrap {
  margin: 20px 0;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.legal-table thead {
  background: #ffffff;
}
.legal-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  white-space: nowrap;
}
.legal-table td {
  padding: 14px 16px;
  color: #94a3b8;
  border-bottom: 1px solid #f1f5f9;
  line-height: 1.4;
}
.legal-table tbody tr:last-child td {
  border-bottom: none;
}
.legal-table tbody tr:hover {
  background: #ffffff;
}
.security-measures {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.measure-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.measure-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.measure-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}
.measure-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 6px;
}
.measure-content p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.contact-card {
  background: #f5f7fa;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}
.contact-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}
.contact-info p {
  font-size: 0.875rem;
  color: #3d3d5c;
  margin-bottom: 8px;
  line-height: 1.4;
}
.contact-info p:last-child {
  margin-bottom: 0;
}
.contact-info strong {
  color: #64748b;
  font-weight: 500;
}
.external-links-box {
  background: linear-gradient(135deg, #f5f3ff 0, #ede9fe 100%);
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}
.external-links-box h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0A3F76;
  margin-bottom: 16px;
}
.external-links-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.external-links-box li {
  margin-bottom: 10px;
}
.external-links-box li:last-child {
  margin-bottom: 0;
}
.external-links-box a {
  font-size: 0.875rem;
  color: #0A3F76;
  text-decoration: none;
  transition: color 0.2s ease;
}
.external-links-box a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
.version-history {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}
.version-history h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 16px;
}
.version-history ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.version-history li {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  font-size: 0.875rem;
  color: #94a3b8;
  border-bottom: 1px dashed #e2e8f0;
}
.version-history li:last-child {
  border-bottom: none;
}
.version-date {
  font-weight: 600;
  color: var(--primary);
  min-width: 90px;
}
@media (max-width: 1024px) {
  .slide-panel-legal {
    width: 100%;
    max-width: 100%;
  }
  .legal-sidebar {
    width: 220px;
    min-width: 220px;
    padding: 24px 16px;
  }
  .legal-content {
    padding: 32px;
  }
  .legal-header h1 {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .legal-panel-body {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
  .legal-sidebar {
    width: 100%;
    min-width: 100%;
    padding: 16px;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    max-height: none;
    overflow: visible;
  }
  .legal-toc {
    display: none;
  }
  .legal-info-box {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 0;
    padding: 14px 16px;
  }
  .legal-info-box .info-label {
    margin-bottom: 2px;
  }
  .legal-info-box .info-value {
    margin-bottom: 0;
  }
  .legal-content {
    padding: 20px 16px;
    overflow: visible;
  }
  .legal-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  .legal-header h1 {
    font-size: 1.375rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .legal-intro {
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .legal-article {
    margin-bottom: 28px;
  }
  .legal-article h2 {
    font-size: 1.125rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
    line-height: 1.35;
  }
  .legal-article h3 {
    font-size: 1rem;
    margin: 20px 0 10px;
    line-height: 1.35;
  }
  .article-content {
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .article-content p {
    margin-bottom: 10px;
  }
  .legal-list li {
    padding: 12px 14px;
    gap: 3px;
  }
  .legal-list li strong {
    font-size: 0.875rem;
  }
  .legal-list li span {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .legal-list-simple li {
    padding: 6px 0 6px 18px;
    font-size: 0.875rem;
    line-height: 1.35;
  }
  .legal-list-simple li::before {
    top: 13px;
    width: 5px;
    height: 5px;
  }
  .info-table-wrap {
    margin: 14px 0;
  }
  .legal-table {
    font-size: 0.8125rem;
  }
  .legal-table td,
  .legal-table th {
    padding: 10px 12px;
    line-height: 1.4;
  }
  .security-measures {
    gap: 12px;
    margin: 16px 0;
  }
  .measure-item {
    padding: 14px;
    gap: 12px;
  }
  .measure-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .measure-icon svg {
    width: 20px;
    height: 20px;
  }
  .measure-content h4 {
    font-size: 0.9375rem;
    margin-bottom: 4px;
  }
  .measure-content p {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 16px 0;
  }
  .contact-card {
    padding: 16px;
  }
  .contact-card h4 {
    font-size: 0.8125rem;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .contact-info p {
    font-size: 0.8125rem;
    margin-bottom: 6px;
    line-height: 1.4;
  }
  .external-links-box {
    padding: 16px;
    margin-top: 16px;
  }
  .external-links-box h4 {
    font-size: 0.875rem;
    margin-bottom: 12px;
  }
  .external-links-box li {
    margin-bottom: 8px;
  }
  .external-links-box a {
    font-size: 0.8125rem;
  }
  .version-history {
    margin-top: 20px;
    padding-top: 16px;
  }
  .version-history h4 {
    font-size: 0.8125rem;
    margin-bottom: 12px;
  }
  .version-history li {
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .version-date {
    min-width: auto;
  }
}
@media (max-width: 480px) {
  .legal-content {
    padding: 16px 14px;
  }
  .legal-header h1 {
    font-size: 1.25rem;
  }
  .legal-intro {
    font-size: 0.8125rem;
    line-height: 1.35;
  }
  .legal-article h2 {
    font-size: 1rem;
  }
  .legal-article h3 {
    font-size: 0.9375rem;
  }
  .article-content {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .article-content p {
    margin-bottom: 8px;
  }
  .legal-list li {
    padding: 10px 12px;
  }
  .legal-list li strong {
    font-size: 0.8125rem;
  }
  .legal-list li span {
    font-size: 0.75rem;
    line-height: 1.35;
  }
  .legal-list-simple li {
    font-size: 0.8125rem;
    line-height: 1.4;
    padding: 5px 0 5px 16px;
  }
  .legal-table td,
  .legal-table th {
    padding: 8px 10px;
    font-size: 0.75rem;
  }
  .measure-item {
    flex-direction: column;
    text-align: center;
  }
  .measure-icon {
    margin: 0 auto;
  }
  .measure-content h4 {
    font-size: 0.875rem;
  }
  .measure-content p {
    font-size: 0.75rem;
    line-height: 1.35;
  }
  .contact-card {
    padding: 14px;
  }
  .contact-info p {
    font-size: 0.75rem;
    line-height: 1.35;
  }
  .external-links-box {
    padding: 14px;
  }
  .external-links-box h4 {
    font-size: 0.8125rem;
  }
  .external-links-box a {
    font-size: 0.75rem;
  }
  .version-history li {
    font-size: 0.75rem;
  }
}
.header-detail {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(129, 140, 248, 0.2) 0%, transparent 60%),
    var(--gradient-hero);
}
.header-detail .nav-list a {
  color: rgba(255, 255, 255, 0.8);
}
.header-detail .nav-list a:hover {
  color: var(--primary);
}
.detail-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.detail-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(129, 140, 248, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(12, 100, 150, 0.15) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 90%, rgba(10, 63, 118, 0.1) 0%, transparent 40%),
    var(--gradient-hero);
  z-index: -1;
}
.detail-hero-bg::before {
  display: none;
}
.detail-hero-bg::after {
  display: none;
}
.detail-hero-content {
  max-width: 700px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.back-link:hover {
  color: var(--white);
  transform: translateX(-4px);
}
.back-link svg {
  width: 18px;
  height: 18px;
}
.detail-badge {
  display: inline-block;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.detail-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.detail-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}
.detail-content {
  padding: 80px 0;
  background: #ffffff !important;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.detail-visual {
  position: sticky;
  top: 100px;
}
.detail-image-wrapper {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid transparent;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 20px 60px transparent;
}
.detail-image {
  width: 100%;
  height: auto;
  display: block;
}
.detail-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 40px;
  background: #f8fafc;
  text-align: center;
}
.detail-image-placeholder svg {
  width: 64px;
  height: 64px;
  stroke: transparent;
  margin-bottom: 16px;
}
.detail-image-placeholder span {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.detail-image-placeholder p {
  font-size: 14px;
  color: var(--gray-400);
}
.detail-image-caption {
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
}
.detail-info {
  padding: 20px 0;
}
.detail-headline {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.detail-headline .highlight {
  background: linear-gradient(135deg, #0A3F76 0, #0C6496 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.detail-description {
  font-size: 16px;
  line-height: 1.35;
  color: var(--text-secondary);
  margin-bottom: 36px;
}
.detail-description strong {
  color: var(--text-primary);
}
.detail-features {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 32px;
}
.features-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid transparent;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0A3F76 0, #0C6496 100%);
  border-radius: 8px;
}
.feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
}
.feature-text {
  flex: 1;
}
.feature-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.feature-text span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.detail-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.detail-cta .btn {
  min-width: 180px;
}
.related-section {
  padding: 80px 0;
  background: #f5f7fa !important;
}
.related-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 48px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.related-card {
  display: block;
  padding: 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.related-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 20px 50px transparent;
}
.related-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    transparent 0,
    transparent 100%
  );
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.related-card:hover .related-icon {
  background: linear-gradient(135deg, #0A3F76 0, #0C6496 100%);
}
.related-icon svg {
  width: 28px;
  height: 28px;
  stroke: #0A3F76;
  transition: all 0.4s ease;
}
.related-card:hover .related-icon svg {
  stroke: var(--white);
}
.related-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.related-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.4;
}
.related-link {
  font-size: 14px;
  font-weight: 600;
  color: #0A3F76;
  transition: all 0.3s ease;
}
.related-card:hover .related-link {
  color: #0C6496;
}
@media (max-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .detail-visual {
    position: relative;
    top: 0;
  }
}
@media (max-width: 768px) {
  .detail-hero {
    padding: 120px 0 60px;
  }
  .detail-title {
    font-size: clamp(26px, 6vw, 36px);
  }
  .detail-subtitle {
    font-size: 16px;
  }
  .detail-content {
    padding: 48px 0;
  }
  .detail-headline {
    font-size: 24px;
  }
  .detail-description {
    font-size: 15px;
  }
  .detail-features {
    padding: 20px;
  }
  .features-list li {
    gap: 12px;
  }
  .feature-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }
  .feature-icon svg {
    width: 14px;
    height: 14px;
  }
  .feature-text strong {
    font-size: 14px;
  }
  .feature-text span {
    font-size: 13px;
  }
  .detail-cta {
    flex-direction: column;
  }
  .detail-cta .btn {
    width: 100%;
    min-width: auto;
  }
  .related-section {
    padding: 48px 0;
  }
  .related-title {
    font-size: 22px;
    margin-bottom: 32px;
  }
  .related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .related-card {
    padding: 24px;
  }
  .related-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  .related-icon svg {
    width: 24px;
    height: 24px;
  }
  .related-card h3 {
    font-size: 16px;
  }
  .related-card p {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .detail-hero {
    padding: 100px 0 48px;
  }
  .back-link {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .detail-badge {
    padding: 6px 12px;
    font-size: 11px;
  }
  .detail-title {
    font-size: 24px;
  }
  .detail-subtitle {
    font-size: 15px;
  }
  .detail-headline {
    font-size: 20px;
  }
  .detail-chips .chip {
    font-size: 12px;
    padding: 6px 12px;
  }
}
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.product-feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.product-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-feature-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.product-feature-card:hover::before {
  opacity: 0.1;
}
.product-feature-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  border-radius: 12px;
}
.product-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}
.product-feature-content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}
.product-feature-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px;
}
.product-feature-content p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-feature-arrow {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}
.product-feature-card:hover .product-feature-arrow {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1024px) {
  .product-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .product-feature-card {
    padding: 16px;
  }
  .product-feature-content p {
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .product-features-grid {
    margin-top: 24px;
  }
  .product-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .product-feature-icon svg {
    width: 22px;
    height: 22px;
  }
  .product-feature-content h4 {
    font-size: 14px;
  }
  .product-feature-content p {
    font-size: 12px;
  }
  .product-feature-arrow {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .case-logo-placeholder,
  .feature-box,
  .header,
  .hero-card,
  .modal-content,
  .visual-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  *,
  ::after,
  ::before {
    animation-duration: 0.3s !important;
    transition-duration: 0.2s !important;
  }
  .hero-shapes .shape,
  .shape,
  [class*="float"],
  [class*="glow"] {
    animation: none !important;
  }
  .case-card,
  .discount-card,
  .franchise-detail-item,
  .hero-card,
  .visual-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  }
  .case-card:hover,
  .discount-card:hover,
  .visual-card:hover {
    transform: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  ::after,
  ::before {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 768px) {
  .cases-sidebar {
    gap: 12px;
  }
  .cases-trust-box {
    padding: 20px 16px;
  }
  .cases-trust-box h4 {
    font-size: 1.125rem;
  }
  .cases-trust-box p {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .trust-badge {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }
  .trust-badge svg {
    width: 22px;
    height: 22px;
  }
  .cases-logos {
    padding: 16px;
  }
  .cases-logos h5 {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .logo-item {
    height: 36px;
  }
  .logo-item span {
    font-size: 0.625rem;
  }
  .cases-cta-banner {
    padding: 16px;
    border-radius: 12px;
  }
  .cases-cta-banner p {
    font-size: 0.875rem;
    margin-bottom: 12px;
  }
  .cases-cta-banner .btn {
    padding: 10px 16px;
    font-size: 0.875rem;
  }
  .cases-detail-section {
    padding-top: 32px;
  }
  .cases-detail-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }
  .cases-detail-item {
    padding: 16px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin: 0;
  }
  .detail-icon svg {
    width: 18px;
    height: 18px;
  }
  .detail-content h4 {
    font-size: 0.9375rem;
    margin-bottom: 4px;
  }
  .detail-content p {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .support-header {
    margin-bottom: 32px;
  }
  .support-title {
    font-size: 1.5rem !important;
  }
  .support-contact-box {
    padding: 20px;
  }
  .support-phone {
    font-size: 1.5rem !important;
  }
  .section-title {
    font-size: 1.5rem !important;
    line-height: 1.35;
  }
  .section-desc {
    font-size: 0.9375rem !important;
    line-height: 1.5;
  }
  .section-badge {
    font-size: 0.6875rem;
    padding: 5px 10px;
  }
  .btn {
    font-size: 0.875rem;
    padding: 10px 18px;
  }
  .btn-lg {
    font-size: 0.9375rem;
    padding: 12px 20px;
  }
  .btn svg {
    width: 16px;
    height: 16px;
  }
  .discount-card,
  .feature-box,
  .franchise-detail-item {
    padding: 16px !important;
  }
  h1 {
    font-size: 1.75rem !important;
  }
  h2 {
    font-size: 1.5rem !important;
  }
  h3 {
    font-size: 1.25rem !important;
  }
  h4 {
    font-size: 1rem !important;
  }
  li,
  p {
    line-height: 1.55;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-section {
    padding: 48px 0;
  }
  .hero-title {
    font-size: 1.625rem !important;
  }
  .hero-desc {
    font-size: 0.9375rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-cards {
    gap: 12px;
  }
  .hero-card {
    padding: 16px;
  }
  .hero-card h3 {
    font-size: 0.9375rem;
  }
  .hero-card p {
    font-size: 0.8125rem;
  }
}
@media (max-width: 480px) {
  .cases-trust-box h4 {
    font-size: 1rem;
  }
  .cases-cta-banner p {
    font-size: 0.8125rem;
  }
  .section-title {
    font-size: 1.375rem !important;
  }
  .hero-title {
    font-size: 1.5rem !important;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-section {
    padding: 36px 0;
  }
}
@media (max-width: 768px) {
  *,
  ::after,
  ::before {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .hero-shapes .shape,
  .shape,
  [class*="float"] {
    animation: none !important;
  }
  .case-card,
  .hero-card,
  .inventory-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  }
  :hover {
    transition-duration: 0.15s !important;
  }
  .hero-shapes,
  .shape-1,
  .shape-2,
  .shape-3 {
    display: none !important;
  }
  .modal-content,
  .panel-content,
  main {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: auto;
  }
  img {
    content-visibility: auto;
  }
}

/* =================================
   이미지 플레이스홀더 스타일
   ================================= */

/* 공통 플레이스홀더 스타일 */
.image-placeholder {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  display: none;
}

.placeholder-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
}

.placeholder-content svg {
  color: #64748b;
  opacity: 0.7;
}

.placeholder-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #94a3b8;
}

.placeholder-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

/* 히어로 이미지 영역 */
.hero-image-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-main-image {
  width: 100%;
  min-height: 350px;
  aspect-ratio: 4/3;
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-mini-cards .hero-card {
  padding: 16px;
}

.hero-mini-cards .hero-card-content h3 {
  font-size: 0.95rem;
}

/* 서비스 소개 이미지 영역 */
.service-main-image {
  width: 100%;
  min-height: 300px;
  aspect-ratio: 5/4;
  margin-bottom: 24px;
}

.visual-cards-row {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.visual-cards-row .visual-card {
  position: relative;
  animation: none;
}

/* 반응형 */
@media (max-width: 768px) {
  .hero-main-image {
    min-height: 250px;
  }
  
  .hero-mini-cards {
    grid-template-columns: 1fr;
  }
  
  .service-main-image {
    min-height: 200px;
  }
  
  .visual-cards-row {
    flex-wrap: wrap;
  }
}

/* ===== 페이지 팝업 (iframe) ===== */
.page-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.page-popup.active {
  opacity: 1;
  visibility: visible;
}
.page-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.page-popup-content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 90vh;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}
.page-popup.active .page-popup-content {
  transform: translateY(0) scale(1);
}
.page-popup-header {
  display: none;
}
.page-popup-title,
.page-popup-actions,
.page-popup-newtab {
  display: none;
}
.page-popup-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #0f172a;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.page-popup-close:hover {
  background: #ef4444;
  color: #fff;
  transform: scale(1.1);
}
.page-popup-body {
  flex: 1;
  overflow: hidden;
}
.page-popup-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 768px) {
  .page-popup { padding: 0; }
  .page-popup-content { max-width: 100%; height: 100vh; border-radius: 0; }
  .page-popup-header { padding: 12px 16px; }
}

/* ===== POS 전용 팝업 ===== */
.pos-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px 90px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.pos-popup.active { opacity: 1; visibility: visible; }
.pos-popup-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pos-popup-content {
  position: relative; width: 100%; max-width: 960px;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  overflow: visible;
}
.pos-popup.active .pos-popup-content {
  transform: translateY(0) scale(1);
}
.pos-popup-close {
  position: absolute; top: -16px; right: -16px; z-index: 20;
  width: 42px; height: 42px; border-radius: 50%;
  border: none; background: #fff;
  color: #0f172a; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all 0.2s ease;
}
.pos-popup-close:hover { background: #0f172a; color: #fff; transform: scale(1.1); }

/* 공통 외부 닫기 버튼 */
.popup-close-outer {
  position: absolute;
  top: -18px; right: -18px; z-index: 20;
  width: 44px; height: 44px; border-radius: 50%;
  border: none; background: #fff; color: #0f172a;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}
.popup-close-outer:hover {
  background: #0f172a; color: #fff; transform: scale(1.1);
}
/* 스크롤 내부 래퍼 */
.popup-scroll-inner {
  max-height: calc(90vh - 48px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  border-radius: 0;
}

/* 슬라이더 */
.pos-popup-slider {
  position: relative;
  border-radius: 16px; overflow: hidden;
  background: #0c1a2e;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.pp-slide { display: none; position: relative; }
.pp-slide.active { display: block; animation: ppFadeIn 0.45s ease; }
@keyframes ppFadeIn { from { opacity:0; transform:scale(0.98); } to { opacity:1; transform:scale(1); } }
.pp-slide img { width: 100%; display: block; }

/* 이미지 슬라이더 (슬라이드1 내부) */
.pp-img-slider {
  position: relative;
  max-width: 570px;
  margin: 0 auto;
}
.pp-img-slide {
  display: none;
}
.pp-img-slide.active {
  display: block;
  animation: ppFadeIn 0.4s ease;
}
.ppf-img-card {
  overflow: hidden;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.ppf-img-card img {
  width: 100%;
  display: block;
  border-radius: 16px 16px 0 0;
}
.ppf-img-label {
  text-align: center;
  padding: 14px 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}
.pp-img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(15,23,42,0.5);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s;
}
.pp-img-arrow:hover { background: rgba(15,23,42,0.75); }
.pp-img-prev { left: -50px; }
.pp-img-next { right: -50px; }
.pp-img-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding-bottom: 4px;
}
.pp-img-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.pp-img-dot.active { background: #888; transform: scale(1.2); }

/* 카드 슬라이드 */
/* 4번째 슬라이드: 4카드 레이아웃 */
.pp-feature-slide {
  background: #fff;
  padding: 28px 32px 32px;
}
.pp-slide-cards {
  padding: 16px 32px 20px;
}
.pp-slide-cards .ppf-title {
  color: #0f172a;
  text-align: left;
}
.ppf-title {
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: #0ea5e9;
  line-height: 1.4;
  margin: 0 0 28px;
}
.ppf-title span {
  color: #0ea5e9;
}
.ppf-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ppf-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  opacity: 0;
  transform: translateY(20px);
}
.pp-slide.active .ppf-card {
  animation: ppfCardIn 0.5s ease forwards;
}
.pp-slide.active .ppf-card:nth-child(1) { animation-delay: 0s; }
.pp-slide.active .ppf-card:nth-child(2) { animation-delay: 0.15s; }
.pp-slide.active .ppf-card:nth-child(3) { animation-delay: 0.3s; }
.pp-slide.active .ppf-card:nth-child(4) { animation-delay: 0.45s; }
@keyframes ppfCardIn {
  to { opacity: 1; transform: translateY(0); }
}
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.ppf-card:nth-of-type(1) { background: #0C6496; }
.ppf-card:nth-of-type(2) { background: #0A3F76; }
.ppf-card:nth-of-type(3) { background: #0A3F76; }
.ppf-card:nth-of-type(4) { background: #0C6496; }
.ppf-card:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
/* 상단 텍스트 */
.ppf-card-text {
  padding: 18px 22px 6px;
}
.ppf-card-text h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  margin-bottom: 6px;
}
.ppf-card-text h4 strong {
  font-weight: 800;
  color: #fff;
}
.ppf-card-text ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ppf-card-text ul li {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.ppf-card-text ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.5);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}
/* 하단 UI 일러스트 */
.ppf-card-ui {
  padding: 0 22px 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: auto;
  overflow: hidden;
}
.ppf-mini-app {
  width: 180px;
  height: 130px;
  background: #e8f0fe;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(4px);
  overflow: hidden;
  scale: 0.95;
  transform-origin: bottom right;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ppf-mini-header {
  padding: 8px 12px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.ppf-mini-header span {
  font-size: 0.65rem;
  font-weight: 700;
  color: #334155;
}
.ppf-mini-row {
  height: 8px;
  background: #f1f5f9;
  margin: 4px 12px;
  border-radius: 3px;
}
.ppf-mini-row.short { width: 55%; }
.ppf-mini-btn {
  margin: 4px 12px 8px;
  padding: 5px;
  background: #1e293b;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
}
/* 차트 바 */
.ppf-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 10px 12px 6px;
  height: 56px;
}
.ppf-bar {
  flex: 1;
  background: linear-gradient(180deg, #38bdf8, #0ea5e9);
  border-radius: 2px 2px 0 0;
  min-height: 6px;
}
/* 필드 */
.ppf-mini-field {
  margin: 1px 12px;
  padding: 1px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
}
.ppf-mini-field span {
  font-size: 0.58rem;
  color: #94a3b8;
}
/* 매출 총액 */
.ppf-mini-total {
  padding: 4px 12px 2px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
}
.ppf-mini-total small {
  font-size: 0.6rem;
  font-weight: 500;
  color: #64748b;
}

/* 콜아웃 */
.pp-callouts { position: absolute; inset: 0; pointer-events: none; }
.pp-callout {
  position: absolute; display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; background: rgba(14,165,233,0.92); color: #fff;
  font-size: 0.8rem; font-weight: 600; border-radius: 10px;
  white-space: nowrap; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: ppFloat 3s ease-in-out infinite;
}
.pp-callout::before { content:''; width:6px; height:6px; background:#fff; border-radius:50%; flex-shrink:0; }
@keyframes ppFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.pp-tl { top:10%; left:4%; animation-delay:0s; }
.pp-tr { top:10%; right:4%; animation-delay:0.4s; }
.pp-ml { top:45%; left:4%; animation-delay:0.8s; }
.pp-mr { top:45%; right:4%; animation-delay:1.2s; }
.pp-bl { bottom:15%; left:4%; animation-delay:0.6s; }
.pp-br { bottom:15%; right:4%; animation-delay:1s; }

/* 화살표 (외부) */
.pp-arrows {
  position: absolute;
  top: 0; left: -72px; right: -72px;
  height: 100%;
  pointer-events: none;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 5;
}
.pp-arrow {
  pointer-events: auto; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.pp-arrow:hover { background: rgba(255,255,255,0.3); transform: scale(1.15); }
.pp-arrow svg { width: 22px; height: 22px; }

/* 카운터 */
.pp-counter {
  position: absolute; top: 14px; right: 18px;
  background: rgba(0,0,0,0.5); color: #fff;
  padding: 4px 14px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 1px;
  z-index: 5; backdrop-filter: blur(4px);
}

/* 네비게이션 */
.pp-nav { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.pp-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #475569; border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.pp-dot.active { background: #0ea5e9; width: 36px; border-radius: 6px; }

/* 라벨 */
.pp-labels { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.pp-label {
  font-size: 0.72rem; font-weight: 600; color: #64748b;
  padding: 4px 12px; border-radius: 20px; cursor: pointer;
  transition: all 0.3s;
}
.pp-label.active { color: #0ea5e9; background: rgba(14,165,233,0.1); }

@media (max-width: 768px) {
  .popup-scroll-inner { border-radius: 0 !important; max-height: 70vh !important; }
  .pos-popup { padding: 6px 12px; }
  .pos-popup-close { top: -12px; right: -12px; width: 36px; height: 36px; }
  .pp-feature-slide { padding: 16px 16px 20px; }
  .ppf-title, .ppf-title span { font-size: 1.1rem !important; }
  .ppf-cards { grid-template-columns: 1fr; gap: 12px; }
  .ppf-card-text h4 { font-size: 0.82rem !important; }
  .ppf-card-slide { display: none !important; }
  .ppf-card-slide--active { display: flex !important; animation: ppfSlideIn 0.4s ease; }
  @keyframes ppfSlideIn { from { opacity:0; transform:translateX(10px); } to { opacity:1; transform:translateX(0); } }
  .ppf-card-dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
  .ppf-card-dot { width: 10px; height: 10px; border-radius: 50%; background: #ccc; cursor: pointer; transition: all 0.3s; border: none; }
  .ppf-card-dot--active { background: #0a3f76; transform: scale(1.2); }
  .ppf-mini-app { width: 130px; }
  .pp-callout { font-size: 0.68rem; padding: 6px 10px; }
  .pp-arrows { left: -24px; right: -24px; }
  .pp-arrow { width: 38px; height: 38px; background: rgba(0,0,0,0.35); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
  .pp-labels { display: none; }
}

/* ===== 무료체험 모바일 좌측정렬 ===== */
@media (max-width: 768px) {
  .modal-body ul {
    padding-left: 0;
  }
  .trial-benefits {
    text-align: left;
    padding: 12px 0;
  }
  .trial-benefits h4 {
    text-align: left;
    margin-bottom: 6px;
  }
  .trial-list {
    gap: 0 !important;
  }
  .trial-list li {
    justify-content: flex-start;
    gap: 4px;
  }
  .trial-list li svg {
    display: none;
  }
  .trial-list li::before {
    content: '·';
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
  }
}

/* ===== 키오스크 팝업 모바일 ===== */
.kd-mobile-wrap { display: none; }
@media (max-width: 768px) {
  .kd-card { display: none !important; }
  .kd-center { display: none !important; }
  .kd-mobile-wrap { display: block !important; }
  .kd-mobile-wrap .kd-m-slide { display: none; flex-direction: row; align-items: center; gap: 14px; }
  .kd-mobile-wrap .kd-m-slide.active { display: flex; }
  .kd-mobile-wrap .kd-m-slide > svg { order: -1; width: 180px; height: auto; flex-shrink: 0; align-self: flex-start; }
  .kd-m-slide[data-kd="1"] svg { width: 240px; }
  .kd-m-cards { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; width: calc(100% - 194px); }
  .kd-m-card {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-radius: 12px; background: #f1f5f9;
  }
  .kd-m-card strong { font-size: 1rem; line-height: 1.45; color: #0f172a; }
  .kd-m-card .kd-m-icon { width: 36px; height: 36px; min-width: 36px; }
  .kd-m-card .kd-m-icon svg { width: 100%; height: 100%; stroke: #0a3f76; fill: none; stroke-width: 1.5; }
  .kd-mobile-dots2 { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
  .kd-mobile-dot2 { width: 10px; height: 10px; border-radius: 50%; background: #ccc; cursor: pointer; transition: all 0.3s; border: none; }
  .kd-mobile-dot2.active { background: #0a3f76; transform: scale(1.2); }
}
@media (max-width: 480px) {
  .kd-mobile-wrap .kd-m-slide { flex-direction: column; gap: 10px; }
  .kd-mobile-wrap .kd-m-slide > svg { width: 150px !important; order: 0; margin: 0; display: block; align-self: flex-start; }
  .kd-m-slide[data-kd="1"] > svg { margin-left: -4px !important; }
  .kd-m-slide[data-kd="1"] .kd-m-cards { position: relative; left: -14px; }
  .kd-m-cards { width: 100% !important; }
  .kd-m-card { padding: 8px 12px; gap: 8px; }
  .kd-m-card strong { font-size: 0.78rem; }
  .kd-m-card .kd-m-icon { width: 28px; height: 28px; min-width: 28px; }
}

/* ===== Windows 팝업 모바일 슬라이더 ===== */
@media (max-width: 768px) {
  .win-popup-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .win-mobile-slider {
    position: relative;
    display: grid !important;
    grid-template-areas: "stack" !important;
  }
  .win-mobile-slide {
    grid-area: stack !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 14px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: none !important;
  }
  .win-mobile-slide--active {
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 2 !important;
    transition: none !important;
  }
  .win-mobile-slide--active .win-card-ui {
    order: 2 !important;
    width: 120px !important;
    max-width: 120px !important;
    margin-top: 0 !important;
    flex-shrink: 0;
  }
  .win-mobile-slide--active .win-card-text {
    flex: 1;
    order: 1;
  }
  .win-mobile-slide--active .win-card-desc br {
    display: none;
  }
  @keyframes winSlideIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
  }
  .win-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }
  .win-mobile-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
  }
  .win-mobile-dot--active {
    background: #0a3f76;
    transform: scale(1.2);
  }
}

/* ===== 재고카드 & 회원카드 모바일 순차 등장 ===== */
@media (max-width: 768px) {
  .inv-card.scroll-reveal,
  .member-card.scroll-reveal {
    opacity: 0 !important;
    transform: translateY(60px) !important;
    transition: opacity 0.6s ease, transform 0.6s ease !important;
  }
  .inv-card.scroll-reveal.revealed,
  .member-card.scroll-reveal.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .inv-card.scroll-reveal:nth-child(1),
  .member-card.scroll-reveal:nth-child(1) { transition-delay: 0.1s !important; }
  .inv-card.scroll-reveal:nth-child(2),
  .member-card.scroll-reveal:nth-child(2) { transition-delay: 0.25s !important; }
  .inv-card.scroll-reveal:nth-child(3),
  .member-card.scroll-reveal:nth-child(3) { transition-delay: 0.4s !important; }
  .inv-card.scroll-reveal:nth-child(4),
  .member-card.scroll-reveal:nth-child(4) { transition-delay: 0.55s !important; }
  .member-card.scroll-reveal:nth-child(n) { transition-delay: 0s !important; }
}

/* ===== 프랜차이즈 팝업 모바일 슬라이더 ===== */
@media (max-width: 768px) {
  .fc-popup__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fc-mobile-slider {
    position: relative;
    min-height: 280px;
  }
  .fc-mobile-slide {
    display: none;
    animation: fcSlideIn 0.4s ease;
  }
  .fc-mobile-slide--active {
    display: block;
  }
  @keyframes fcSlideIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
  }
  .fc-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }
  .fc-mobile-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
  }
  .fc-mobile-dot--active {
    background: #0a3f76;
    transform: scale(1.2);
  }
}

/* ===== Windows 관리 프로그램 팝업 ===== */
.win-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.win-popup.active { opacity: 1; visibility: visible; }
.win-popup-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.win-popup-content {
  position: relative; width: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 52px 52px 48px;
  overflow-y: auto;
  max-height: 90vh;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}
.win-popup.active .win-popup-content {
  transform: translateY(0) scale(1);
}
.win-popup-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}
.win-popup-close-outer {
  position: absolute;
  top: -16px; right: -16px; z-index: 20;
  width: 44px; height: 44px; border-radius: 50%;
  border: none; background: #fff; color: #0f172a;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
  opacity: 0;
}
.win-popup.active .win-popup-close-outer {
  opacity: 1;
}
.win-popup-close-outer:hover {
  background: #0f172a; color: #fff; transform: scale(1.1);
}
.win-popup-header {
  margin-bottom: 40px;
}
.win-popup-title {
  font-size: clamp(1.3rem, 2.8vw, 1.75rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.45;
  margin: 0;
}
.win-popup-close,
.kiosk-popup-close,
.mobile-popup-close {
  display: none;
}
.win-popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.win-popup-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  transition: all 0.3s ease;
  cursor: default;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.win-popup-card:nth-child(1) { background: #0C6496; }
.win-popup-card:nth-child(2) { background: #0A3F76; }
.win-popup-card:nth-child(3) { background: #0A3F76; }
.win-popup-card:nth-child(4) { background: #0C6496; }
.win-popup-card:hover {
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(56,119,210,0.3);
}
.win-card-text {
  position: relative;
  z-index: 1;
  flex: 1;
}
.win-card-desc {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.6;
  margin: 0 0 14px 0;
  letter-spacing: -0.01em;
}
.win-card-tags {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.win-card-tags span {
  display: block;
  position: relative;
  padding: 6px 0 6px 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2px;
  line-height: 1.5;
}
.win-card-tags span::before {
  display: none;
}
.win-card-ui {
  align-self: flex-end;
  margin-top: 12px;
  width: 65%;
  max-width: 180px;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.win-popup-card:hover .win-card-ui {
  opacity: 1;
  transform: translateY(-2px);
}
.win-card-ui svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
}
@media (max-width: 768px) {
  .win-popup { padding: 16px; }
  .win-popup-content { padding: 32px 24px 28px; border-radius: 16px; }
  .win-popup-title, .win-popup-title span { font-size: 1.1rem !important; line-height: 1.5; }
  .win-popup-grid { grid-template-columns: 1fr; gap: 14px; }
  .win-popup-close-outer { top: -18px; right: -18px; width: 38px; height: 38px; }
  .win-popup-card { padding: 16px !important; min-height: auto !important; flex-direction: row !important; flex-wrap: nowrap !important; align-items: center !important; gap: 14px !important; }
  .win-card-ui { order: -1 !important; width: 120px !important; max-width: 120px !important; margin-top: 0 !important; flex-shrink: 0; align-self: center !important; }
  .win-card-text { flex: 1; }
  .win-card-desc { font-size: 0.82rem; }
  .win-card-desc br { display: none; }
  .win-card-tags span { font-size: 0.62rem !important; padding: 3px 7px !important; }
}

/* ===== 키오스크 팝업 ===== */
.kiosk-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.kiosk-popup.active { opacity: 1; visibility: visible; }
.kiosk-popup-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}
.kiosk-popup-content {
  position: relative; width: 100%; max-width: 900px;
  max-height: 90vh;
  background: #fff; border-radius: 24px;
  padding: 44px 48px 40px;
  overflow: visible;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);
}
.kiosk-popup.active .kiosk-popup-content {
  transform: translateY(0) scale(1);
}
.kiosk-popup-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 20px;
  margin-bottom: 40px;
}
.kiosk-popup-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800; color: #0f172a;
  line-height: 1.35; margin: 0 0 10px;
}
.kiosk-popup-sub {
  font-size: 0.95rem; color: #64748b;
  line-height: 1.6; margin: 0;
}
.kiosk-popup-close {
  flex-shrink: 0; width: 44px; height: 44px;
  border: none; background: transparent;
  color: #334155; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; transition: all 0.2s;
}
.kiosk-popup-close:hover { background: #f1f5f9; color: #0f172a; }

/* 다이어그램 */
.kiosk-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 6px;
  align-items: center;
  justify-items: center;
  margin-bottom: 0;
  padding: 20px 16px;
  background: linear-gradient(145deg, #f8fafc 0%, #f0f4f8 50%, #eef2ff 100%);
  border-radius: 20px;
  position: relative;
  margin: 0 auto;
}
/* 말풍선 꼬리 */
.kd-card::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  background: #fff;
  border: 1px solid #0ea5e9;
  transform: rotate(45deg);
  z-index: 1;
}
.kd-top::after {
  bottom: -7px; left: 50%; margin-left: -6px;
  border-top: none; border-left: none;
}
.kd-bottom::after {
  top: -7px; left: 50%; margin-left: -6px;
  border-bottom: none; border-right: none;
}
.kd-left::after {
  right: -7px; top: 50%; margin-top: -6px;
  border-bottom: none; border-left: none;
}
.kd-right::after {
  left: -7px; top: 50%; margin-top: -6px;
  border-top: none; border-right: none;
}
.kd-card {
  background: #fff;
  border: 1px solid #0ea5e9;
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
  min-width: 160px;
  transition: all 0.3s ease;
  position: relative;
  cursor: default;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.kd-card:hover {
  background: #fff;
  border-color: #0ea5e9;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(14,165,233,0.12);
  z-index: 50;
}
.kd-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px; height: 32px;
  margin: 0 auto 6px;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  border-radius: 10px;
}
.kd-card-icon svg {
  width: 22px; height: 22px;
  stroke: #0c6496;
  stroke-width: 1.8;
  fill: none;
}
.kd-card strong {
  font-size: 0.75rem; font-weight: 700;
  color: #0f172a; line-height: 1.35;
}
/* 카드 호버 툴팁 */
.kd-tooltip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 280px;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.78rem;
  line-height: 1.6;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
  z-index: 30;
  text-align: left;
}
.kd-tooltip::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
}
/* 상단/좌측 카드: 툴팁 아래로 */
.kd-top .kd-tooltip,
.kd-left .kd-tooltip {
  top: calc(100% + 12px);
}
.kd-top .kd-tooltip::before,
.kd-left .kd-tooltip::before {
  bottom: 100%;
  border-bottom-color: #0f172a;
}
/* 우측/하단 카드: 툴팁 위로 */
.kd-right .kd-tooltip,
.kd-bottom .kd-tooltip {
  bottom: calc(100% + 12px);
}
.kd-right .kd-tooltip::before,
.kd-bottom .kd-tooltip::before {
  top: 100%;
  border-top-color: #0f172a;
}
.kd-card:hover .kd-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* 좌측 카드 툴팁 좌정렬 */
.kd-left .kd-tooltip {
  left: 0; transform: translateX(0) translateY(6px);
}
.kd-left:hover .kd-tooltip { transform: translateX(0) translateY(0); }
.kd-left .kd-tooltip::before { left: 40px; transform: none; }
/* 우측 카드 툴팁 우정렬 */
.kd-right .kd-tooltip {
  left: auto; right: 0; transform: translateX(0) translateY(6px);
}
.kd-right:hover .kd-tooltip { transform: translateX(0) translateY(0); }
.kd-right .kd-tooltip::before { left: auto; right: 40px; transform: none; }
.kd-top { grid-column: 2; grid-row: 1; transform: translateY(8px); }
.kd-top:hover { transform: translateY(5px); }
.kd-left { grid-column: 1; grid-row: 2; transform: translateX(5px); }
.kd-left:hover { transform: translateX(5px) translateY(-3px); }
.kd-right { grid-column: 3; grid-row: 2; transform: translateX(-80px); }
.kd-right:hover { transform: translateX(-80px) translateY(-3px); }
.kd-bottom { grid-column: 2; grid-row: 3; transform: translateY(10px); }
.kd-bottom:hover { transform: translateY(7px); }

/* 중앙 기기 일러스트 */
.kd-center {
  grid-column: 2; grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.kd-devices-svg {
  width: 340px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.12));
}

/* 4대 핵심 포인트 */
.kiosk-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.kiosk-point {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}
.kiosk-point:hover {
  border-color: #0ea5e9;
  box-shadow: 0 8px 24px rgba(14,165,233,0.08);
  transform: translateY(-3px);
}
.kiosk-point-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: #0ea5e9; color: #fff;
  border-radius: 8px; font-size: 0.72rem;
  font-weight: 800; margin-bottom: 10px;
}
.kiosk-point h4 {
  font-size: 0.95rem; font-weight: 700;
  color: #0f172a; margin-bottom: 8px; line-height: 1.4;
}
.kiosk-point p {
  font-size: 0.82rem; color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .kiosk-popup { padding: 12px; }
  .kiosk-popup-content { padding: 28px 20px 24px; border-radius: 18px; }
  .kiosk-popup-title, .kiosk-popup-title span { font-size: 1.1rem !important; text-align: left !important; }
  .kiosk-popup-sub { font-size: 0.78rem !important; }
  .kiosk-diagram { grid-template-columns: 1fr; grid-template-rows: auto; gap: 12px; }
  .kd-top, .kd-left, .kd-right, .kd-bottom, .kd-center {
    grid-column: 1; grid-row: auto;
  }
  .kd-card { min-width: auto; }
  .kiosk-points { grid-template-columns: 1fr; }
}

/* ===== 모바일 앱 팝업 ===== */
.mobile-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-popup.active { opacity: 1; visibility: visible; }
.mobile-popup-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}
.mobile-popup-content {
  position: relative; width: 100%; max-width: 880px;
  background: #fff; border-radius: 24px;
  padding: 44px 48px 40px;
  overflow: visible;
  margin: 0 20px;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);
}
.mobile-popup.active .mobile-popup-content {
  transform: translateY(0) scale(1);
}
.mobile-popup-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 20px;
  margin-bottom: 36px;
}
.mobile-popup-title {
  font-size: 1.55rem;
  font-weight: 800; color: #0f172a;
  line-height: 1.35; margin: 0 0 10px;
}
.mobile-popup-sub {
  font-size: 0.92rem; color: #64748b;
  line-height: 1.6; margin: 0;
}
.mobile-popup-close-outer {
  position: absolute;
  top: -16px; right: -35px; z-index: 20;
  width: 44px; height: 44px; border-radius: 50%;
  border: none; background: #fff; color: #0f172a;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}
.mobile-popup-close-outer:hover {
  background: #0f172a; color: #fff;
  transform: scale(1.1);
}
.mobile-popup-content-wrap { position: relative; width: 100%; max-width: 880px; margin: 0 20px; }
.mobile-popup-close {
  flex-shrink: 0; width: 44px; height: 44px;
  border: none; background: transparent;
  color: #334155; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; transition: all 0.2s;
}
.mobile-popup-close:hover { background: #f1f5f9; color: #0f172a; }

/* 모바일 스크린샷 영역 (계단식) */
.mobile-popup-screens {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
}
.mobile-popup-screens .mobile-phone:nth-child(1) { margin-top: 0; }
.mobile-popup-screens .mobile-phone:nth-child(2) { margin-top: 40px; }
.mobile-popup-screens .mobile-phone:nth-child(3) { margin-top: 80px; }
.mobile-popup-screens .mobile-phone:nth-child(4) { margin-top: 120px; }

/* 폰 프레임 */
.mobile-phone {
  width: 150px;
  background: #1e293b;
  border-radius: 22px;
  padding: 8px 7px 12px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}
.mobile-phone:hover {
  transform: translateY(-6px);
  z-index: 5;
}

/* 호버 툴팁 */
.mp-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 260px;
  background: #0f172a;
  color: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
  z-index: 20;
}
.mp-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #0f172a;
}
/* 좌측 폰: 툴팁 오른쪽 정렬 */
.mobile-popup-screens .mobile-phone:nth-child(1) .mp-tooltip {
  left: 0; right: auto;
  transform: translateX(0) translateY(8px);
}
.mobile-popup-screens .mobile-phone:nth-child(1) .mp-tooltip::after {
  left: 30px; transform: none;
}
.mobile-popup-screens .mobile-phone:nth-child(1):hover .mp-tooltip {
  transform: translateX(0) translateY(0);
}
/* 우측 폰: 툴팁 왼쪽 정렬 */
.mobile-popup-screens .mobile-phone:nth-child(4) .mp-tooltip {
  left: auto; right: 0;
  transform: translateX(0) translateY(8px);
}
.mobile-popup-screens .mobile-phone:nth-child(4) .mp-tooltip::after {
  left: auto; right: 30px; transform: none;
}
.mobile-popup-screens .mobile-phone:nth-child(4):hover .mp-tooltip {
  transform: translateX(0) translateY(0);
}
.mobile-phone:hover .mp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mp-tooltip strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 6px;
}
.mp-tooltip p {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0;
}
.mobile-phone-notch {
  width: 50px; height: 5px;
  background: #0f172a;
  border-radius: 4px;
  margin: 0 auto 6px;
}
.mobile-phone-screen {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mobile-phone-screen img {
  width: 100%;
  height: auto;
  display: block;
}

/* 화면 내부 UI */
.mp-header {
  padding: 10px 12px;
  background: linear-gradient(135deg, #4f6ef7, #6c8cff);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

/* 차트 */
.mp-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 12px 12px 8px;
  height: 100px;
}
.mp-bar {
  flex: 1;
  background: linear-gradient(180deg, #6c8cff, #4f6ef7);
  border-radius: 3px 3px 0 0;
  min-height: 10px;
}
.mp-total {
  padding: 4px 12px 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}
.mp-total span {
  font-size: 0.7rem;
  font-weight: 500;
  color: #64748b;
}
.mp-row {
  height: 10px;
  background: #f1f5f9;
  margin: 4px 12px;
  border-radius: 3px;
}
.mp-row.short { width: 60%; }

/* 리스트 바 */
.mp-list {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.mp-list-bar {
  height: 18px;
  background: linear-gradient(90deg, #6c8cff, #a5b4fc);
  border-radius: 4px;
}

/* 상품 조회 (2번 화면) */
.mp-scan {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 12px 6px;
  gap: 4px;
}
.mp-scan-label {
  font-size: 0.6rem;
  color: #64748b;
  font-weight: 600;
}
.mp-product-card {
  display: flex;
  gap: 8px;
  padding: 6px 12px;
  align-items: center;
}
.mp-product-thumb {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: #e0f2fe;
  flex-shrink: 0;
}
.mp-product-info { flex: 1; }
.mp-product-name {
  height: 8px; width: 70%;
  background: #e2e8f0;
  border-radius: 3px;
  margin-bottom: 4px;
}
.mp-product-price {
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f172a;
}
.mp-product-price span {
  font-size: 0.55rem;
  font-weight: 500;
  color: #64748b;
}
.mp-product-stock {
  font-size: 0.55rem;
  color: #64748b;
}
.mp-product-stock strong { color: #4f6ef7; }

/* 할인/가격 설정 (3번 화면) */
.mp-discount {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.mp-discount-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  background: #f8fafc;
  border-radius: 8px;
}
.mp-discount-left { flex: 1; }
.mp-discount-name {
  height: 7px; width: 60%;
  background: #e2e8f0;
  border-radius: 3px;
  margin-bottom: 3px;
}
.mp-discount-desc {
  font-size: 0.55rem;
  font-weight: 600;
  color: #4f6ef7;
}
.mp-toggle {
  width: 28px; height: 16px;
  border-radius: 8px;
  background: #cbd5e1;
  position: relative;
  flex-shrink: 0;
}
.mp-toggle::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  top: 2px; left: 2px;
  transition: left 0.2s;
}
.mp-toggle.on {
  background: #4f6ef7;
}
.mp-toggle.on::after {
  left: 14px;
}

/* 매출 리포트 (4번 화면) */
.mp-report {
  padding: 8px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mp-report-summary {
  display: flex;
  gap: 6px;
}
.mp-report-box {
  flex: 1;
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}
.mp-report-label {
  font-size: 0.5rem;
  color: #64748b;
  font-weight: 600;
}
.mp-report-value {
  font-size: 0.7rem;
  font-weight: 800;
  color: #0f172a;
}
.mp-report-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mp-report-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 8px;
  background: #f8fafc;
  border-radius: 6px;
  font-size: 0.55rem;
  font-weight: 600;
  color: #334155;
}
.mp-amount { color: #4f6ef7; font-weight: 700; }
.mp-report-row.mp-out .mp-amount { color: #ef4444; }

/* 테이블 */
.mp-table {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.mp-table-row {
  height: 14px;
  background: #f1f5f9;
  border-radius: 3px;
  border-bottom: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
  .mobile-popup { padding: 20px; }
  .mobile-popup-content { padding: 24px 18px 20px; border-radius: 18px; max-height: 85vh; overflow-y: auto !important; margin: 0 !important; }
  .mobile-popup-close-outer { top: -19px; right: -10px; width: 38px; height: 38px; }
  .mobile-popup-title, .mobile-popup-title span { font-size: 1rem !important; text-align: left !important; }
  .mobile-popup-title { padding-left: 0 !important; }
  .mobile-popup .popup-scroll-inner { overflow: visible !important; max-height: none !important; }
  .mobile-popup-content { overflow-y: auto !important; overflow-x: visible !important; }
  .mobile-popup-screens { overflow: visible !important; }
  .mobile-phone { overflow: visible !important; }
  .mp-tooltip {
    position: absolute !important;
    bottom: calc(100% + 10px) !important;
    left: 50% !important;
    top: auto !important;
    transform: translateX(-50%) translateY(6px) !important;
    opacity: 0 !important;
    width: 160px !important;
    font-size: 0.65rem !important;
    padding: 8px 10px !important;
    z-index: 99999 !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25) !important;
  }
  .mp-tooltip::after { display: none !important; }
  .mobile-phone:hover .mp-tooltip {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
  }
  .mp-tooltip strong { font-size: 0.68rem !important; }
  .mp-tooltip p { font-size: 0.6rem !important; margin-top: 3px !important; }
  .mobile-popup-screens { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 320px; margin: 0 auto; }
  .mobile-phone { width: auto; }
  .mobile-phone-screen { height: auto; }
  .mobile-popup-screens .mobile-phone:nth-child(1),
  .mobile-popup-screens .mobile-phone:nth-child(2),
  .mobile-popup-screens .mobile-phone:nth-child(3),
  .mobile-popup-screens .mobile-phone:nth-child(4) { margin-top: 0; }
}
@media (max-width: 480px) {
  .mobile-popup { padding: 12px !important; }
  .mobile-popup-content { border-radius: 16px !important; padding: 16px 14px !important; max-height: 85vh; overflow-y: auto !important; margin: 0 !important; }
  .mobile-popup .popup-scroll-inner { max-height: none !important; overflow: visible !important; }
  .mobile-popup-header { margin-bottom: 14px; }
  .mobile-popup-title { font-size: 0.85rem !important; }
  .mobile-popup-sub { font-size: 0.75rem !important; }
  .mobile-popup-close-outer { top: -17px; right: -8px; width: 34px; height: 34px; }
  .mobile-popup-close-outer svg { width: 14px; height: 14px; }
  .mobile-popup-screens { gap: 6px; max-width: 220px; }
  .mobile-phone { border-radius: 16px !important; padding: 6px 5px 8px !important; }
}

/* =========================================================
   반응형 보강 — 481~767px 중간 구간 (큰 폰 / 작은 태블릿)
   기존 CSS는 이 구간에 분기가 없어 데스크톱 룰이 적용되어 깨졌음.
   ========================================================= */
@media (min-width: 481px) and (max-width: 767px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  /* 다단 그리드는 1~2열로 강제 */
  .pm-layout,
  .cases-content,
  .support-content,
  .contact-wrapper {
    grid-template-columns: 1fr !important;
  }
  /* 사이드바 자식들이 한 줄에 하나씩 자연스럽게 wrap */
  .cases-sidebar,
  .support-sidebar,
  .contact-info-area {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .cases-sidebar > *,
  .support-sidebar > *,
  .contact-info-area > * {
    flex: 1 1 100%;
    min-width: 0;
  }
  /* 히어로 패딩 축소 */
  .hero-slide-content {
    padding: 100px 40px 80px;
  }
  /* 데코 도형이 화면을 압도하지 않도록 */
  .shape-1,
  .shape-2,
  .shape-3 {
    opacity: 0.5;
    transform: scale(0.7);
  }
  /* 헤딩 크기 한 단계 축소 */
  .section-title,
  .cases-title,
  .support-title,
  .contact-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}

/* =========================================================
   반응형 보강 — 380px 이하 (작은 폰: SE 1세대 등)
   ========================================================= */
@media (max-width: 380px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero-slide-content {
    padding: 80px 16px 60px;
  }
  .hero-slide-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .hero-slide-desc {
    font-size: 0.9rem;
  }
  .section-title,
  .cases-title,
  .support-title,
  .contact-title {
    font-size: 1.3rem;
  }
  /* 가로 스크롤 방지 안전장치 */
  body {
    overflow-x: hidden;
  }
}
