@charset "utf-8";
/* ==========================================================================
   HubNex — 배대지 전용 물류관리 솔루션 랜딩 스타일
   홍보문서(.dc.html)의 디자인 토큰을 그대로 계승했습니다.
   ========================================================================== */

:root {
  /* Brand */
  --navy: #071A3A;
  --navy-2: #0E2A5C;
  --blue: #1F4FE0;
  --blue-2: #2F63F0;
  --blue-3: #3B6FF0;
  --blue-soft: #6E9BFF;
  --blue-pale: #8FB4FF;
  --green: #1F8A5B;

  /* Text */
  --ink: #0F1D38;
  --muted: #56617A;
  --muted-2: #8A93A8;
  --muted-3: #B4BCCC;
  --on-navy: #C9D8F5;
  --on-navy-2: #B7C6E6;
  --on-blue: #DCE6FB;

  /* Surface */
  --white: #fff;
  --surface: #F4F7FC;
  --surface-2: #FAFBFE;
  --surface-3: #F1F5FE;
  --line: #E4EAF4;
  --line-2: #EDF1F8;

  /* Layout */
  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --radius: 18px;
  --radius-lg: 26px;
  --header-h: 68px;

  --shadow-sm: 0 1px 2px rgba(7, 26, 58, .05), 0 8px 24px rgba(7, 26, 58, .05);
  --shadow-md: 0 2px 6px rgba(7, 26, 58, .06), 0 18px 48px rgba(7, 26, 58, .1);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; letter-spacing: -.022em; line-height: 1.14; font-weight: 800; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure, figcaption, blockquote, dl, dd { margin: 0; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-3); }
strong { font-weight: 700; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 3px solid var(--blue-2); outline-offset: 3px; border-radius: 6px; }

/* ---------- 유틸 ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--blue); color: #fff; font-weight: 700;
  padding: 12px 20px; border-radius: 0 0 12px 12px; transition: top .18s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

.eyebrow {
  font-size: .8125rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue);
}
.eyebrow--light { color: var(--blue-pale); }

.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--tint { background: var(--surface-2); }
.section__head { max-width: 760px; }
.section__title { margin-top: 12px; font-size: clamp(1.75rem, 4.4vw, 2.65rem); }
.section__lead { margin-top: 16px; font-size: clamp(1rem, 1.9vw, 1.125rem); color: var(--muted); line-height: 1.7; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 800; font-size: .96rem; line-height: 1;
  padding: 16px 30px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 10px 26px rgba(31, 79, 224, .32); }
.btn--primary:hover { background: var(--blue-2); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(143, 180, 255, .5); }
.btn--ghost:hover { background: rgba(143, 180, 255, .14); color: #fff; }
.btn--outline { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--sm { padding: 12px 22px; font-size: .875rem; }

.pill {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8125rem; font-weight: 700; letter-spacing: .04em;
  padding: 7px 16px; border-radius: 100px;
  background: var(--surface-3); color: var(--blue);
}
.pill--onNavy { background: rgba(255, 255, 255, .16); color: #fff; }
.pill--solid { background: var(--blue); color: #fff; }
.pill--outline { background: transparent; color: var(--blue-pale); border: 1px solid rgba(143, 180, 255, .5); }

/* ---------- 헤더 ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 20px rgba(7, 26, 58, .05); }
.header__inner { display: flex; align-items: center; gap: 20px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; }
.brand:hover { color: var(--ink); }
.brand__logo { height: 44px; width: auto; flex: 0 0 auto; }
.brand__logo--lg { height: 56px; }
@media (max-width: 900px) { .brand__logo { height: 38px; } }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.nav__list a { color: var(--muted); font-size: .9375rem; font-weight: 600; }
.nav__list a:hover, .nav__list a[aria-current="true"] { color: var(--ink); }
.header__cta { flex: 0 0 auto; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto; margin: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height .28s var(--ease);
  }
  .nav[data-open="true"] { max-height: 72vh; overflow-y: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gutter) 20px; }
  .nav__list a { display: block; padding: 15px 2px; font-size: 1rem; border-bottom: 1px solid var(--line-2); }
  .header__cta { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 44px; height: 44px; padding: 10px;
    background: none; border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
  }
  .nav-toggle span {
    display: block; height: 2px; background: var(--ink); border-radius: 2px;
    transition: transform .2s var(--ease), opacity .2s var(--ease);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- 히어로 ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--navy); color: #fff;
  padding: clamp(56px, 8vw, 104px) 0 clamp(44px, 5vw, 64px);
}
.hero__glow { position: absolute; border-radius: 50%; pointer-events: none; z-index: -1; }
.hero__glow--a {
  top: -22%; right: -12%; width: min(680px, 78vw); aspect-ratio: 1;
  background: radial-gradient(circle at 30% 30%, var(--blue-2) 0%, var(--blue) 45%, rgba(31, 79, 224, 0) 72%);
  opacity: .55;
}
.hero__glow--b {
  bottom: -34%; left: -16%; width: min(560px, 70vw); aspect-ratio: 1;
  background: radial-gradient(circle, var(--blue-3) 0%, rgba(59, 111, 240, 0) 70%);
  opacity: .35;
}
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 60px); align-items: center;
}
@media (max-width: 1000px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__title { margin-top: 24px; font-size: clamp(2.15rem, 6.4vw, 3.85rem); line-height: 1.08; letter-spacing: -.03em; }
.hero__title em { font-style: normal; color: var(--blue-soft); }
.hero__tagline { margin-top: 22px; font-size: clamp(1.125rem, 2.6vw, 1.6rem); font-weight: 600; color: var(--on-navy); letter-spacing: -.01em; }
.hero__desc { margin-top: 22px; max-width: 60ch; font-size: 1rem; line-height: 1.8; color: var(--on-navy-2); }
.hero__desc strong { color: #fff; }
.hero__summary { margin-top: 20px; max-width: 54ch; font-size: 1rem; line-height: 1.75; color: var(--on-navy-2); }
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__note { margin-top: 16px; font-size: .875rem; color: var(--blue-pale); }

.hero__stats {
  margin-top: clamp(40px, 6vw, 60px); padding-top: 28px;
  border-top: 1px solid rgba(143, 180, 255, .28);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px;
}
@media (max-width: 560px) { .hero__stats { grid-template-columns: 1fr; gap: 18px; } }
.hero__stats dt { font-size: .8125rem; font-weight: 700; letter-spacing: .1em; color: var(--blue-pale); }
.hero__stats dd { margin: 8px 0 0; font-size: clamp(1.25rem, 3vw, 1.55rem); font-weight: 800; letter-spacing: -.02em; }
.hero__statSub { display: block; margin-top: 6px; font-size: .8125rem; font-weight: 500; color: var(--on-navy-2); letter-spacing: 0; }

/* 히어로 운영 흐름 패널 */
.heroPanel {
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(143, 180, 255, .28);
  box-shadow: 0 30px 70px rgba(3, 12, 30, .45);
}
.heroPanel__eyebrow {
  font-size: .8125rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue-pale);
}
.heroPanel__title {
  margin-top: 10px; font-size: clamp(1.25rem, 3.4vw, 1.5rem); font-weight: 800;
  line-height: 1.34; letter-spacing: -.022em; color: #fff;
}
.heroPanel__flow { margin-top: clamp(20px, 3vw, 26px); display: grid; gap: 2px; }
.heroPanel__step {
  position: relative; padding: 14px 0 14px 22px;
  border-top: 1px solid rgba(143, 180, 255, .18);
}
.heroPanel__step:first-child { border-top: 0; padding-top: 0; }
.heroPanel__step:last-child { padding-bottom: 0; }
.heroPanel__step::before {
  content: ""; position: absolute; left: 0; top: 20px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue-soft);
}
.heroPanel__step:first-child::before { top: 6px; }
.heroPanel__stepTitle { display: block; font-size: .9375rem; font-weight: 700; color: #fff; letter-spacing: -.012em; }
.heroPanel__stepText { display: block; margin-top: 5px; font-size: .875rem; line-height: 1.66; color: var(--on-navy-2); }

/* ---------- 신뢰 스트립 ---------- */
.strip { border-bottom: 1px solid var(--line); background: var(--white); }
.strip__inner { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; padding-block: 20px; }
.strip__item { display: inline-flex; align-items: center; gap: 9px; font-size: .9375rem; font-weight: 600; color: var(--muted); }
.strip__item svg { flex: 0 0 auto; color: var(--blue); }

/* ---------- 화면 소개 ---------- */
.section--navy {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--navy); color: #fff;
}
.screens__glow {
  position: absolute; top: -26%; right: -10%; width: min(620px, 80vw); aspect-ratio: 1;
  border-radius: 50%; z-index: -1; opacity: .42; pointer-events: none;
  background: radial-gradient(circle at 35% 35%, var(--blue-2) 0%, var(--blue) 45%, rgba(31, 79, 224, 0) 72%);
}
.section__lead--light { color: var(--on-navy-2); }

.screens {
  margin-top: clamp(32px, 5vw, 52px);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 26px);
}
@media (max-width: 860px) { .screens { grid-template-columns: 1fr; } }
.shot { margin: 0; }
.shot--wide { grid-column: 1 / -1; }

.shot__frame {
  border-radius: var(--radius); overflow: hidden;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(143, 180, 255, .28);
  box-shadow: 0 24px 60px rgba(3, 12, 30, .45);
}
.shot__bar {
  display: flex; align-items: center; gap: 7px; padding: 12px 16px;
  background: rgba(255, 255, 255, .06); border-bottom: 1px solid rgba(143, 180, 255, .2);
}
.shot__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(143, 180, 255, .45); }
.shot__label { margin-left: 8px; font-size: .75rem; letter-spacing: .06em; color: var(--blue-pale); font-weight: 700; }
.shot__frame img { width: 100%; background: var(--white); }
.shot--wide .shot__frame img { object-fit: cover; object-position: top center; }

.shot__cap { margin-top: 16px; display: grid; gap: 6px; }
.shot__cap b { font-size: 1.0625rem; letter-spacing: -.01em; }
.shot__cap span { font-size: .9375rem; line-height: 1.75; color: var(--on-navy-2); }

.screens__note { margin-top: clamp(24px, 3vw, 34px); font-size: .8125rem; color: var(--blue-pale); line-height: 1.6; }

/* ---------- 카드 그리드 (장점) ---------- */
.cards { display: grid; gap: 16px; margin-top: 40px; }
.cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 16px; }
@media (max-width: 1000px) { .cards--3, .cards--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .cards--3, .cards--4 { grid-template-columns: 1fr; } }

.card { border-radius: var(--radius); padding: 28px 26px; position: relative; overflow: hidden; height: 100%; }
.card__num { font-size: .8125rem; font-weight: 800; letter-spacing: .1em; }
.card__title { margin-top: 12px; font-size: 1.1875rem; letter-spacing: -.015em; }
.card__text { margin-top: 10px; font-size: .9375rem; line-height: 1.65; }

.card--navy { background: var(--navy); color: #fff; }
.card--navy .card__num { color: var(--blue-soft); }
.card--navy .card__text { color: var(--on-navy-2); }
.card--navy .card__text strong { color: #fff; }

.card--blue { background: var(--blue); color: #fff; }
.card--blue .card__num { color: var(--on-blue); }
.card--blue .card__text { color: var(--on-blue); }
.card--blue .card__text strong { color: #fff; }
.card--blue .card__flag { position: absolute; top: 16px; right: 16px; }

.card--soft { background: var(--surface); border: 1px solid var(--line); }
.card--soft .card__num { color: var(--blue); }
.card--soft .card__text { color: var(--muted); }
.card--soft .card__text strong { color: var(--ink); }

/* ---------- 소개 ---------- */
.about { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: clamp(28px, 5vw, 56px); align-items: start; }
.about > * { min-width: 0; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }
.about__p { margin-top: 18px; font-size: 1rem; line-height: 1.85; color: var(--muted); }
.about__p strong { color: var(--ink); }
.about__update {
  margin-top: 26px; border: 1px solid var(--line); border-left: 3px solid var(--blue);
  background: var(--surface-3); border-radius: 0 14px 14px 0; padding: 22px 24px;
}
.about__updateTitle { font-size: 1.0625rem; font-weight: 800; letter-spacing: -.01em; }
.about__updateText { margin-top: 9px; font-size: .9375rem; line-height: 1.75; color: var(--muted); }
.about__updateText strong { color: var(--ink); }
.about__points { display: grid; gap: 12px; }
.about__point {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); padding: 22px 22px;
}
.about__icon {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px;
  background: var(--surface-3); color: var(--blue); display: grid; place-items: center;
}
.about__pointTitle { font-size: 1.0625rem; font-weight: 800; letter-spacing: -.01em; }
.about__pointText { margin-top: 7px; font-size: .9375rem; line-height: 1.6; color: var(--muted); }

/* ---------- 기술(Node.js) 어필 ---------- */
.tech {
  position: relative; overflow: hidden; isolation: isolate;
  margin-top: clamp(32px, 5vw, 56px);
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(30px, 4.5vw, 48px);
}
.tech__glow {
  position: absolute; top: -46%; right: -6%; width: min(420px, 66vw); aspect-ratio: 1;
  border-radius: 50%; z-index: -1; opacity: .45;
  background: radial-gradient(circle, var(--blue) 0%, rgba(31, 79, 224, 0) 70%);
}
.tech__head { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.tech__title { margin-top: 16px; font-size: clamp(1.375rem, 3.2vw, 1.95rem); }
.tech__title em { font-style: normal; color: var(--blue-soft); }
.tech__text { margin-top: 14px; max-width: 72ch; font-size: .9875rem; line-height: 1.8; color: var(--on-navy); }
.tech__text strong { color: #fff; }
.tech__grid { margin-top: 26px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 1000px) { .tech__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .tech__grid { grid-template-columns: 1fr; } }
.tech__item {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(143, 180, 255, .22);
  border-radius: 14px; padding: 20px 20px; min-width: 0;
}
.tech__item b { display: block; font-size: .9875rem; font-weight: 800; letter-spacing: -.01em; }
.tech__item span { display: block; margin-top: 8px; font-size: .875rem; line-height: 1.6; color: var(--on-navy-2); }

/* ---------- 기능 ---------- */
.features { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 40px; }
.features > * { min-width: 0; }
@media (max-width: 1000px) { .features { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feature {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); padding: 24px 22px; height: 100%;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.feature:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.feature__icon {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--surface-3); color: var(--blue); display: grid; place-items: center;
}
.feature__title { margin-top: 16px; font-size: 1.0625rem; font-weight: 800; letter-spacing: -.01em; }
.feature__text { margin-top: 8px; font-size: .9125rem; line-height: 1.6; color: var(--muted); }
.feature__list { margin-top: 12px; display: grid; gap: 6px; }
.feature__list li { position: relative; padding-left: 13px; font-size: .875rem; color: var(--muted-2); line-height: 1.55; }
.feature__list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--blue-soft);
}

/* ---------- 도입 절차 ---------- */
.process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 40px; counter-reset: step; }
.process > * { min-width: 0; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }
.step { position: relative; border-top: 3px solid var(--line); padding-top: 22px; }
.step:first-child { border-top-color: var(--blue); }
.step__num { font-size: .8125rem; font-weight: 800; letter-spacing: .12em; color: var(--blue); }
.step__title { margin-top: 10px; font-size: 1.125rem; font-weight: 800; letter-spacing: -.01em; }
.step__text { margin-top: 9px; font-size: .9375rem; line-height: 1.65; color: var(--muted); }

/* ---------- 플랜 ---------- */
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 40px; align-items: stretch; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }

.plan {
  position: relative; display: flex; flex-direction: column; height: 100%;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--white); padding: 32px 28px; box-shadow: var(--shadow-sm);
}
.plan--featured { border-color: var(--blue); box-shadow: var(--shadow-md); }
.plan__flag {
  position: absolute; top: -13px; left: 28px;
  background: var(--blue); color: #fff; font-size: .75rem; font-weight: 800;
  letter-spacing: .08em; padding: 6px 14px; border-radius: 100px;
}
.plan__name { font-size: 1.375rem; letter-spacing: -.01em; }
.plan__for { margin-top: 8px; font-size: .875rem; font-weight: 700; color: var(--blue); }
.plan__price { margin-top: 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.plan__amount { font-size: clamp(1.7rem, 4vw, 2.05rem); font-weight: 800; letter-spacing: -.03em; }
.plan__unit { font-size: .9375rem; font-weight: 600; color: var(--muted); }
.plan__base { margin-top: 10px; font-size: .875rem; line-height: 1.6; color: var(--muted-2); }
.plan__base s { color: var(--muted-3); text-decoration-thickness: 1px; }
.plan__base b { color: var(--green); font-weight: 700; }
.plan__desc { margin-top: 14px; font-size: .9375rem; line-height: 1.7; color: var(--muted); }
.plan__list { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line-2); display: grid; gap: 11px; }
.plan__list li { display: flex; gap: 10px; font-size: .9375rem; color: var(--muted); line-height: 1.55; }
.plan__list li svg { flex: 0 0 auto; margin-top: 3px; color: var(--green); }
.plan__list li[data-off] { color: var(--muted-3); }
.plan__list li[data-off] svg { color: var(--muted-3); }
.plan__cta { margin-top: auto; padding-top: 24px; }
.plan__cta .btn { width: 100%; }

/* ---------- 표 ---------- */
.tableWrap { margin-top: 34px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.tableScroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.dataTable { min-width: 640px; font-size: .9375rem; }
.dataTable th, .dataTable td { padding: 15px 18px; text-align: left; vertical-align: top; }
.dataTable thead th { font-size: .8125rem; font-weight: 700; letter-spacing: .04em; background: var(--navy); color: #fff; white-space: nowrap; }
.dataTable thead th[data-tone="label"] { color: var(--blue-pale); }
.dataTable thead th[data-tone="mid"] { background: var(--navy-2); }
.dataTable thead th[data-tone="hi"] { background: var(--blue); }
.dataTable tbody th { font-weight: 700; color: var(--ink); white-space: nowrap; }
.dataTable tbody th, .dataTable tbody td { border-top: 1px solid var(--line-2); }
.dataTable td { color: var(--muted); }
.dataTable td[data-tone="mid"] { background: var(--surface-2); }
.dataTable td[data-tone="hi"] { background: var(--surface-3); color: var(--ink); font-weight: 600; }
.dataTable td[data-tone="free"] { color: var(--blue); font-weight: 800; }
.dataTable td[data-tone="yes"] { color: var(--green); font-weight: 700; }
.dataTable td[data-tone="no"] { color: var(--muted-3); }
.dataTable .num { text-align: right; font-weight: 700; color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums; }
.dataTable .save { text-align: right; font-weight: 800; color: var(--green); white-space: nowrap; font-variant-numeric: tabular-nums; }
.dataTable thead th.num, .dataTable thead th.save { text-align: right; color: #fff; }
.tableNote { margin-top: 14px; font-size: .8125rem; color: var(--muted-2); line-height: 1.6; }
.tableNote--summary { font-size: .875rem; color: var(--muted); }

.priceGrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 34px; align-items: start; }
/* 그리드 항목의 자동 최소 크기를 해제 — 표의 min-width 가 트랙을 밀어 가로 스크롤을 만드는 것을 막는다 */
.priceGrid > *, .plans > *, .cards > *, .support__cols > *,
.hero__grid > *, .footer__grid > * { min-width: 0; }
@media (max-width: 900px) { .priceGrid { grid-template-columns: 1fr; } }
.priceGrid .tableWrap { margin-top: 14px; }
.priceGrid__title { font-size: 1.0625rem; font-weight: 800; }
.priceGrid__title--accent { color: var(--blue); }
.priceGrid .dataTable { min-width: 340px; font-size: .875rem; }
.priceGrid .dataTable th, .priceGrid .dataTable td { padding: 13px 14px; }
.priceGrid .dataTable tbody tr:nth-child(even) th,
.priceGrid .dataTable tbody tr:nth-child(even) td { background: var(--surface-2); }

/* ---------- 무료 배너 / 지원금 ---------- */
.freeNote {
  margin-top: 34px; display: flex; gap: 20px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px;
}
@media (max-width: 560px) { .freeNote { flex-direction: column; gap: 16px; } }
.freeNote__badge {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue); color: #fff; display: grid; place-items: center;
  font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em;
}
.freeNote__title { font-size: 1.125rem; font-weight: 800; letter-spacing: -.01em; }
.freeNote__text { margin-top: 8px; font-size: .9375rem; line-height: 1.7; color: var(--muted); }
.freeNote__text strong { color: var(--ink); }

.support {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 52px); margin-top: 40px;
}
.support__glow {
  position: absolute; top: -34%; right: -12%; width: min(460px, 70vw); aspect-ratio: 1;
  border-radius: 50%; z-index: -1; opacity: .5;
  background: radial-gradient(circle, var(--blue) 0%, rgba(31, 79, 224, 0) 70%);
}
.support__head { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.support__title { margin-top: 18px; font-size: clamp(1.5rem, 3.6vw, 2.25rem); }
.support__title em { font-style: normal; color: var(--blue-soft); }
.support__text { margin-top: 16px; max-width: 62ch; font-size: 1rem; line-height: 1.75; color: var(--on-navy); }
.support__text strong { color: #fff; }
.support__condition {
  margin-top: 20px; display: flex; gap: 10px; align-items: flex-start;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(143, 180, 255, .28);
  border-radius: 12px; padding: 15px 17px;
  font-size: .875rem; line-height: 1.7; color: var(--on-navy);
}
.support__condition svg { flex: 0 0 auto; margin-top: 4px; color: var(--blue-pale); }
.support__condition strong { color: #fff; }
.support__cols { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 760px) { .support__cols { grid-template-columns: 1fr; } }
.supportCard { border-radius: var(--radius); padding: 26px 28px; }
.supportCard--on { background: linear-gradient(135deg, var(--blue-2), var(--blue)); }
.supportCard--alt { background: rgba(255, 255, 255, .06); border: 1px solid rgba(143, 180, 255, .3); }
.supportCard__label { font-size: .875rem; font-weight: 700; color: var(--on-blue); }
.supportCard--alt .supportCard__label { color: var(--blue-pale); }
.supportCard__figure { margin-top: 12px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.supportCard__amount { font-size: clamp(1.9rem, 5.4vw, 2.6rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; }
.supportCard--alt .supportCard__amount { color: #fff; }
.supportCard__foot { margin-top: 14px; font-size: .875rem; font-weight: 700; color: #EAF1FF; }
.supportCard--alt .supportCard__foot { font-weight: 600; color: var(--on-navy); }
.supportCard--alt .supportCard__foot a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.supportCard--alt .supportCard__foot a:hover { color: var(--blue-pale); }

/* ---------- 추천 대상 ---------- */
.audience { display: grid; gap: 14px; margin-top: 40px; }
@media (min-width: 900px) { .audience { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.audience__item {
  display: flex; gap: 20px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); padding: 24px 26px;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.audience__item:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.audience__num {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface-3); color: var(--blue);
  display: grid; place-items: center; font-size: 1.125rem; font-weight: 800;
}
.audience__title { font-size: 1.125rem; font-weight: 800; letter-spacing: -.01em; }
.audience__text { margin-top: 6px; font-size: .9375rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 560px) { .audience__item { flex-direction: column; align-items: flex-start; gap: 14px; } }

/* ---------- FAQ ---------- */
.faq { margin-top: 40px; display: grid; gap: 12px; max-width: 900px; }
.faq__item { border: 1px solid var(--line); border-radius: 14px; background: var(--white); overflow: hidden; }
.faq__item[open] { border-color: var(--blue); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; font-size: 1.0625rem; font-weight: 700; cursor: pointer;
  list-style: none; letter-spacing: -.01em;
}
.faq__q h3 { font: inherit; margin: 0; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: ""; flex: 0 0 auto; width: 11px; height: 11px;
  border-right: 2.4px solid var(--blue); border-bottom: 2.4px solid var(--blue);
  transform: rotate(45deg) translateY(-2px); transition: transform .22s var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(225deg) translateY(-2px); }
.faq__a { padding: 0 22px 22px; font-size: .9375rem; line-height: 1.8; color: var(--muted); }
.faq__a strong { color: var(--ink); }

/* ---------- CTA ---------- */
.cta { padding: clamp(56px, 8vw, 96px) 0; background: var(--surface-2); }
.cta__box {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--navy); color: #fff; border-radius: clamp(20px, 3vw, 28px);
  padding: clamp(40px, 6vw, 68px) clamp(28px, 5vw, 60px);
}
.cta__glow {
  position: absolute; top: -40%; right: -8%; width: min(520px, 76vw); aspect-ratio: 1;
  border-radius: 50%; z-index: -1; opacity: .55;
  background: radial-gradient(circle at 35% 35%, var(--blue-2) 0%, rgba(31, 79, 224, 0) 70%);
}
.cta__title { margin-top: 16px; font-size: clamp(1.9rem, 5.2vw, 3rem); letter-spacing: -.03em; }
.cta__text { margin-top: 20px; max-width: 58ch; font-size: 1rem; line-height: 1.8; color: var(--on-navy); }
.cta__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px 16px; align-items: center; }
.cta__contact { font-size: .9375rem; color: var(--on-navy-2); }
.cta__contact a { color: #fff; font-weight: 700; }
.cta__contact a:hover { color: var(--blue-pale); }
.cta__hours { display: block; margin-top: 6px; font-size: .8125rem; color: var(--on-navy-2); }

/* ---------- 푸터 ---------- */
.footer { background: var(--white); border-top: 1px solid var(--line); padding: 52px 0 40px; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: 32px; }
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brandCol { grid-column: 1 / -1; } }
.footer__tagline { margin-top: 14px; font-size: .9375rem; color: var(--muted); line-height: 1.7; max-width: 42ch; }
.footer__colTitle { font-size: .8125rem; font-weight: 800; letter-spacing: .1em; color: var(--muted-2); text-transform: uppercase; }
.footer__list { margin-top: 14px; display: grid; gap: 10px; }
.footer__list a, .footer__list span { font-size: .9375rem; color: var(--muted); }
.footer__list a:hover { color: var(--blue); }
.footer__biz { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line-2); font-style: normal; }
.footer__bizName { font-size: .9375rem; font-weight: 700; color: var(--ink); }
.footer__bizSep { margin-inline: 8px; color: var(--muted-3); }
.footer__bizList {
  margin-top: 10px; display: flex; flex-wrap: wrap; gap: 4px 18px;
  font-size: .8125rem; color: var(--muted); line-height: 1.8;
}
.footer__bizList a { color: var(--muted); }
.footer__bizList a:hover { color: var(--blue); }

.footer__bottom {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-2);
  display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; justify-content: space-between;
  font-size: .8125rem; color: var(--muted-2);
}

/* ---------- 404 ---------- */
.errorPage { min-height: 74vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.errorPage__code { font-size: clamp(3.5rem, 14vw, 7rem); font-weight: 800; letter-spacing: -.04em; color: var(--blue); line-height: 1; }
.errorPage__title { margin-top: 18px; font-size: clamp(1.375rem, 4vw, 2rem); }
.errorPage__text { margin-top: 14px; font-size: 1rem; color: var(--muted); line-height: 1.7; }
.errorPage__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- 스크롤 등장 ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .nav-toggle, .hero__glow, .cta__glow, .support__glow, .footer__bottom { display: none !important; }
  body { color: #000; }
  .hero, .cta__box, .support, .card--navy, .card--blue, .supportCard--on { background: #fff !important; color: #000 !important; }
  a { color: #000; text-decoration: underline; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}
