/* ============================================================
   CSCAM LMS (LMS.cscam.kr) — LMS_new01 design system
   Adapted from the cnc_new5 design system, which was itself built to
   match the tone/method of the CSCAM 3D PRINTER division site
   (kookai2026.github.io/cscam-homepage/sites/3dprinter)
   — dark navy hero, JetBrains Mono eyebrow labels, Space Grotesk
   display type, numbered section system, spec-card product grids.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+KR:wght@300;400;500;700;900&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap");

:root {
  --navy: #0d1e3d;
  --navy-2: #0a1730;
  --blue: #1e5aa8;
  --blue-dark: #154078;
  --blue-bright: #2196f3;
  --blue-sky: #7fd3ff;
  --blue-050: #eaf3fc;
  --blue-100: #cce0f5;
  --blue-200: #bbdefb;
  --orange: #e0793c;
  --orange-050: #fdf1e9;
  --ink: #212121;
  --body: #424242;
  --muted: #757575;
  --border: #e2e6ec;
  --bg-alt: #fafbfc;
  --bg-alt2: #f2f5f9;
  --white: #ffffff;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 10px rgba(13, 30, 61, 0.06);
  --shadow-md: 0 10px 30px rgba(13, 30, 61, 0.14);
  --container: 1320px;
  --header-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--header-h) + 32px + 20px); }
body {
  margin: 0;
  font-family: "Inter", "Noto Sans KR", -apple-system, sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p { margin: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) { .container { padding: 0 18px; } }
@media (max-width: 480px) { .container { padding: 0 16px; } }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { display: block; line-height: 1.25; }
.logo small {
  display: block; font-family: "Inter", "Noto Sans KR", sans-serif; font-size: 10px; font-weight: 500;
  color: var(--muted); letter-spacing: .04em; margin-bottom: 2px;
}
.logo .logo-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  color: var(--blue);
  letter-spacing: -.01em;
}
.logo span { font-weight: 400; }
.gnb { display: flex; gap: 30px; }
.gnb a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.gnb a:hover, .gnb a.active { color: var(--blue); border-color: var(--blue); }
.header-right { display: flex; align-items: center; gap: 14px; }
.header-utility { display: flex; align-items: center; gap: 10px; }
.brand-wordmark { display: flex; align-items: baseline; font-family: Verdana, "Noto Sans KR", sans-serif; font-size: 23px; color: var(--blue); }
.brand-wordmark b { font-weight: 700; }
.brand-wordmark span { font-weight: 400; }
.brand-divider { width: 1px; height: 36px; background: var(--border); margin: 0 4px; }
.header-utility .lang-switch { margin-left: 0; }
.lang-switch { display: flex; align-items: center; gap: 6px; margin-left: 22px; font-size: 12.5px; font-weight: 700; letter-spacing: .02em; }
.lang-switch a { color: var(--muted); }
.lang-switch a.active { color: var(--blue); }
.lang-switch .lang-sep { color: var(--border); }
@media (max-width: 900px) { .lang-switch { margin-left: 12px; } }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header-spacer { height: calc(var(--header-h) + 32px); width: 100%; }

/* ---------------- Breadcrumb ---------------- */
.breadcrumb { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 14px 0; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { margin: 0 8px; color: #cfd8dc; }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

/* ---------------- Eyebrow / numbered section label ---------------- */
.eyebrow {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before { content: ""; flex-shrink: 0; width: 24px; height: 1px; background: var(--blue); }
.eyebrow.on-dark { color: var(--blue-sky); }
.eyebrow.on-dark::before { background: var(--blue-sky); }

.section-badge {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--blue);
  background: var(--blue-050);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.section-title { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.15; letter-spacing: -.02em; color: var(--ink); margin: 12px 0 14px; }
.section-desc { color: var(--muted); font-size: 15px; max-width: 700px; line-height: 1.75; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  height: 815px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../img/hero-full.jpg");
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.hero-grid-overlay {
  position: absolute; inset: -40px; z-index: 1; opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 46px 46px;
}
.hero-scanline {
  position: absolute; top: -5%; bottom: -5%; width: 2px; left: 10%; z-index: 1;
  background: linear-gradient(180deg, transparent, var(--blue-sky) 45%, var(--blue-sky) 55%, transparent);
  box-shadow: 0 0 30px 8px rgba(127, 211, 255, .45);
  animation: scan 4.4s ease-in-out infinite;
}
@keyframes scan { 0%, 100% { left: 8%; } 50% { left: 90%; } }
.hero-scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(100deg, rgba(13,30,61,.93) 0%, rgba(13,30,61,.68) 38%, rgba(13,30,61,.32) 65%, rgba(13,30,61,.06) 100%);
}
.hero .container { position: relative; z-index: 3; width: 100%; padding-top: 60px; padding-bottom: 60px; }
.hero-row { display: flex; align-items: flex-start; gap: 40px; }
.hero-inner { max-width: 640px; flex: 1 1 auto; }
.hero-video {
  position: relative; z-index: 3; flex: 0 0 auto;
  width: 520px; max-width: 48vw;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(127,196,255,.35);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  margin-top: 95px;
}
.hero-video video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  /* 배경 사진과 톤을 맞추기 위해 채도/명도를 살짝 눌러줌(영상만 튀어 보이지 않도록) */
  filter: saturate(1.05) contrast(1.05) brightness(.92);
}
.hero-video::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  /* 배경과 동일한 네이비 톤을 살짝 얹어(멀티플라이) 영상 색감을 주변과 자연스럽게 융화시킴 */
  background: linear-gradient(165deg, rgba(13,30,61,.34) 0%, rgba(10,23,48,.1) 45%, rgba(13,30,61,.32) 100%);
  mix-blend-mode: multiply;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.hero-video .hero-video-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 8px 12px;
  font-family: "JetBrains Mono", monospace; font-size: 10.5px; letter-spacing: .05em; color: #cfe8ff;
  background: linear-gradient(0deg, rgba(13,30,61,.85), transparent);
}
@media (max-width: 1100px) {
  .hero-row { flex-direction: column; align-items: stretch; gap: 0; }
  .hero-video { align-self: center; margin: 28px auto 0; width: 100%; max-width: 440px; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: #cfe8ff; margin-bottom: 24px;
}
.hero-badge span {
  padding: 4px 10px; border: 1px solid rgba(127,196,255,.4); border-radius: 3px;
  color: #cfe8ff; background: rgba(127,196,255,.08);
}
.hero-kicker { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-style: italic; font-weight: 600; font-size: clamp(16px, 3vw, 22px); color: var(--blue-bright); margin-bottom: 10px; }
.hero h1 { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: clamp(26px, 4.6vw, 50px); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--blue-sky); }
.hero h1 .nowrap { white-space: nowrap; }
.hero p.lede { color: #b8c4d9; font-size: 15px; max-width: 540px; margin-bottom: 30px; line-height: 1.75; }
.hero-links { display: flex; flex-direction: column; gap: 12px; max-width: 480px; }
.hero-link {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: var(--radius-md);
  border: 1px solid rgba(33,150,243,.4); background: rgba(33,150,243,.08);
  transition: all .2s ease;
}
.hero-link:hover { border-color: var(--blue-bright); background: rgba(33,150,243,.18); transform: translateX(4px); }
.hero-link .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; background: var(--blue-bright); }
.hero-link b { display: block; font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: 15px; color: var(--white); }
.hero-link small { display: block; font-family: "JetBrains Mono", monospace; font-size: 10.5px; color: #cfe8ff; letter-spacing: .03em; margin-top: 2px; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-chips a {
  font-family: "JetBrains Mono", monospace; font-size: 11px; font-weight: 600; letter-spacing: .05em;
  color: #cfe8ff; border: 1px solid rgba(127,196,255,.3); padding: 7px 14px; border-radius: 999px;
  transition: all .2s ease;
}
.hero-chips a:hover { background: rgba(127,196,255,.12); border-color: var(--blue-sky); }

/* ---------------- Section wrappers ---------------- */
.section { padding: 64px 0; }
.section.alt { background: var(--bg-alt); }
.section.alt2 { background: var(--bg-alt2); }
.section.dark { background: var(--navy); color: var(--white); }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ---------------- 01 사업소개: intro cards ---------------- */
.intro-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.intro-card {
  background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--blue);
  border-radius: var(--radius-md); padding: 30px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .18s, box-shadow .18s;
}
.intro-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.intro-card .row-top { display: flex; justify-content: space-between; align-items: center; }
.intro-card .num-chip {
  font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: .14em; font-weight: 700;
  background: var(--blue-050); color: var(--blue); padding: 4px 10px; border-radius: var(--radius-sm);
}
.intro-card .meta { font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: .1em; color: var(--muted); }
.intro-card h3 { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-style: italic; font-size: 23px; color: var(--ink); }
.intro-card .sub { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .05em; color: var(--muted); }
.intro-card p { font-size: 13.5px; color: var(--body); line-height: 1.75; }
.intro-card .go { font-size: 13px; font-weight: 700; color: var(--blue); margin-top: auto; }

/* ---------------- Category section / product spec-card grid ---------------- */
.cat-section { padding: 96px 0; border-top: 1px solid var(--border); }
.cat-section:nth-of-type(even) { background: var(--bg-alt); }
.cat-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 44px; }

.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.spec-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.spec-grid.cols-1 { grid-template-columns: minmax(0, 420px); }
.spec-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column; transition: all .18s;
}
.spec-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.spec-card .thumb {
  position: relative; aspect-ratio: 4/3.1;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-alt2) 100%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.spec-card .thumb .tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: "JetBrains Mono", monospace; font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 3px; background: var(--blue); color: var(--white);
}
.spec-card .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.spec-card .body { padding: 22px 22px 8px; flex: 1; }
.spec-card .body h3 { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-style: italic; font-size: 21px; color: var(--blue); letter-spacing: -.01em; margin-bottom: 8px; }
.spec-card .body p { font-size: 13px; color: var(--body); line-height: 1.7; }
.spec-card .body p strong { color: var(--ink); }
.spec-card .actions { display: flex; gap: 4px; padding: 16px 12px 16px; margin-top: 12px; }
.spec-card .actions a { flex: 1; text-align: center; padding: 9px 4px; font-size: 12px; font-weight: 700; color: var(--blue); background: var(--blue-050); border-radius: 3px; transition: background .15s; }
.spec-card .actions a:hover { background: var(--blue-100); }
.spec-card .actions a.primary { background: var(--blue); color: var(--white); }
.spec-card .actions a.primary:hover { background: var(--blue-dark); }

/* Flat gallery grid (EtherCAT modules) */
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.gallery-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px; text-align: center; }
.gallery-item span { font-size: 12px; font-weight: 700; color: var(--body); font-family: "JetBrains Mono", monospace; letter-spacing: .01em; }
.diagram-frame { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; text-align: center; margin-bottom: 28px; }
.diagram-frame img { margin: 0 auto; }

/* ---------------- Product detail hero ---------------- */
.detail-hero { background: var(--navy); color: var(--white); padding: 130px 0 60px; position: relative; overflow: hidden; }
.detail-hero .grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.detail-hero .chip {
  display: inline-block; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: #cfe8ff; background: rgba(127,196,255,.12); border: 1px solid rgba(127,196,255,.35);
  padding: 5px 12px; border-radius: 3px; margin-bottom: 18px;
}
.detail-hero h1 { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: clamp(24px, 3vw, 34px); line-height: 1.25; margin-bottom: 14px; letter-spacing: -.01em; }
.detail-hero .lede { color: #b8c4d9; font-size: 15px; margin-bottom: 20px; line-height: 1.7; }
.detail-hero ul.bullets { display: flex; flex-direction: column; gap: 10px; }
.detail-hero ul.bullets li { position: relative; padding-left: 20px; font-size: 13.5px; color: rgba(255,255,255,.85); }
.detail-hero ul.bullets li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-sky); }
.detail-hero .photo-frame { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); padding: 24px; display: flex; align-items: center; justify-content: center; }
.detail-hero .photo-frame img { max-height: 320px; object-fit: contain; }

/* ---------------- Detail sections / spec panels ---------------- */
.detail-block { padding: 76px 0; border-bottom: 1px solid var(--border); }
.detail-block:last-of-type { border-bottom: none; }
.detail-block.alt { background: var(--bg-alt); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: stretch; }
.split-media {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column;
}
.panel-head {
  padding: 14px 20px; background: var(--blue); color: var(--white);
  font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 600; font-style: italic; font-size: 14px; letter-spacing: .01em;
}
.split-media .panel-body { flex: 1; display: flex; align-items: center; justify-content: center; padding: 22px; }
.split-media img { width: 100%; }
.split-media.flush .panel-body { padding: 0; }
.split-media.flush img { width: 100%; height: 100%; object-fit: cover; }
.split-media .cap { margin-top: 10px; font-size: 12.5px; font-weight: 700; color: var(--muted); text-align: center; padding-bottom: 16px; }

.split-text { display: flex; flex-direction: column; }
.split-text .panel-head-plain {
  font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue);
  font-weight: 700; margin-bottom: 10px;
}

/* Numbered feature box (blue header bar + numbered rows) */
.feature-box { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--white); height: 100%; }
.feature-list { display: flex; flex-direction: column; }
.feature-list li { display: flex; align-items: flex-start; gap: 16px; padding: 16px 20px; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--body); line-height: 1.65; }
.feature-list li:last-child { border-bottom: none; }
.feature-list .num { font-family: "JetBrains Mono", monospace; font-weight: 700; font-size: 12px; color: var(--blue); flex-shrink: 0; padding-top: 1px; }
.feature-box-link {
  display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 20px;
  font-size: 13.5px; font-weight: 700; letter-spacing: .01em; color: var(--blue);
  background: var(--blue-050); border-top: 1px solid var(--blue-100);
  transition: background .15s, color .15s;
}
.feature-box-link:hover { background: var(--blue-100); }
.feature-box-link .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 10px; flex-shrink: 0;
}
.case-doc-link {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; padding: 9px 16px 9px 10px;
  border: 1px solid var(--blue-100); border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--blue);
  background: var(--blue-050); transition: background .15s, border-color .15s;
}
.case-doc-link:hover { background: var(--blue-100); border-color: var(--blue); }
.case-doc-link .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 10px; flex-shrink: 0;
}
.spec-tab-nav.cert-nav { margin-top: -18px; margin-bottom: 32px; }
.spec-tab-nav .cert-link { flex: 1; min-width: 160px; justify-content: center; margin-top: 0; }
.client-static-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.client-logo-card {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 22px 34px; min-width: 220px;
  transition: box-shadow .15s, transform .15s;
}
.client-logo-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.client-logo-card img { height: 46px; width: auto; max-width: 190px; object-fit: contain; display: block; }
.client-logo-card img[src$="lg-display.png"] { height: 36px; }
.client-logo-card img[src$="dawonsys.png"] { height: 30px; }
.client-logo-card .cindustry { font-family: "Inter", "Noto Sans KR", sans-serif; font-weight: 700; font-size: 11.5px; color: #0891b2; letter-spacing: .01em; text-align: center; }
@media (max-width: 600px) { .client-logo-card { min-width: 160px; padding: 18px 24px; } }
.split-text h3 { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: 20px; color: var(--ink); margin-bottom: 16px; letter-spacing: -.01em; }
.feature-list { display: flex; flex-direction: column; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--body); line-height: 1.6;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li .li-num {
  font-family: "JetBrains Mono", monospace; font-size: 10.5px; letter-spacing: .08em; color: var(--blue-bright);
  font-weight: 700; min-width: 22px; padding-top: 2px; flex-shrink: 0;
}
.split-text ul.dash { display: flex; flex-direction: column; gap: 8px; }
.split-text ul.dash li { position: relative; padding-left: 16px; font-size: 13.5px; color: var(--body); }
.split-text ul.dash li::before { content: "—"; position: absolute; left: 0; color: var(--muted); font-size: 11px; }

/* Application zig-zag cards */
.app-card { display: flex; gap: 40px; align-items: flex-start; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 22px; }
.app-card:last-child { margin-bottom: 0; }
.app-card.reverse { flex-direction: row-reverse; }
.app-card-img { width: 42%; flex-shrink: 0; aspect-ratio: 4/3; overflow: hidden; }
.app-card-img img { width: 100%; height: 100%; object-fit: cover; }
.app-card-text { padding: 30px 36px; flex: 1; }
.app-card-text .tagline { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-size: 19px; letter-spacing: -.01em; text-transform: none; font-style: italic; color: var(--blue-bright); font-weight: 700; margin-bottom: 12px; }
.app-card-text h4 { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-style: italic; font-size: 19px; color: var(--ink); margin-bottom: 10px; }
.app-card-text ul.dash { display: flex; flex-direction: column; gap: 6px; }
.app-card-text ul.dash li { position: relative; padding-left: 16px; font-size: 13px; color: var(--body); }
.app-card-text ul.dash li::before { content: "—"; position: absolute; left: 0; color: var(--muted); font-size: 11px; }

/* Equipment photo grid */
.equip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.equip-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }
.equip-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; text-align: center; transition: all .15s; }
.equip-item:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.equip-item .thumb { height: 130px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.equip-item .thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.equip-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.equip-grid.cols-2 .equip-item .thumb { height: 280px; }
@media (max-width: 720px) { .equip-grid.cols-2 { grid-template-columns: 1fr; } }
.equip-item span { font-size: 12.5px; font-weight: 600; color: var(--body); font-family: "Inter", "Noto Sans KR", sans-serif; }

/* Spec table block (e.g. 900d 제어기/스텝 드라이브 사양) */
.spec-table-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px 36px; }
.spec-table-wrap .stw-title { display: flex; align-items: center; gap: 10px; font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 26px; }
.spec-table-wrap .stw-title .ico { width: 26px; height: 26px; border-radius: 6px; background: var(--blue-050); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.spec-table-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 40px; }
.spec-group { min-width: 0; }
.spec-group.full { grid-column: 1 / -1; }
.spec-group h4 { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-style: italic; font-size: 14.5px; color: var(--blue); margin-bottom: 10px; }

/* Input -> SW -> Output flow diagram (e.g. 캐리어 이송속도 추천 SW) */
.io-flow { display: flex; align-items: stretch; gap: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px 32px; }
.io-col { flex: 1; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.io-col-head { display: flex; align-items: center; gap: 10px; font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.io-icon {
  min-width: 30px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--blue-050); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-family: "JetBrains Mono", monospace;
  font-size: 10.5px; font-weight: 700; letter-spacing: .02em; flex-shrink: 0;
}
.io-col-head-result .io-icon { background: var(--orange-050); color: var(--orange); }
.io-chip { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 999px; padding: 9px 16px; font-size: 13px; color: var(--body); }
.io-chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 12px; }
.io-chip-result { background: var(--orange-050); border-color: rgba(224,121,60,.28); color: var(--ink); }
.io-arrow { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 0 36px; min-width: 120px; }
.io-arrow-line { position: relative; width: 100%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--orange)); }
.io-arrow-line::after {
  content: ""; position: absolute; right: -1px; top: 50%; transform: translateY(-50%);
  border-left: 8px solid var(--orange); border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.io-arrow-label { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
@media (max-width: 720px) {
  .io-flow { flex-direction: column; padding: 24px; }
  .io-arrow { flex-direction: row; padding: 16px 0; min-width: 0; }
  .io-arrow-line { width: 60px; }
  .io-chip-grid { grid-template-columns: 1fr; }
}
table.spec-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
table.spec-table th, table.spec-table td { border: 1px solid var(--border); padding: 8px 12px; text-align: left; line-height: 1.5; }
table.spec-table thead th { background: var(--bg-alt); color: var(--ink); font-weight: 700; text-align: center; }
table.spec-table tbody th { background: var(--bg-alt); color: var(--ink); font-weight: 700; width: 34%; white-space: nowrap; }
table.spec-table.narrow-th tbody th { width: 1%; white-space: nowrap; }
table.spec-table.narrow-th tbody td:first-of-type { white-space: nowrap; width: 1%; }
table.spec-table tbody td { color: var(--body); }
.spec-table-scroll { overflow-x: auto; }
.spec-table-scroll table.spec-table { min-width: 1180px; }
.spec-table-scroll table.spec-table tbody th { width: auto; white-space: normal; }

/* Spec table popup (inline single-scroll pages) */
.spec-modal-trigger {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  padding: 11px 20px; border: 1px solid var(--blue-100); border-radius: var(--radius-sm);
  background: var(--blue-050); color: var(--blue-dark); font-family: inherit; font-size: 13.5px; font-weight: 700;
  cursor: pointer; transition: background .15s, border-color .15s;
}
.spec-modal-trigger:hover { background: var(--blue-100); border-color: var(--blue); }
.spec-modal-trigger .ico {
  width: 22px; height: 22px; border-radius: 5px; background: var(--white); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0;
}
.spec-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999; background: rgba(10, 20, 40, .58);
  align-items: flex-start; justify-content: center; padding: 64px 20px; overflow-y: auto;
}
.spec-modal-overlay.open { display: flex; }
.spec-modal-box { position: relative; width: 100%; max-width: 940px; }
.spec-modal-box .spec-table-wrap { box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.spec-modal-box-img { max-width: 640px; background: var(--white); border-radius: var(--radius-md); padding: 6px; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.spec-modal-box-img img { display: block; width: 100%; height: auto; border-radius: calc(var(--radius-md) - 4px); }
.spec-modal-close {
  position: absolute; top: -14px; right: -14px; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white); color: var(--body); cursor: pointer;
  font-size: 18px; line-height: 1; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.spec-modal-close:hover { background: var(--bg-alt2); color: var(--ink); }
body.modal-open { overflow: hidden; }
.spec-table-scroll table.spec-table.narrow-th tbody th { white-space: nowrap; width: 1%; }

.spec-links-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; width: 100%; }
.spec-links-row .spec-modal-trigger { margin-top: 0; font-size: 12px; padding: 8px 14px; }
.split-media .panel-body { flex-direction: column; gap: 14px; }

/* Spec series tabs (e.g. LCS-30A / 50A / 100A 사양) */
.spec-tabs { margin-top: 8px; }
.spec-tab-nav { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.spec-tab-btn {
  flex: 1; min-width: 160px; padding: 14px 20px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-alt); color: var(--ink); font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: 15px;
  cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.spec-tab-btn:hover { background: var(--blue-050); }
.spec-tab-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.spec-tab-panel { display: none; }
.spec-tab-panel.active { display: block; }

/* Intro teaser cards (LMS 소개 -> LMS솔루션 / 구축사례), styled after the
   CSCAM 3D-printer division's numbered SLM/SLA lineup cards. */
.teaser-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
.teaser-card {
  background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--blue);
  border-radius: var(--radius-md); padding: 30px 34px; transition: border-color .15s, box-shadow .15s, transform .15s;
}
.teaser-card:nth-child(2) { border-top-color: var(--orange); }
.teaser-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.teaser-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.teaser-num {
  font-family: "JetBrains Mono", monospace; font-weight: 700; font-size: 11.5px;
  background: var(--blue-050); color: var(--blue); padding: 4px 10px; border-radius: 4px; letter-spacing: .04em;
}
.teaser-card:nth-child(2) .teaser-num { background: var(--orange-050); color: var(--orange); }
.teaser-cat { font-family: "JetBrains Mono", monospace; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.teaser-title { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-style: italic; font-size: 28px; color: var(--blue); margin-bottom: 4px; }
.teaser-card:nth-child(2) .teaser-title { color: var(--orange); }
.teaser-subtitle { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.teaser-card p { font-size: 13.5px; color: var(--body); line-height: 1.75; margin-bottom: 16px; }
.teaser-card .more { font-family: "JetBrains Mono", monospace; font-size: 11.5px; font-weight: 700; color: var(--blue-dark); letter-spacing: .04em; }
.teaser-card:nth-child(2) .more { color: var(--orange); }
@media (max-width: 860px) { .teaser-grid { grid-template-columns: 1fr; } .spec-tab-nav { flex-direction: column; } }


/* Applications flat gallery (thumbnail image with baked captions, e.g. 900d/800S 적용장비) */
.app-gallery-frame { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; text-align: center; }
.app-gallery-frame img { margin: 0 auto; }

/* ---------------- CTA / stub / footer ---------------- */
.detail-cta {
  background: var(--blue-050); border: 1px solid var(--blue-100); border-radius: var(--radius-md);
  padding: 34px 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.detail-cta h3 { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); }
.detail-cta p { color: var(--body); font-size: 13.5px; margin-top: 6px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 700; border: 1px solid transparent; cursor: pointer; transition: all .15s;
  font-family: "Inter", "Noto Sans KR", sans-serif;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-ghost { background: var(--white); color: var(--blue); border-color: var(--border); }
.btn-ghost:hover { background: var(--blue-050); }

.stub-block { padding: 140px 0 100px; text-align: center; }
.stub-icon { width: 68px; height: 68px; border-radius: 50%; background: var(--blue-050); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 22px; font-family: "Space Grotesk", "Noto Sans KR", sans-serif; }
.stub-block h2 { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: 22px; color: var(--ink); margin-bottom: 12px; }
.stub-block p { color: var(--body); font-size: 14px; max-width: 440px; margin: 0 auto 28px; }

/* Contact band */
.contact-band { background: var(--navy); color: var(--white); padding: 64px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-info-col .section-desc { margin-bottom: 30px; }
.contact-item { margin-bottom: 20px; }
.contact-item .k { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-sky); margin-bottom: 6px; }
.contact-item .v { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: 26px; color: var(--white); }
.contact-item .v.small { font-family: "Inter", sans-serif; font-weight: 600; font-size: 15px; }

.map-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.map-embed { display: block; width: 100%; height: 340px; border: 0; }
.map-label {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  width: max-content;
  max-width: calc(100% - 40px);
  background: var(--blue-dark);
  color: var(--white);
  padding: 16px 18px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  font-family: "Inter", sans-serif;
  font-size: 12.5px; line-height: 1.7;
}
.map-label strong { display: block; font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-size: 14.5px; margin-bottom: 6px; color: var(--white); }
.map-label .addr { display: block; white-space: nowrap; }
@media (max-width: 720px) {
  .map-label { font-size: 11px; padding: 12px 14px; }
  .map-label strong { font-size: 13px; }
}

.site-footer { background: var(--navy-2); color: rgba(255,255,255,.62); padding: 44px 0 30px; }
.site-footer .foot-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-bottom: 24px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer .foot-logo { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-style: italic; font-size: 17px; color: var(--white); }
.site-footer .foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.site-footer .foot-links a { font-size: 13px; color: rgba(255,255,255,.62); }
.site-footer .foot-links a:hover { color: var(--white); }
.site-footer .foot-info { font-size: 12.5px; line-height: 1.9; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1100px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .detail-hero .grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .gnb { position: fixed; top: calc(var(--header-h) + 32px); left: 0; right: 0; background: var(--navy); flex-direction: column; gap: 0; max-height: 0; overflow: hidden; transition: max-height .25s; }
  .gnb.open { max-height: 420px; }
  .gnb a { color: rgba(255,255,255,.85); padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; }
  .nav-toggle { display: flex; }
  .spec-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .app-card, .app-card.reverse { flex-direction: column; }
  .app-card-img { width: 100%; }
  .section { padding: 48px 0; }
  .detail-cta { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   LMS-specific components
   ============================================================ */

/* Top utility bar: contact tel + EN/KR (mirrors reference site's family-bar) */
.util-bar { background: var(--navy-2); border-bottom: 1px solid rgba(255,255,255,.06); }
.util-bar .container { display: flex; align-items: center; justify-content: flex-end; gap: 16px; height: 32px; }
.util-bar span { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .04em; color: #8b9bb5; }
.util-bar b { color: #cfe8ff; font-weight: 600; }

/* Cross-site family bar (CNC / LMS / Software division switcher) */
.family-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 101; background: #05080d; border-bottom: 1px solid rgba(255,255,255,.06); }
.family-bar-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 32px; height: 32px;
  display: flex; align-items: center; justify-content: flex-end; gap: 2px;
  overflow-x: auto; scrollbar-width: none;
}
.family-bar-inner::-webkit-scrollbar { display: none; }
.family-bar-label { font-family: "JetBrains Mono", monospace; font-size: 9.5px; font-weight: 700; letter-spacing: .14em; color: #5b6b85; margin-right: auto; white-space: nowrap; }
.family-bar-nav { display: flex; gap: 2px; white-space: nowrap; }
.family-bar-nav a, .family-bar-nav span {
  font-family: "JetBrains Mono", monospace; font-size: 10px; font-weight: 600; letter-spacing: .02em;
  padding: 6px 12px; border-radius: 4px; color: #8b9bb5; transition: all .2s;
}
.family-bar-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.family-bar-nav a.active { color: #fff; background: var(--blue); }
.family-bar-nav span.disabled { color: #3a4556; cursor: not-allowed; }
@media (max-width: 900px) {
  /* justify-content:flex-end 상태에서 넘치면 시작 부분이 스크롤 영역 밖으로 밀려 좌우 드래그가 막히는 문제 -
     모바일에서는 왼쪽 정렬로 바꿔 화면에 안 보이는 나머지 링크를 정상적으로 드래그해서 볼 수 있게 함 */
  .family-bar-inner { justify-content: flex-start; padding: 0 16px; }
}

/* 01 LMS소개: comparison cards (011 / 012) */
.compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.compare-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; display: flex; flex-direction: column; gap: 16px; }
.compare-card .eyebrow { font-size: 11px; }
.compare-card p { font-size: 13.5px; color: var(--body); line-height: 1.75; }
.compare-card .frame { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; display: flex; align-items: center; justify-content: center; margin-top: auto; }
.compare-card .frame img { width: 100%; }
.frame.classification-frame img { width: auto; max-width: 100%; height: auto; }
.frame.classification-frame.coil img { width: 942px; }
.frame.classification-frame.drive img { width: 910px; }
@media (max-width: 860px) {
  .frame.classification-frame img { width: 100% !important; }
}

/* 02 LMS적용사례: case blocks */
.case-block { padding: 32px 0; border-bottom: 1px solid var(--border); }
.case-block:last-child { border-bottom: none; }
.case-block .case-tag { font-family: "JetBrains Mono", monospace; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 8px; }
.case-block h3 { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: 21px; color: var(--ink); margin-bottom: 12px; letter-spacing: -.01em; }
.case-block h3 .sep { color: var(--blue); font-weight: 400; margin: 0 4px; }
.case-block p.desc { font-size: 13.5px; color: var(--body); line-height: 1.8; max-width: 900px; margin-bottom: 16px; }
.case-text ul.dash { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.case-text ul.dash li { position: relative; padding-left: 16px; font-size: 13.5px; color: var(--body); line-height: 1.6; }
.case-text ul.dash li::before { content: "—"; position: absolute; left: 0; color: var(--muted); font-size: 11px; }

.case-steps { display: flex; align-items: center; flex-wrap: wrap; gap: 0; margin-bottom: 26px; }
.case-steps .step { font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700; color: var(--blue); background: var(--blue-050); border: 1px solid var(--blue-100); border-radius: 999px; padding: 7px 16px; }
.case-steps .arrow { color: var(--muted); padding: 0 10px; font-size: 13px; }

.case-diagram-frame { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; margin-bottom: 22px; text-align: center; }
.case-diagram-frame img { margin: 0 auto; }

.case-photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.case-photos.single { grid-template-columns: 1fr; max-width: 640px; }
.case-photos img { width: 100%; border-radius: var(--radius-md); border: 1px solid var(--border); display: block; }

.case-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.case-split.media-first { grid-template-columns: 0.9fr 1.1fr; }
.case-split img { width: 100%; border-radius: var(--radius-md); border: 1px solid var(--border); }
.case-media img { width: 100%; border-radius: var(--radius-md); border: 1px solid var(--border); display: block; }
.case-media.diagram { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; }
.case-media.diagram img { border: none; }
@media (max-width: 860px) {
  .case-split, .case-split.media-first { grid-template-columns: 1fr; gap: 22px; }
}

/* 03 LMS제품 라인업: product grid */
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.prod-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.prod-card .prod-text { padding: 26px; }
.prod-card .prod-text .panel-head-plain { margin-bottom: 8px; }
.prod-card .prod-text h3 { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 12px; }
.prod-card .prod-text p { font-size: 13px; color: var(--body); line-height: 1.7; }
.prod-card .prod-text ul.model-list { margin-top: 14px; display: flex; flex-direction: column; gap: 5px; }
.prod-card .prod-text ul.model-list li { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--ink); font-weight: 600; }
.prod-card .prod-text ul.model-list li span { color: var(--blue); margin-right: 6px; }
.prod-card .prod-media { background: var(--bg-alt); display: flex; align-items: center; justify-content: center; padding: 18px; }
.prod-card .prod-media img { width: 100%; }
.prod-card .prod-text ul.dash { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.prod-card .prod-text ul.dash li { position: relative; padding-left: 14px; font-size: 12.5px; color: var(--body); line-height: 1.6; }
.prod-card .prod-text ul.dash li::before { content: "—"; position: absolute; left: 0; color: var(--muted); font-size: 10.5px; }

/* 4-across product grid on laptop widths (e.g. LMS 제품 lineup) */
.prod-grid.prod-grid-4 { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.prod-grid-4 .prod-card { grid-template-columns: 1fr; display: flex; flex-direction: column; }
.prod-grid-4 .prod-card .prod-text { flex: 1; }
.prod-grid-4 .prod-card .prod-media { padding: 0; height: 220px; overflow: hidden; }
.prod-grid-4 .prod-card .prod-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1180px) { .prod-grid.prod-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .prod-grid.prod-grid-4 { grid-template-columns: 1fr; } }

/* Path-design cards: title above the image, image at its own natural width
   (not stretched into a fixed 2-column grid), cards packed snugly and
   wrapping to however many fit per row. */
.prod-grid.prod-grid-path {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-start;
}
.prod-grid.prod-grid-path .prod-card {
  display: flex; flex-direction: column; align-items: center;
  width: auto; flex: 0 0 auto; padding: 14px 14px 16px;
}
.prod-grid.prod-grid-path .panel-head-plain {
  align-self: flex-start; font-family: "Space Grotesk", "Inter", "Noto Sans KR", sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: normal; text-transform: none; color: var(--ink);
}
.prod-grid.prod-grid-path .prod-media { height: 160px; padding: 0; margin-top: 14px; background: none; border-radius: 0; }
.prod-grid.prod-grid-path .prod-media img { width: auto; height: 100%; max-width: 100%; object-fit: contain; }
.prod-grid.prod-grid-path .prod-text { margin-top: 10px; align-self: stretch; }
@media (max-width: 640px) {
  .prod-grid.prod-grid-path .prod-media { height: 170px; }
  .prod-grid.prod-grid-path .prod-card { width: 100%; }
}

/* 05 Contact / location */
.contact-grid-lms { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 24px; align-items: stretch; }
.contact-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px; display: flex; flex-direction: column; }
.contact-box .co-name { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: 19px; color: var(--ink); margin-bottom: 4px; }
.contact-box .co-dept { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.contact-box .phone-box { background: var(--blue); color: var(--white); border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 18px; }
.contact-box .phone-box .k { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .08em; opacity: .85; margin-bottom: 4px; }
.contact-box .phone-box .v { font-family: "Space Grotesk", "Noto Sans KR", sans-serif; font-weight: 700; font-size: 26px; }
.contact-box .line { font-size: 13.5px; color: var(--body); margin-bottom: 6px; }
.contact-box .line b { color: var(--blue); font-weight: 700; }
.map-frame { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.map-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 1100px) {
  .compare-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .prod-card { grid-template-columns: 1fr; }
  .case-split { grid-template-columns: 1fr; }
  .contact-grid-lms { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .case-photos { grid-template-columns: 1fr; }
  .case-steps .step { font-size: 11px; padding: 6px 12px; }
}
