/* wizMES site V2 — Daylight Blueprint (light engineering concept) */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@550;600;700&display=swap");

:root {
  --bg: #e9eef3;
  --bg-2: #f7f9fb;
  --surface: #ffffff;
  --ink: #101820;
  --ink-soft: #3a4654;
  --muted: #667788;
  --line: #d5dee8;
  --blue: #0057b8;
  --blue-deep: #003f87;
  --blue-soft: #e8f1fb;
  --charcoal: #1b2430;
  --shadow: 0 22px 50px rgba(16, 24, 32, 0.12);
  --shadow-soft: 0 10px 28px rgba(16, 24, 32, 0.08);
  --radius: 18px;
  --header-h: 76px;
  --header-stack-h: 122px;
  --max: 1180px;
  --max-wide: 1320px;
  --font: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", sans-serif;
  --display: "Sora", "Pretendard Variable", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 2rem, var(--max-wide));
}

/* ——— Header (light) ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.06);
  box-sizing: border-box;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.06);
}

.site-header__inner {
  width: min(100% - 2rem, var(--max));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  box-sizing: border-box;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  z-index: 102;
}

/* 원본 로고 385×74 — 한 축만 제한 */
.brand__logo {
  width: auto;
  height: auto;
  max-height: 46px;
  max-width: min(230px, 50vw);
  object-fit: contain;
}

.footer__brand .brand__logo {
  max-height: 42px;
  max-width: 210px;
  background: #fff;
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.nav a {
  position: relative;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.nav a:hover {
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.nav a.is-active {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(0, 87, 184, 0.28);
}

.nav a.is-active:hover {
  color: #fff;
  background: var(--blue-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.55rem;
}

.header-actions .btn--sm {
  min-height: 40px;
  min-width: 5.5rem;
  padding: 0.5rem 0.95rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 87, 184, 0.28);
}

.btn--primary:hover {
  background: var(--blue-deep);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.btn--dark {
  background: var(--charcoal);
  color: #fff;
}

.btn--dark:hover {
  background: #000;
}

.btn--light {
  background: #fff;
  color: var(--ink);
}

.btn--sm {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.text-link {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-color: rgba(0, 87, 184, 0.35);
}

.text-link:hover {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 102;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ——— Hero: 1 composition ——— */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 2.75rem) 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 87, 184, 0.1), transparent 32%),
    radial-gradient(circle at 92% 8%, rgba(0, 87, 184, 0.07), transparent 26%),
    linear-gradient(180deg, #f7f9fb 0%, #e9eef3 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 24, 32, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 40%, transparent 92%);
  pointer-events: none;
}

.hero__stage {
  position: relative;
  z-index: 1;
  display: grid;
  /* 카피보다 제품 화면을 크게 */
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  min-height: calc(100svh - var(--header-h) - 7.5rem);
  padding-bottom: 2.25rem;
}

.hero__copy {
  max-width: 26rem;
  padding-block: 0.5rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.05s forwards;
}

.hero__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.18);
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.05rem, 4vw, 3.05rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 1.05rem;
  color: var(--ink);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.15s forwards;
}

.hero__title em {
  font-style: normal;
  color: var(--blue);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: linear-gradient(180deg, transparent 62%, rgba(0, 87, 184, 0.14) 62%);
}

.hero__lead {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 30rem;
  font-weight: 550;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.28s forwards;
}

#downloads,
#inquiry-form {
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

@media (max-width: 980px) {
  #downloads,
  #inquiry-form {
    scroll-margin-top: calc(var(--header-stack-h) + 1rem);
  }
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.95rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

.hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero__visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 0.85s ease 0.22s forwards;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 12% -8% -10% 18%;
  background: radial-gradient(circle, rgba(0, 87, 184, 0.18), transparent 68%);
  z-index: 0;
  pointer-events: none;
}

.hero__frame {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero__frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__frame figcaption {
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--line);
  background: #fbfcfd;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

/* trust rail = hero 하단 앵커 */
.trust-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 0 -1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.trust-rail li {
  display: grid;
  gap: 0.4rem;
  padding: 1.35rem 1.35rem 1.35rem 1.5rem;
  border-right: 1px solid var(--line);
  border-left: 4px solid transparent;
}

.trust-rail li:last-child {
  border-right: 0;
}

.trust-rail__item--a {
  border-left-color: #0057b8;
  background: linear-gradient(180deg, #dceaf8 0%, #fff 68%);
}
.trust-rail__item--b {
  border-left-color: #0d8a78;
  background: linear-gradient(180deg, #d4f0ea 0%, #fff 68%);
}
.trust-rail__item--c {
  border-left-color: #d97706;
  background: linear-gradient(180deg, #fce8c8 0%, #fff 68%);
}
.trust-rail__item--d {
  border-left-color: #c2410c;
  background: linear-gradient(180deg, #f8d9cc 0%, #fff 68%);
}

.trust-rail__item--a strong { color: #003f87; }
.trust-rail__item--b strong { color: #0a6b5c; }
.trust-rail__item--c strong { color: #b45309; }
.trust-rail__item--d strong { color: #9a3412; }

.trust-rail strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.trust-rail span {
  color: #2c3a48;
  font-size: 1.08rem;
  font-weight: 750;
}

/* ——— Sections ——— */
.section {
  padding: 6rem 0;
}

.section--surface {
  background: var(--surface);
}

.section--ink {
  background: var(--charcoal);
  color: #fff;
}

.section--cta {
  padding-top: 4.5rem;
  padding-bottom: 5rem;
}

/* 실제 적용 현장 전경 배너 */
.field-panorama {
  position: relative;
  padding: 5rem 0;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(8, 12, 18, 0.82) 0%, rgba(8, 12, 18, 0.55) 48%, rgba(8, 12, 18, 0.42) 100%),
    url("../images/solutions/field/factory-panorama.png") center / cover no-repeat;
  overflow: hidden;
}

.field-panorama__inner {
  position: relative;
  max-width: 40rem;
}

.field-panorama__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-panorama__title {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.field-panorama__desc {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 34rem;
}

.section--cta-field {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10, 16, 24, 0.72) 0%, rgba(10, 16, 24, 0.78) 100%),
    url("../images/solutions/field/factory-panorama.png") center 65% / cover no-repeat;
}

.section--cta-field .cta-panel {
  background: rgba(0, 40, 90, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.section__head {
  margin-bottom: 2.25rem;
}

.section__head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem 3rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section__head--split .section__title {
  margin-bottom: 0;
}

.section__desc--right {
  max-width: 28rem;
  margin-left: auto;
  padding-bottom: 0.15rem;
}

.section__foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.75rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section--ink .eyebrow {
  color: #7eb6ff;
}

.section__title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.28;
  margin-bottom: 0.7rem;
}

.section__desc {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.section--ink .section__desc {
  color: rgba(255, 255, 255, 0.68);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Capability tiles — 절제된 악센트 + 깊이 (무지개 헤더 지양) */
.cap-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cap-tile {
  --tile: #0057b8;
  --tile-deep: #003f87;
  --tile-soft: #dceaf8;
  --tile-glow: rgba(0, 87, 184, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem 1.3rem 1.35rem;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(165deg, #ffffff 0%, var(--tile-soft) 100%);
  box-shadow: 0 10px 26px rgba(16, 24, 32, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cap-tile::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--tile) 0%, var(--tile-deep) 100%);
}

.cap-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 24, 32, 0.16);
  box-shadow: 0 18px 36px var(--tile-glow);
}

.cap-tile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding: 0;
  background: none;
  color: inherit;
}

.cap-tile__icon {
  display: inline-grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  flex-shrink: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--tile) 0%, var(--tile-deep) 100%);
  border: 0;
  box-shadow: 0 8px 18px var(--tile-glow);
}

.cap-tile__icon svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}

.cap-tile__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.cap-tile__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 1.95rem;
  padding: 0 0.55rem;
  border-radius: 8px;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--tile-deep);
  box-shadow: 0 6px 14px var(--tile-glow);
}

.cap-tile__tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tile-deep);
}

.cap-tile h3 {
  font-size: 1.12rem;
  margin: 0 0 0.95rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 750;
}

.cap-tile ul {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  margin-top: auto;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 24, 32, 0.06);
}

.cap-tile li {
  position: relative;
  padding-left: 0.95rem;
  color: #2c3a48;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 600;
}

.cap-tile li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tile);
}

/* 채도·대비를 올린 구분색 */
.cap-tile--quality {
  --tile: #e67e22;
  --tile-deep: #b85a0c;
  --tile-soft: #f3e0cc;
  --tile-glow: rgba(230, 126, 34, 0.28);
}
.cap-tile--fifo {
  --tile: #d64545;
  --tile-deep: #a52828;
  --tile-soft: #f3d4d4;
  --tile-glow: rgba(214, 69, 69, 0.26);
}
.cap-tile--sensor {
  --tile: #1677d6;
  --tile-deep: #0b4f9c;
  --tile-soft: #d4e6f8;
  --tile-glow: rgba(22, 119, 214, 0.28);
}
.cap-tile--prod {
  --tile: #1f9d6a;
  --tile-deep: #0f6f48;
  --tile-soft: #d3eee3;
  --tile-glow: rgba(31, 157, 106, 0.26);
}
.cap-tile--mold {
  --tile: #2f6fbf;
  --tile-deep: #1a457a;
  --tile-soft: #d6e3f4;
  --tile-glow: rgba(47, 111, 191, 0.26);
}
.cap-tile--lot {
  --tile: #c29214;
  --tile-deep: #8a6810;
  --tile-soft: #f0e6c4;
  --tile-glow: rgba(194, 146, 20, 0.26);
}

/* 현장 연계 솔루션 — 텍스트 + 스크린샷 */
.stack-sol {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem 2.5rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.stack-sol:first-of-type {
  border-top: 0;
  padding-top: 0.5rem;
}

.stack-sol--flip .stack-sol__copy {
  order: 2;
}

.stack-sol--flip .stack-sol__media {
  order: 1;
}

.stack-sol--wide {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.stack-sol__no {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: var(--blue);
}

.stack-sol__copy h3 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink);
}

.stack-sol__lead {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 36rem;
}

.stack-sol__list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}

.stack-sol__list li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 500;
}

.stack-sol__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 1px;
  background: var(--blue);
}

.stack-sol__list code {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.88em;
  color: var(--blue-deep);
  background: var(--blue-soft);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.stack-sol__media {
  margin: 0;
}

.stack-sol__media figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.stack-sol__shot {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f0f3f7;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stack-sol__shot:hover {
  border-color: #b8c6d6;
  box-shadow: var(--shadow);
}

.stack-sol__shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.stack-sol__gallery {
  display: grid;
  gap: 1rem;
}

.text-link--on-ink {
  color: #9ec5f0;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.text-link--on-ink:hover {
  color: #fff;
}

/* 산업용 HW — 보유기술 매트릭스 + 제품 실적 그리드 */
.tech-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.tech-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.4rem 1.35rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.tech-panel--accent {
  border-color: rgba(0, 87, 184, 0.28);
  background:
    linear-gradient(180deg, #f3f8fd 0%, #fff 55%);
}

.tech-panel__head {
  margin-bottom: 1.1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.tech-panel__label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.tech-panel__head h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.tech-panel__list {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
}

.tech-panel__list li {
  display: grid;
  gap: 0.28rem;
}

.tech-panel__list strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

.tech-panel__list span {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.pill {
  display: inline-block;
  margin-left: 0.2rem;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--blue);
  vertical-align: middle;
}

.pill--mute {
  background: #5b6b7c;
}

.hw-folio {
  padding-top: 0.25rem;
}

.hw-folio__head {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.hw-folio__head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.hw-folio__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hw-folio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hw-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hw-card:hover {
  border-color: #b8c6d6;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.hw-card__shot {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: #eef2f6;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hw-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hw-card__body {
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem 1.15rem 1.25rem;
}

.hw-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.hw-card__tags span {
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #c9d5e3;
  background: #f4f7fb;
  color: var(--blue-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hw-card__body h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hw-card__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* 이미지 우선 블록: 설명은 상단 슬림, 본문은 와이드 이미지 */
.media-block {
  display: grid;
  gap: 1.35rem;
}

.media-block__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem 2rem;
  align-items: end;
}

.media-block__head .section__title {
  margin-bottom: 0.45rem;
}

.media-block__head .section__desc {
  max-width: 36rem;
}

.media-block__head--ink .section__desc {
  color: rgba(255, 255, 255, 0.68);
}

.check-list {
  display: grid;
  gap: 0.55rem;
}

.check-list--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  max-width: 22rem;
}

.check-list li {
  position: relative;
  padding: 0.7rem 0.9rem 0.7rem 2.2rem;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 650;
  font-size: 0.94rem;
}

.check-list--inline li {
  padding: 0.45rem 0.75rem 0.45rem 1.6rem;
  font-size: 0.84rem;
  background: #fff;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
}

.check-list--inline li::before {
  left: 0.65rem;
}

.media-panel {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.media-panel--xl {
  border-radius: 20px;
}

.media-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.media-panel--dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.hw__notes {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.hw__notes--compact {
  margin-top: 0;
  max-width: 26rem;
  justify-self: end;
}

.hw__notes li {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.hw__notes--compact li {
  padding: 0.7rem 0.85rem;
  font-size: 0.88rem;
}

/* CTA */
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 2.35rem 2.2rem;
  border-radius: 20px;
  background: linear-gradient(118deg, #003f87 0%, #0057b8 58%, #1a7adf 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 87, 184, 0.28);
}

.cta-panel h2 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
  line-height: 1.65;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cta-panel .btn--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}

.cta-panel .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

/* Footer — 현장 전경 배경 (전 페이지 공통) */
.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  padding: 3.25rem 0 1.75rem;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.88) 0%, rgba(8, 12, 18, 0.9) 100%),
    url("../images/solutions/field/factory-panorama.png") center / cover no-repeat;
  background-color: #0d131a;
  overflow: hidden;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer__brand p {
  margin-top: 0.9rem;
  max-width: 28rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer__meta {
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer__meta strong {
  color: #fff;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
  margin-top: 1.1rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer__bottom {
  padding-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.78);
}

.footer__bottom a:hover {
  color: #fff;
}

/* Page hero (sub) — 진입 타이틀 강조 */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4rem) 0 3.5rem;
  background:
    radial-gradient(circle at 12% 30%, rgba(0, 87, 184, 0.16), transparent 40%),
    radial-gradient(circle at 88% 10%, rgba(0, 87, 184, 0.1), transparent 32%),
    linear-gradient(180deg, #eef4fb 0%, #f7f9fb 55%, #e9eef3 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--blue) 0%, #1a7adf 100%);
}

.page-hero--field {
  background:
    linear-gradient(105deg, rgba(8, 12, 18, 0.84) 0%, rgba(8, 12, 18, 0.62) 55%, rgba(8, 12, 18, 0.48) 100%),
    url("../images/solutions/field/factory-panorama.png") center / cover no-repeat;
  border-bottom: 0;
  color: #fff;
}

.page-hero--field::before {
  background: linear-gradient(180deg, #3d8fef 0%, var(--blue) 100%);
}

.page-hero--field .page-hero__title,
.page-hero--field .page-hero__lead {
  color: #fff;
}

.page-hero--field .page-hero__lead {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero--field .sol-switch__btn {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.page-hero--field .sol-switch__btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.page-hero--field .sol-switch__btn--hw:hover {
  background: #fff;
  color: var(--ink);
}

.page-hero__inner {
  position: relative;
  max-width: 46rem;
}

.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.page-hero__title {
  font-family: var(--display);
  font-size: clamp(2.35rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.sol-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.35rem;
}

.sol-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 87, 184, 0.35);
  background: #fff;
  color: var(--blue-deep);
  font-weight: 750;
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sol-switch__btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.sol-switch__btn--hw {
  border-color: rgba(27, 36, 48, 0.28);
  color: var(--charcoal);
}

.sol-switch__btn--hw:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

.sol-anchor {
  scroll-margin-top: calc(var(--header-stack-h) + 12px);
}

.sol-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: start;
  margin-bottom: 2rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.sol-band .section__title {
  margin-bottom: 0.35rem;
}

.sol-band .section__desc {
  margin: 0;
  max-width: 40rem;
}

.sol-band__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.5rem;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sol-band__badge--hw {
  background: var(--charcoal);
}

.section__title--sub {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}

.sol-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sol-teaser__card {
  display: grid;
  gap: 0.65rem;
  padding: 1.5rem 1.45rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sol-teaser__card:hover {
  transform: translateY(-2px);
  border-color: #b8c6d6;
  box-shadow: var(--shadow);
}

.sol-teaser__badge {
  display: inline-block;
  width: fit-content;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sol-teaser__card--hw .sol-teaser__badge {
  background: #eef1f4;
  color: var(--charcoal);
}

.sol-teaser__card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.sol-teaser__card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.sol-teaser__more {
  margin-top: 0.35rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}

.sol-teaser__card--hw .sol-teaser__more {
  color: var(--charcoal);
}

.page-hero__lead {
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 550;
  line-height: 1.7;
}

/* Modules */
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.module-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.module-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--bg-2);
}

.module-card__body {
  padding: 1.25rem 1.25rem 1.4rem;
}

.module-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.module-card ul {
  display: grid;
  gap: 0.3rem;
}

.module-card li {
  position: relative;
  padding-left: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.module-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

/* 화면 캡처는 자체 보더 있음 → 카드 라운드/보더 금지 */
.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem 0.5rem;
}

.screen-item {
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.screen-item__btn {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  line-height: 0;
}

.screen-item__btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.screen-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  transition: opacity 0.2s ease;
}

.screen-item__btn:hover img {
  opacity: 0.92;
}

.screen-item figcaption {
  padding: 0.45rem 0.1rem 0.15rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-soft);
}

/* 현장 적용 · 모니터링 */
.field-cases {
  display: grid;
  gap: 1.5rem;
}

.field-case {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.5rem 1.75rem;
  align-items: center;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.field-case:nth-child(even) {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.field-case:nth-child(even) .field-case__shot {
  order: 2;
}

.field-case:nth-child(even) .field-case__body {
  order: 1;
}

.field-case__shot {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #eef2f6;
  cursor: zoom-in;
}

.field-case__shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.field-case__body h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.field-case__body > p {
  margin: 0 0 0.95rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.field-case__body ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.field-case__body li {
  position: relative;
  padding-left: 0.9rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 550;
}

.field-case__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 1px;
  background: var(--blue);
}

/* 모바일 버전 화면 */
.mobile-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  margin: 0 0 1.5rem;
  padding: 0;
}

.mobile-points li {
  position: relative;
  padding: 0.75rem 0.9rem 0.75rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 550;
  line-height: 1.45;
}

.mobile-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 3px;
  border-radius: 2px;
  background: var(--blue);
}

.mobile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mobile-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--charcoal);
  border: 1px solid rgba(16, 24, 32, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mobile-card__shot {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.85rem 0.85rem 0.4rem;
  border: 0;
  background: #0b1220;
  cursor: zoom-in;
}

.mobile-card__shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.mobile-card figcaption {
  display: grid;
  gap: 0.3rem;
  padding: 0.85rem 1rem 1.05rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

.mobile-card figcaption strong {
  font-size: 0.98rem;
  font-weight: 750;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.mobile-card figcaption span {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 500;
}

/* 원본 이미지 라이트박스 */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(16, 24, 32, 0.78);
  backdrop-filter: blur(3px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__panel {
  position: relative;
  max-width: min(96vw, 1600px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.lightbox__img {
  max-width: 100%;
  max-height: calc(92vh - 2.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lightbox__caption {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 650;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.lightbox__close:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

body.lightbox-open {
  overflow: hidden;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-aside {
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
}

.contact-aside h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.contact-aside > p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 1.4rem;
}

.contact-aside dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact-aside dt {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7eb6ff;
  margin-bottom: 0.2rem;
}

.contact-aside dd {
  margin: 0;
  font-weight: 700;
}

.contact-aside a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(126, 182, 255, 0.45);
}

.contact-aside a:hover {
  color: #7eb6ff;
  border-bottom-color: #7eb6ff;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
}

.contact-form--disabled {
  display: grid;
  gap: 1rem;
}

.contact-disabled__title {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 0;
  color: var(--ink);
}

.contact-disabled__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-disabled__box {
  margin: 0.2rem 0 0.4rem;
  padding: 1.15rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 87, 184, 0.18);
  background: var(--blue-soft);
}

.contact-disabled__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 0.35rem;
}

.contact-disabled__email {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  word-break: break-all;
}

.contact-disabled__email:hover {
  text-decoration: underline;
}

.contact-disabled__hint {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--blue-deep);
  line-height: 1.55;
}

.form-note {
  color: #b45309;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.form-row input[type="text"],
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  background: var(--bg-2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.14);
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  margin-bottom: 0.4rem;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  cursor: pointer;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-tip {
  margin: 0.4rem 0 1.15rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 650;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

/* Promo popup */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(16, 24, 32, 0.5);
  backdrop-filter: blur(4px);
}

.promo-popup[hidden] {
  display: none !important;
}

.promo-popup__panel {
  width: min(100%, 720px);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.35s ease;
}

.promo-popup__panel a img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.promo-popup__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.promo-popup__actions button {
  border: 0;
  min-height: 52px;
  font-weight: 700;
  cursor: pointer;
}

.promo-popup__actions .btn-dismiss {
  background: #eef2f5;
  color: var(--ink);
}

.promo-popup__actions .btn-close {
  background: var(--blue);
  color: #fff;
}

/* Price modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 180;
  width: 100vw;
  height: 100vh;
  background: rgba(16, 24, 32, 0.5);
  backdrop-filter: blur(3px);
}

.modal .modal_popup {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1080px;
  width: min(94vw, 1080px);
  padding: 1.5rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.modal .modal_popup .close_btn,
#price_close_btn {
  display: block;
  padding: 0.65rem 1.1rem;
  background: var(--blue);
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

#price_grid_area {
  background: #fff;
}

#price_grid_area tr:hover td {
  background-color: rgba(0, 87, 184, 0.08);
}

table.gridjs-table tbody tr:nth-child(even) td {
  background-color: rgba(0, 0, 0, 0.025);
}

.gridjs-th div {
  color: white;
}

.grid-search-input {
  min-width: 10rem;
  max-width: 20rem;
  width: 20vw;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  /* 모바일: 고정 높이 2단 헤더 (페이지마다 높이 변동 방지) */
  .site-header {
    height: var(--header-stack-h);
    align-items: stretch;
  }

  .site-header__inner {
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    align-items: center;
    gap: 0;
    width: min(100% - 1.25rem, var(--max));
    height: 100%;
    padding: 0;
  }

  .brand {
    order: 1;
    height: 68px;
    display: inline-flex;
    align-items: center;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
    height: 68px;
  }

  .nav {
    order: 3;
    display: flex;
    width: 100%;
    flex-basis: 100%;
    height: 54px;
    justify-content: space-around;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0 0.15rem;
    border-top: 1px solid var(--line);
    background: transparent;
  }

  .nav a {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 750;
    color: var(--ink);
    padding: 0.4rem 0.35rem;
    white-space: nowrap;
    border-radius: 8px;
  }

  .nav a.is-active {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 6px 14px rgba(0, 87, 184, 0.22);
  }

  .nav-toggle {
    display: none !important;
  }

  .header-actions .btn--ghost {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: calc(var(--header-stack-h) + 1.75rem);
  }

  .hero__stage,
  .section__head--split,
  .media-block__head,
  .footer__top,
  .contact-layout,
  .cta-panel,
  .stack-sol,
  .stack-sol--wide,
  .sol-teaser,
  .sol-band,
  .field-case,
  .field-case:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .field-case:nth-child(even) .field-case__shot,
  .field-case:nth-child(even) .field-case__body {
    order: initial;
  }

  .stack-sol--flip .stack-sol__copy,
  .stack-sol--flip .stack-sol__media {
    order: initial;
  }

  .stack-sol {
    gap: 1.25rem;
    padding: 1.75rem 0;
  }

  .hero__stage {
    min-height: 0;
    padding-bottom: 1.5rem;
    grid-template-columns: 1fr;
  }

  .check-list--inline,
  .hw__notes--compact {
    justify-content: flex-start;
    justify-self: start;
    max-width: none;
  }

  .section__desc--right {
    margin-left: 0;
  }

  .section__foot {
    justify-content: flex-start;
  }

  .cta-panel__actions {
    justify-content: flex-start;
  }

  .trust-rail {
    grid-template-columns: 1fr 1fr;
    margin-bottom: -1rem;
  }

  .trust-rail li:nth-child(2) {
    border-right: 0;
  }

  .trust-rail li:nth-child(1),
  .trust-rail li:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .cap-tiles,
  .module-grid,
  .screen-grid,
  .tech-matrix,
  .hw-folio__grid,
  .mobile-grid,
  .mobile-points {
    grid-template-columns: 1fr 1fr;
  }

  .tech-matrix {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.4rem, var(--max));
  }

  .section {
    padding: 3.75rem 0;
  }

  .section--cta {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .field-panorama {
    padding: 3.5rem 0;
  }

  .trust-rail,
  .cap-tiles,
  .module-grid,
  .screen-grid,
  .support-grid,
  .tech-matrix,
  .hw-folio__grid,
  .mobile-grid,
  .mobile-points {
    grid-template-columns: 1fr;
  }

  .hw-card__shot {
    aspect-ratio: 16 / 10;
  }

  .mobile-grid {
    max-width: 22rem;
    margin-inline: auto;
  }

  .trust-rail li {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .trust-rail li:last-child {
    border-bottom: 0;
  }

  .brand__logo {
    max-height: 40px;
    max-width: min(190px, 52vw);
  }

  .cta-panel {
    padding: 1.6rem 1.25rem;
  }

  .hero,
  .page-hero {
    padding-top: calc(var(--header-stack-h) + 1.25rem);
  }

  .nav a {
    font-size: 0.82rem;
    padding: 0.38rem 0.2rem;
  }

  .header-actions .btn--sm {
    min-width: 4.8rem;
    padding: 0.45rem 0.75rem;
  }
}
