/* =========================================================
   비에스엘코리아(주) — Business Solution Leader
   Vanilla rebuild stylesheet
   ========================================================= */

:root {
  --blue: #2a93d6;
  --blue-d: #1c5d8c;
  --blue-l: #4fa2d6;
  --ink: #333;
  --gray: #747474;
  --line: #e6e9ee;
  --bg-soft: #f5f8fb;
  --radius: 8px;
  --container: 1200px;
  --shadow: 0 10px 30px rgba(28, 93, 140, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nanum Gothic", "Malgun Gothic", sans-serif;
  color: var(--gray);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { color: var(--ink); margin: 0; line-height: 1.3; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  padding: 11px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-d); }
.btn--outline { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.8); }
.btn--ghost:hover { background: #fff; color: var(--blue-d); }
.btn--lg { padding: 14px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* ===== Topbar ===== */
.topbar {
  background: #f4f6f9;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
.topbar__tel { color: var(--gray); }
.topbar__tel strong { color: var(--blue); font-size: 15px; margin-left: 6px; letter-spacing: .5px; }
.topbar__label { font-size: 12px; }
.topbar__links { display: flex; gap: 18px; }
.topbar__links a { color: #8a909a; }
.topbar__links a:hover { color: var(--blue); }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 84px;
}

/* Brand / logo */
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { display: inline-flex; }
/* If a logo image is supplied, you can swap the .brand__mark + .brand__text
   block for: <img src="assets/img/logo.png" class="brand__img" alt="비에스엘코리아"> */
.brand__img { height: 46px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-weight: 800;
  font-size: 23px;
  color: var(--blue);
  letter-spacing: -.5px;
}
.brand__name em { font-style: normal; color: var(--blue-d); }
.brand__slogan {
  font-size: 11px;
  color: var(--blue-d);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* GNB */
.gnb { margin-left: auto; }
.gnb__list { display: flex; gap: 6px; }
.gnb__item { position: relative; }
.gnb__item > a {
  display: block;
  padding: 0 20px;
  line-height: 84px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.gnb__item > a:hover { color: var(--blue); }
.gnb__item.has-sub > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 7px;
  border-right: 2px solid #c2c8d0;
  border-bottom: 2px solid #c2c8d0;
  transform: translateY(-2px) rotate(45deg);
}

/* Dropdown */
.gnb__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: .18s ease;
}
.gnb__item:hover .gnb__sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.gnb__sub a, .gnb__sub-title {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  border-radius: 5px;
  color: var(--gray);
}
.gnb__sub a:hover { background: var(--bg-soft); color: var(--blue); }
.gnb__sub-title {
  font-weight: 800;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.gnb__sub-group a { padding-left: 24px; }

/* 3rd-level flyout (ERP > industries) */
.gnb__sub > li { position: relative; }
.gnb__sub .has-flyout > a::after {
  content: "›";
  float: right;
  color: #c2c8d0;
  font-weight: 700;
}
.gnb__sub2 {
  position: absolute;
  top: -11px;
  left: 100%;
  min-width: 190px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: .16s ease;
}
.gnb__sub .has-flyout:hover > .gnb__sub2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.gnb__sub2 a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  border-radius: 5px;
  color: var(--gray);
}
.gnb__sub2 a:hover { background: var(--bg-soft); color: var(--blue); }

/* 온라인문의 CTA menu item */
.gnb__item--cta { display: flex; align-items: center; }
.gnb__item--cta > a {
  line-height: normal;
  padding: 11px 22px;
  margin-left: 14px;
  background: var(--blue);
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
}
.gnb__item--cta > a:hover { background: var(--blue-d); color: #fff; }
.gnb__item--cta.is-current > a::before { display: none; }

.header__cta { flex-shrink: 0; }

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: .25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #1c5d8c 0%, #2a93d6 55%, #4fa2d6 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/img/hero-bg.png") right -40px center / 540px no-repeat;
  opacity: .22;
}
.hero__inner {
  position: relative;
  padding: 110px 20px 120px;
}
.hero__eyebrow {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 8px;
  color: #d6ecfb;
}
.hero__title {
  color: #fff;
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 22px;
}
.hero__title .accent { color: #ffd54a; }
.hero__desc {
  font-size: 18px;
  color: #eaf4fc;
  margin: 0 0 34px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__slider-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero__slider-dots .dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.45);
  cursor: pointer;
}
.hero__slider-dots .dot.is-active { background: #fff; }

/* ===== Section base ===== */
.section { padding: 84px 0; }
.section__head { text-align: center; margin-bottom: 48px; }
.section__tag {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 3px;
  margin: 0 0 10px;
  font-size: 15px;
}
.section__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
}

/* ===== Solutions ===== */
.solutions { background: var(--bg-soft); }
.sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sol-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 26px;
  text-align: center;
  transition: .25s ease;
}
.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.sol-card__badge {
  width: 78px; height: 78px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: .5px;
}
.sol-card__title { font-size: 20px; margin-bottom: 12px; }
.sol-card__desc { font-size: 14.5px; min-height: 66px; }
.sol-card__link {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
}
.sol-card__link:hover { color: var(--blue-d); }

/* ===== ERP ===== */
.erp__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.erp__media img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  width: 100%;
}
.erp__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.erp__tags span {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  background: #eaf4fc;
  padding: 5px 14px;
  border-radius: 20px;
}
.erp__title { font-size: 26px; font-weight: 800; margin-bottom: 16px; }
.erp__desc { font-size: 15.5px; margin-bottom: 28px; }
.erp__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 10px;
  margin-bottom: 30px;
}
.erp__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.erp__features img { width: 42px; height: 42px; flex-shrink: 0; }

/* ===== Notice + Consultation ===== */
.notice__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.board__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.board__no {
  color: var(--blue);
  font-size: 28px;
}
.board__list { border-top: 2px solid var(--ink); }
.board__list li { border-bottom: 1px solid var(--line); }
.board__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
}
.board__list a:hover .board__subject { color: var(--blue); }
.board__subject {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15.5px;
  color: var(--ink);
}
.board__list time { font-size: 13px; color: #a4abb5; flex-shrink: 0; }
.board__more {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 700;
}
.board__lead { margin: 0 0 18px; }

/* Form */
.cform { display: flex; flex-direction: column; gap: 12px; }
.cform__row { display: flex; gap: 12px; }
.cform input, .cform textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  background: #fbfcfe;
}
.cform input:focus, .cform textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.cform textarea { min-height: 110px; resize: vertical; }
.cform__agree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
}

/* ===== Trust band ===== */
.trust {
  background: linear-gradient(120deg, #1c5d8c, #2a93d6);
  color: #fff;
}
.trust__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 56px 20px;
  flex-wrap: wrap;
}
.trust__quote { font-size: 24px; font-weight: 700; margin: 0; }
.trust__quote strong { color: #ffd54a; }

/* ===== Footer ===== */
.footer {
  background: #1f2730;
  color: #aeb6c0;
  padding: 50px 0 36px;
  font-size: 14px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 30px;
  align-items: start;
}
.brand__name--light { color: #fff; font-size: 22px; }
.brand__name--light em { color: var(--blue-l); }
.footer__slogan { letter-spacing: 1.5px; color: #7d8794; margin: 6px 0 0; font-size: 12px; }
.footer__info p { margin: 0 0 8px; }
.footer__info strong { color: #fff; }
.footer__copy { color: #6c7682; margin-top: 14px !important; font-size: 13px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a:hover { color: #fff; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .erp__inner { grid-template-columns: 1fr; gap: 36px; }
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: 46px; }
}

@media (max-width: 820px) {
  .header__inner { height: 70px; }
  .header__cta { display: none; }
  .nav-toggle { display: flex; }

  .gnb {
    position: fixed;
    top: 0; right: 0;
    width: 280px; max-width: 84vw;
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 30px rgba(0,0,0,.12);
    margin: 0;
    padding: 80px 0 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 90;
  }
  .gnb.is-open { transform: translateX(0); }
  .gnb__list { flex-direction: column; gap: 0; }
  .gnb__item > a { line-height: 1.4; padding: 16px 24px; border-bottom: 1px solid var(--line); }
  .gnb__item.has-sub > a::after { float: right; }
  .gnb__sub {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 6px 24px 14px;
    display: none;
  }
  .gnb__item.is-expanded .gnb__sub { display: block; }

  .notice__inner { grid-template-columns: 1fr; gap: 44px; }
  .footer__inner { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .section__title { font-size: 24px; }
  .sol-grid { grid-template-columns: 1fr; }
  .erp__features { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { padding: 70px 20px 84px; }
  .hero__title { font-size: 36px; }
  .hero__eyebrow { font-size: 16px; }
  .cform__row { flex-direction: column; }
  .brand__slogan { display: none; }
  .brand__name { font-size: 19px; }
}

/* Hide brand SVG mark if a logo image is added next to it */
.brand:has(.brand__img) .brand__mark,
.brand:has(.brand__img) .brand__text { display: none; }

/* Body scroll lock when mobile menu open */
body.no-scroll { overflow: hidden; }

/* =========================================================
   SUBPAGE STYLES
   ========================================================= */

/* Active GNB highlight */
.gnb__item.is-current > a { color: var(--blue); }
.gnb__item.is-current > a::before {
  content: "";
  position: absolute;
  left: 20px; right: 20px; bottom: 22px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

/* Page banner */
.page-banner {
  position: relative;
  background: linear-gradient(120deg, #1c5d8c 0%, #2a93d6 60%, #4fa2d6 100%);
  color: #fff;
  text-align: center;
  padding: 64px 20px;
  overflow: hidden;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/hero-bg.png") right -60px center / 420px no-repeat;
  opacity: .14;
}
.page-banner__inner { position: relative; }
.page-banner h1 { color: #fff; font-size: 38px; font-weight: 800; margin-bottom: 10px; }
.page-banner p { color: #e6f2fb; font-size: 16px; margin: 0; }

/* Breadcrumb */
.breadcrumb {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  font-size: 13.5px;
  color: #98a0aa;
}
.breadcrumb a { color: #98a0aa; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--ink); font-weight: 700; }

/* Page section */
.page { padding: 70px 0; }
.page--soft { background: var(--bg-soft); }
.page__head { text-align: center; margin-bottom: 44px; }
.page__eyebrow { color: var(--blue); font-weight: 800; letter-spacing: 2px; font-size: 14px; margin: 0 0 8px; }
.page__title { font-size: 30px; font-weight: 800; }
.page__title--left { text-align: left; }
.lead { font-size: 18px; color: var(--ink); line-height: 1.7; }
.muted { color: var(--gray); }
.center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* Intro split (image + text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.split img { border-radius: 12px; box-shadow: var(--shadow); width: 100%; }
.split h2 { font-size: 26px; margin-bottom: 16px; }
.split p { margin: 0 0 14px; }

/* Value cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card__ico {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #eaf4fc;
  color: var(--blue);
  font-size: 26px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p { font-size: 14.5px; margin: 0; }

/* Feature list (checklist) */
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
.checklist li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.6;
}
.checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 21px; height: 21px;
  background: var(--blue); color: #fff;
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* Definition / spec table */
.spec-table { width: 100%; border-collapse: collapse; border-top: 2px solid var(--ink); }
.spec-table th, .spec-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  text-align: left;
  vertical-align: top;
}
.spec-table th {
  width: 200px;
  background: var(--bg-soft);
  color: var(--ink);
  font-weight: 700;
}
.spec-table td { color: var(--gray); }

/* Industry blocks (ERP) */
.industry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}
.industry:last-child { border-bottom: none; }
.industry:nth-child(even) .industry__media { order: 2; }
.industry__media {
  background: linear-gradient(135deg, #eaf4fc, #d6ecfb);
  border-radius: 12px;
  min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 60px; font-weight: 800;
  letter-spacing: 1px;
}
.industry__media img { max-height: 200px; width: auto; }
.industry h3 { font-size: 22px; margin-bottom: 8px; }
.industry .tagrow { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 16px; }
.industry .tagrow span { font-size: 13px; font-weight: 700; color: var(--blue); background: #eaf4fc; padding: 4px 12px; border-radius: 16px; }

/* Timeline (연혁) */
.timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 28px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 2px; background: var(--line);
}
.tl-item { position: relative; padding: 0 0 34px 34px; }
.tl-item::before {
  content: ""; position: absolute; left: -1px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 4px solid var(--blue);
}
.tl-year { font-size: 22px; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.tl-list li { display: flex; gap: 14px; margin-bottom: 6px; font-size: 15px; color: var(--ink); }
.tl-list .mon { color: var(--blue); font-weight: 700; flex-shrink: 0; min-width: 42px; }

/* Logo grid (보급실적) */
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.logo-grid .cell {
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 92px;
  display: flex; align-items: center; justify-content: center;
  color: #9aa2ac; font-weight: 700; font-size: 15px;
  background: #fff;
  text-align: center; padding: 8px;
}
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-size: 44px; font-weight: 800; color: var(--blue); line-height: 1; }
.stat .lab { margin-top: 8px; color: var(--gray); font-size: 15px; }

/* Contact / location */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; }
.map-box {
  background: #e9eef3;
  border-radius: 12px;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  color: #98a0aa; font-weight: 700;
  border: 1px solid var(--line);
}
.info-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list .k { width: 90px; flex-shrink: 0; font-weight: 700; color: var(--ink); }
.info-list .v { color: var(--gray); }

/* Notice table */
.notice-table { width: 100%; border-collapse: collapse; border-top: 2px solid var(--ink); }
.notice-table th, .notice-table td { padding: 15px 14px; border-bottom: 1px solid var(--line); font-size: 15px; }
.notice-table thead th { background: var(--bg-soft); color: var(--ink); font-weight: 700; }
.notice-table td.num, .notice-table th.num { width: 64px; text-align: center; color: #a4abb5; }
.notice-table td.date, .notice-table th.date { width: 120px; text-align: center; color: #a4abb5; }
.notice-table tbody tr:hover { background: var(--bg-soft); }
.notice-table .subj a { color: var(--ink); font-weight: 600; }
.notice-table .subj a:hover { color: var(--blue); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step__n {
  width: 54px; height: 54px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--blue); color: #fff;
  font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { font-size: 16px; margin-bottom: 6px; color: var(--ink); }
.step p { font-size: 14px; margin: 0; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(120deg, #1c5d8c, #2a93d6);
  color: #fff; text-align: center; padding: 54px 20px;
}
.cta-strip h2 { color: #fff; font-size: 26px; margin-bottom: 18px; }

@media (max-width: 1024px) {
  .cards, .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .split, .industry, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .industry:nth-child(even) .industry__media { order: 0; }
  .gnb__item.is-current > a::before { display: none; }
}
@media (max-width: 560px) {
  .cards, .cards--4, .checklist, .logo-grid, .steps { grid-template-columns: 1fr; }
  .page-banner h1 { font-size: 28px; }
  .page__title { font-size: 23px; }
  .spec-table th { width: 120px; }
}

/* Logo image sizing */
.brand__img { height: 48px; width: auto; }

/* =========================================================
   TABS (개요 / 특장점 등)  — 원본 제품 페이지 탭 UI 복제
   ========================================================= */
.tabs__nav {
  display: flex;
  gap: 0;
}
.tabs__btn {
  flex: 1 1 0;
  text-align: center;
  padding: 16px 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  color: #8a909a;
  background: #f1f3f5;
  border: 1px solid #e1e4e8;
  border-left: none;
  cursor: pointer;
  transition: .15s;
}
.tabs__btn:first-child { border-left: 1px solid #e1e4e8; }
.tabs__btn:hover { color: var(--blue); }
.tabs__btn.is-active { color: #fff; background: var(--blue); border-color: var(--blue); }
.tabs__panel { display: none; padding-top: 42px; }
.tabs__panel.is-active { display: block; animation: tabfade .25s ease; }
@keyframes tabfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Content blocks inside tabs */
.block { margin-bottom: 40px; }
.block__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 5px solid var(--blue);
}
.block img { border-radius: 10px; }
.block--center { text-align: center; }
.block--center img { margin: 0 auto; box-shadow: var(--shadow); }

/* Module grid (개요 기능 설명 카드) */
.modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.module {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 22px;
}
.module h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 10px;
  display: flex; align-items: center; gap: 8px;
}
.module h4::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}
.module p { margin: 0; font-size: 14.5px; line-height: 1.65; }

/* Numbered feature list (특장점 01~09) */
.feat-list { display: grid; gap: 16px; }
.feat {
  display: grid;
  grid-template-columns: 52px 1fr;
  border: 1px solid #e6e9ee;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.feat__body { display: contents; }
/* 번호 + 제목 = 연한 파란 띠 (한 줄) */
.feat__n {
  grid-column: 1; grid-row: 1;
  background: #eaf2f8;
  color: var(--blue);
  font-weight: 800;
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
}
.feat__body h4 {
  grid-column: 2; grid-row: 1;
  margin: 0;
  padding: 13px 18px;
  background: #eaf2f8;
  font-size: 16px;
  color: var(--ink);
  display: flex; align-items: center;
}
/* 설명 = 아래 전체폭 불릿 */
.feat__body p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 7px 22px 7px 36px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--gray);
}
.feat__body p:first-of-type { padding-top: 14px; }
.feat__body p:last-of-type { padding-bottom: 16px; }
.feat__body p::before {
  content: "•";
  position: absolute; left: 22px;
  color: var(--blue);
}
.fit-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 28px;
}
.fit-box h4 { margin: 0 0 12px; font-size: 18px; color: var(--ink); }
.fit-box ul { display: grid; gap: 8px; }
.fit-box li { padding-left: 22px; position: relative; }
.fit-box li::before { content: "▶"; position: absolute; left: 0; color: var(--blue); font-size: 10px; top: 4px; }

@media (max-width: 820px) {
  .modules { grid-template-columns: 1fr 1fr; }
  .tabs__btn { padding: 13px 22px; font-size: 15px; }
}
@media (max-width: 560px) {
  .modules { grid-template-columns: 1fr; }
  .feat { grid-template-columns: 1fr; gap: 8px; }
}

/* Nested menu + CTA on mobile */
@media (max-width: 820px) {
  /* 3rd-level becomes inline accordion */
  .gnb__sub2 {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 4px 0 8px 14px;
    display: none;
  }
  .gnb__sub .has-flyout.is-expanded > .gnb__sub2 { display: block; }
  .gnb__sub .has-flyout > a { display: flex; justify-content: space-between; align-items: center; }
  .gnb__sub2 a { padding: 10px 14px; }

  /* CTA item behaves like a normal row in the drawer */
  .gnb__item--cta { display: block; }
  .gnb__item--cta > a {
    margin: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
  }
  .gnb__item--cta > a:hover { background: var(--bg-soft); color: var(--blue); }
}

/* =========================================================
   LOSSZERO.AGENT 페이지 전용 컴포넌트
   ========================================================= */
/* 일반 챗봇 vs AGENT 비교 */
.compare { display: grid; grid-template-columns: 1fr 64px 1fr; gap: 0; align-items: stretch; }
.compare__col {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 28px;
}
.compare__col--bad { background: #f6f7f9; }
.compare__col--good { background: #eaf4fc; border-color: #bcdcf3; }
.compare__tag { font-weight: 800; font-size: 14px; letter-spacing: .5px; margin: 0 0 6px; }
.compare__col--bad .compare__tag { color: #9aa2ac; }
.compare__col--good .compare__tag { color: var(--blue); }
.compare__head { font-size: 21px; font-weight: 800; color: var(--ink); margin: 0 0 14px; }
.compare__col p { margin: 0; font-size: 15px; line-height: 1.7; }
.compare__vs {
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--blue); font-size: 20px;
}

/* Before / After 표 */
.ba {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.ba__row { display: grid; grid-template-columns: 1fr 150px 1fr; border-bottom: 1px solid var(--line); }
.ba__row:last-child { border-bottom: none; }
.ba__cell { padding: 18px 22px; font-size: 15px; display: flex; align-items: center; }
.ba__before { background: #f6f7f9; color: var(--gray); }
.ba__label { justify-content: center; font-weight: 800; color: var(--blue); background: #fff; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.ba__after { color: var(--ink); font-weight: 600; }
.ba__after strong { color: var(--blue); }
.ba__head .ba__cell { background: var(--ink); color: #fff; font-weight: 800; justify-content: center; }
.ba__head .ba__before { background: #8a929c; }
.ba__head .ba__label { background: var(--ink); border-color: #444; }
.speed { display: flex; gap: 16px; align-items: center; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.speed b { color: var(--blue); font-size: 22px; }

/* 근거 경로 chain */
.chain { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.chain__node {
  background: #eaf4fc; border: 1px solid #bcdcf3; color: var(--ink);
  font-weight: 700; padding: 14px 20px; border-radius: 10px; font-size: 15px;
}
.chain__node--bad { background: #ffe9e2; border-color: #f5b89f; color: #c2410c; }
.chain__arrow { color: var(--blue); font-weight: 800; }
.cause {
  background: #fff8ec; border: 1px solid #f3d79a; border-radius: 14px;
  padding: 26px 28px; margin-top: 28px;
}
.cause h4 { margin: 0 0 12px; font-size: 19px; color: #b45309; }
.cause__refs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.cause__refs span { background: #fff; border: 1px solid #f3d79a; color: #92600c; font-size: 13px; font-weight: 700; padding: 5px 12px; border-radius: 16px; }
.cause__acts { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.cause__act { background: #fde7df; border: 1px solid #f5b89f; color: #c2410c; font-weight: 700; padding: 12px 18px; border-radius: 10px; font-size: 14.5px; }

@media (max-width: 820px) {
  .compare { grid-template-columns: 1fr; gap: 14px; }
  .compare__vs { padding: 4px; }
  .ba__row { grid-template-columns: 1fr 90px 1fr; }
  .ba__cell { padding: 14px; font-size: 13.5px; }
}

/* =========================================================
   MODAL (주요화면 모듈 상세 등)
   ========================================================= */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 40px 16px;
  background: rgba(20, 40, 60, .55);
  overflow-y: auto;
}
.modal.is-open { display: flex; }
.modal__box {
  background: #fff;
  border-radius: 14px;
  width: 100%; max-width: 820px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  position: relative;
  animation: modalpop .22s ease;
  margin: auto;
}
@keyframes modalpop { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.modal__head {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.modal__head h3 { font-size: 21px; color: var(--ink); }
.modal__tags { color: var(--gray); font-size: 13.5px; margin: 0; }
.modal__close {
  position: absolute; top: 16px; right: 18px;
  width: 38px; height: 38px; border: none; border-radius: 50%;
  background: var(--bg-soft); color: var(--gray);
  font-size: 22px; line-height: 1; cursor: pointer;
}
.modal__close:hover { background: var(--blue); color: #fff; }
.modal__body { padding: 24px 26px 28px; }
.modal__body .feat-list { gap: 14px; }
.modal__body .feat { border: none; background: var(--bg-soft); padding: 18px 20px; }
.modal__shots { display: grid; gap: 16px; margin-top: 20px; }
.modal__shots img { border: 1px solid var(--line); border-radius: 8px; width: 100%; }

/* 클릭 가능한 모듈 카드 */
.card--clickable { cursor: pointer; }
.card--clickable .card__more { margin-top: 12px; color: var(--blue); font-weight: 700; font-size: 13.5px; }

body.modal-open { overflow: hidden; }

@media (max-width: 560px) {
  .modal { padding: 16px 8px; }
  .modal__head h3 { font-size: 18px; }
}

/* =========================================================
   IMPROVE — 개선 포인트(현황 ＋ 개선 짝지음 카드)  원본 UI 복제
   ========================================================= */
.improve { display: grid; gap: 16px; }
.improve__row {
  display: grid;
  grid-template-columns: 1fr 44px 1.4fr;
  align-items: center;
  gap: 6px;
}
.improve__from {
  background: #fff;
  border: 1px solid #a8cfe8;
  border-radius: 8px;
  padding: 16px 18px;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
  min-height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.improve__plus {
  width: 34px; height: 34px;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-size: 0;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.improve__plus::before { content: "\25B6"; font-size: 13px; }
.improve__to {
  border: 1px solid #e3e9ef;
  border-radius: 8px;
  padding: 16px 20px;
  background: #eef3f8;
}
.improve__to ul { list-style: none; margin: 0; padding: 0; }
.improve__to li {
  position: relative;
  padding-left: 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 4px;
}
.improve__to li:last-child { margin-bottom: 0; }
.improve__to li::before {
  content: "";
  position: absolute; left: 2px; top: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue);
}

@media (max-width: 700px) {
  .improve__row { grid-template-columns: 1fr; gap: 4px; }
  .improve__plus { transform: rotate(90deg); margin: 2px auto; }
}

/* =========================================================
   HISTORY (연혁)  — 상단 배너 + [연도 | 월·내용] 리스트
   ========================================================= */
.hist-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #1c5d8c 0%, #2a93d6 60%, #4fa2d6 100%);
  color: #fff;
  border-radius: 12px;
  padding: 48px 40px;
  margin-bottom: 36px;
}
.hist-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: url("../assets/img/hero-bg.png") right -30px center / 360px no-repeat;
  opacity: .16;
}
.hist-hero__inner { position: relative; text-align: right; }
.hist-hero__en { font-size: 36px; font-weight: 800; letter-spacing: 1px; line-height: 1.25; }

/* 가운데 헤더 (파란 밑줄) */
.hist-head {
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  padding: 18px 10px;
  border-bottom: 2px solid var(--blue);
}

.hist { }
.hist__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.hist__year {
  font-size: 20px; font-weight: 800; color: var(--blue); line-height: 1.3;
  text-align: right;
  padding: 22px 26px 22px 0;
  border-right: 1px solid var(--line);
}
.hist__events { display: grid; gap: 9px; align-content: center; padding: 18px 0 18px 30px; }
.hist__ev { font-size: 15.5px; color: var(--ink); line-height: 1.55; }
.hist__ev .m {
  display: inline-block;
  min-width: 42px;
  color: var(--blue);
  font-weight: 700;
  margin-right: 8px;
}

@media (max-width: 600px) {
  .hist__row { grid-template-columns: 1fr; gap: 8px; padding: 18px 4px; }
  .hist__year { font-size: 18px; }
  .hist-hero { padding: 34px 24px; }
  .hist-hero__en { font-size: 23px; }
}

/* =========================================================
   INFOGRAPHIC (agent 페이지)
   ========================================================= */
/* 섹션 인트로 */
.ig-sec { padding: 64px 0; }
.ig-sec--soft { background: var(--bg-soft); }
.ig-sec--blue { background: linear-gradient(120deg,#1c5d8c,#2a93d6); color:#fff; }
.ig-head { text-align: center; margin-bottom: 40px; }
.ig-head .step-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); color: #fff; font-weight: 800; margin-bottom: 14px;
}
.ig-sec--blue .ig-head .step-no { background: #fff; color: var(--blue); }
.ig-head h2 { font-size: 30px; font-weight: 800; }
.ig-sec--blue .ig-head h2 { color: #fff; }
.ig-head p { margin: 12px 0 0; color: var(--gray); font-size: 16px; }
.ig-sec--blue .ig-head p { color: #e6f2fb; }

/* 통계 밴드 (큰 숫자) */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.statband .s { text-align: center; }
.statband .s b { display: block; font-size: 46px; font-weight: 800; line-height: 1; }
.statband .s span { display: block; margin-top: 10px; font-size: 15px; opacity: .92; }
.ig-sec--blue .statband .s b { color: #ffd54a; }

/* 가로 프로세스 플로우 */
.flow { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; justify-content: center; }
.flow__step {
  flex: 1 1 0; min-width: 150px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 24px 16px; text-align: center; position: relative;
}
.flow__ico {
  width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%;
  background: #eaf4fc; color: var(--blue); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.flow__step h4 { font-size: 16px; margin: 0 0 6px; color: var(--ink); }
.flow__step p { font-size: 13.5px; margin: 0; color: var(--gray); line-height: 1.5; }
.flow__arrow { display: flex; align-items: center; color: var(--blue); font-size: 22px; font-weight: 800; padding: 0 6px; }

@media (max-width: 820px) {
  .statband { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .statband .s b { font-size: 38px; }
  .flow__arrow { transform: rotate(90deg); width: 100%; justify-content: center; padding: 4px 0; }
  .flow__step { flex-basis: 100%; }
}
@media (max-width: 560px) {
  .ig-head h2 { font-size: 23px; }
}
