:root {
  --bg: #070707;
  --surface: #0e0e0e;
  --surface-2: #151515;
  --ink: #f7f7f4;
  --muted: #a6a6a0;
  --line: rgba(255,255,255,.12);
  --accent: #ff9d68;
  --accent-soft: rgba(255,157,104,.14);
  --mint: #79d5ad;
  --blue: #9bbcf8;
  --yellow: #f2ce72;
  --max: 1220px;
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--bg); letter-spacing: 0; }
button, a { font: inherit; }
a { color: inherit; }
img { max-width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 56px;
  z-index: 50;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(7,7,7,.88);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
}
.logo img { width: 28px; height: 28px; border-radius: 7px; }
.header-nav { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.header-nav a, .icon-btn {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 720;
}
.header-nav a:hover, .header-nav a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255,255,255,.05);
}
.icon-btn { width: 34px; padding: 0; border-color: var(--line); background: transparent; cursor: pointer; color: var(--ink); }
.icon-btn:hover { background: rgba(255,255,255,.08); }

.hub {
  min-height: 100vh;
  padding: 120px 0 70px;
  background:
    linear-gradient(180deg, rgba(255,157,104,.08), transparent 32%),
    var(--bg);
}
.hub-inner { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.hub h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
}
.hub-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 54px;
}
.business-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}
.business-card:hover { transform: translateY(-4px); border-color: rgba(255,157,104,.55); }
.business-visual {
  height: 205px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #111;
}
.business-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.business-visual.ai {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.ai-cell {
  display: grid;
  place-items: center;
  padding: 20px 8px;
  background: #101010;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}
.ai-cell strong { display: block; color: var(--ink); font-size: 18px; margin-bottom: 8px; }
.ai-cell img {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  display: block;
  border-radius: 10px;
  object-fit: contain;
}
.ai-cell small { display: block; margin-top: 5px; color: #777771; font-size: 10px; }
.business-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.business-no { color: var(--accent); font-size: 11px; font-weight: 850; }
.business-card h2 { margin: 12px 0 10px; font-size: 26px; line-height: 1.2; }
.business-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.business-link { margin-top: auto; padding-top: 24px; color: var(--ink); font-size: 14px; font-weight: 820; }
.hub-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #74746e;
  font-size: 12px;
}

.deck { height: 100vh; overflow-y: auto; scroll-snap-type: y mandatory; }
.slide {
  min-height: 100vh;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  padding: 90px 32px 60px;
  background: var(--bg);
}
.slide.alt { background: #0b0b0b; }
.slide.light { background: #f4f3ef; color: #11120f; }
.slide.light .lead, .slide.light .body-copy, .slide.light .card p, .slide.light .list { color: #5b5d57; }
.slide.light .card, .slide.light .panel { background: #fff; border-color: rgba(17,18,15,.13); }
.slide-inner { width: min(var(--max), 100%); margin: 0 auto; }
.slide h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(56px, 6vw, 88px);
  line-height: .98;
}
.slide h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(42px, 4.6vw, 67px);
  line-height: 1.04;
}
.slide h3 { margin: 0; font-size: 21px; line-height: 1.3; }
.hl { color: var(--accent); }
.mint { color: var(--mint); }
.blue { color: var(--blue); }
.lead {
  max-width: 870px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}
.body-copy { color: var(--muted); font-size: 15px; line-height: 1.75; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.chip {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c2c2bd;
  font-size: 12px;
  font-weight: 760;
}
.grid { display: grid; gap: 14px; margin-top: 28px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.card { padding: 22px; }
.card p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.card .metric { margin: 0 0 10px; color: var(--accent); font-size: 34px; font-weight: 900; }
.card.accent { background: var(--accent-soft); border-color: rgba(255,157,104,.38); }
.card.mint-card { background: rgba(121,213,173,.08); border-color: rgba(121,213,173,.3); }
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: stretch; margin-top: 30px; }
.compare .panel { padding: 26px; }
.compare-arrow { display: grid; place-items: center; color: var(--accent); font-size: 28px; }
.label { display: inline-flex; margin-bottom: 14px; color: var(--accent); font-size: 11px; font-weight: 880; text-transform: uppercase; }
.list { margin: 15px 0 0; padding-left: 19px; color: var(--muted); font-size: 15px; line-height: 1.68; }
.list li + li { margin-top: 7px; }
.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 24px;
  align-items: center;
  margin-top: 28px;
}
.media-shell {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
}
.media-shell img { width: 100%; height: 100%; min-height: 430px; display: block; object-fit: contain; background: #090909; }
.media-shell.cover img { object-fit: cover; }
.media-note {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(0,0,0,.76);
  color: #eee;
  font-size: 11px;
  font-weight: 760;
  backdrop-filter: blur(8px);
}
.facts { display: grid; gap: 10px; }
.fact { padding: 16px; border-left: 3px solid var(--accent); background: rgba(255,255,255,.045); }
.fact strong { display: block; margin-bottom: 6px; font-size: 15px; }
.fact span { color: var(--muted); font-size: 13px; line-height: 1.55; }
.pipeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 30px; }
.pipeline .node { position: relative; padding: 20px 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.pipeline .node:not(:last-child)::after { content: "→"; position: absolute; right: -10px; top: 48%; z-index: 2; color: var(--accent); }
.node b { display: block; margin-bottom: 8px; font-size: 14px; }
.node span { color: var(--muted); font-size: 12px; line-height: 1.5; }
.status { display: inline-flex; padding: 5px 8px; border-radius: 999px; background: rgba(121,213,173,.12); color: var(--mint); font-size: 11px; font-weight: 820; }
.status.build { background: rgba(155,188,248,.12); color: var(--blue); }
.status.poc { background: rgba(242,206,114,.12); color: var(--yellow); }
.case-table { width: 100%; margin-top: 26px; border-collapse: collapse; border: 1px solid var(--line); font-size: 14px; }
.case-table th, .case-table td { padding: 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.case-table th { color: #7f7f79; font-size: 11px; text-transform: uppercase; }
.case-table tr:last-child td { border-bottom: 0; }
.scheme {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}
.scheme-box { min-height: 168px; padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.scheme-box small { color: var(--accent); font-weight: 850; }
.scheme-box b { display: block; margin: 10px 0; font-size: 17px; }
.scheme-box p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.scheme-arrow { color: var(--accent); text-align: center; font-weight: 900; }
.quote { max-width: 1000px; margin: 30px 0 0; font-size: 28px; line-height: 1.45; font-weight: 760; }
.contact {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  margin-top: 38px;
}
.contact .panel { padding: 24px; }
.contact p { margin: 0; color: var(--muted); line-height: 1.8; }
.slide-foot {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  color: #64645f;
  font-size: 11px;
}
.deck-progress {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  min-width: 62px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(7,7,7,.8);
  color: #b9b9b4;
  font-size: 11px;
  backdrop-filter: blur(12px);
}

.deck-toc {
  position: fixed;
  z-index: 45;
  top: 56px;
  left: 0;
  right: 0;
  height: 46px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(7,7,7,.92);
  backdrop-filter: blur(16px);
}
.deck-toc__label { display: none; }
.deck-toc__items {
  width: 100%;
  display: flex;
  gap: 6px;
  padding: 6px 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
.deck-toc__items::-webkit-scrollbar { display: none; }
.deck-toc button {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  color: #777;
  cursor: pointer;
  text-align: left;
}
.deck-toc button span { font-size: 9px; font-weight: 850; }
.deck-toc button strong { color: inherit; font-size: 11px; white-space: nowrap; }
.deck-toc button:hover { color: #cfcfca; }
.deck-toc button.is-active {
  border-color: rgba(255,157,104,.32);
  background: rgba(255,157,104,.1);
  color: var(--accent);
}
.deck-toc button.product-noktt.is-active {
  border-color: rgba(255,131,91,.38);
  background: rgba(255,131,91,.12);
  color: #ff835b;
}
.deck-toc button.product-purpleprint.is-active {
  border-color: rgba(167,122,255,.4);
  background: rgba(167,122,255,.12);
  color: #a77aff;
}
.deck-toc button.product-graphos.is-active {
  border-color: rgba(126,115,255,.42);
  background: linear-gradient(90deg, rgba(126,115,255,.14), rgba(85,207,195,.09));
  color: #8f85ff;
}

.product-section { --product-color: var(--accent); --product-second: var(--accent); }
.product-section::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--product-color);
}
.product-section::after {
  content: attr(data-product-label);
  position: absolute;
  z-index: 3;
  top: 82px;
  right: 32px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--product-color);
  border-radius: 5px;
  background: rgba(7,7,7,.78);
  color: var(--product-color);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0;
}
.product-section .eyebrow { color: var(--product-color); }
.product-section .slide-foot span:first-child { color: var(--product-color); }
.product-noktt { --accent: #ff835b; --product-color: #ff835b; }
.product-purpleprint { --accent: #a77aff; --product-color: #a77aff; }
.product-graphos { --accent: #7e73ff; --product-color: #7e73ff; --product-second: #55cfc3; }
.product-graphos::before { background: linear-gradient(180deg, var(--product-color), var(--product-second)); }
.slide.light.product-section::after { background: rgba(255,255,255,.88); }

.product-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.product-brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: contain;
}
.product-brand span { font-size: 12px; color: var(--muted); font-weight: 780; }
.product-brand strong { display: block; color: var(--ink); font-size: 17px; }
.brand-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255,255,255,.035);
  color: #d8d8d3;
  font-size: 12px;
  font-weight: 800;
}
.brand-pill img { width: 30px; height: 30px; border-radius: 7px; object-fit: contain; }

.lead-gate[hidden] { display: none; }
.lead-gate { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 18px; }
.lead-gate__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.76); backdrop-filter: blur(12px); }
.lead-gate__dialog {
  position: relative;
  width: min(650px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: #101010;
  box-shadow: 0 24px 90px rgba(0,0,0,.55);
}
.lead-gate__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #aaa;
  font-size: 26px;
  cursor: pointer;
}
.lead-gate__dialog h2 { max-width: 520px; margin: 0; font-size: 29px; line-height: 1.25; }
.lead-gate__intro { margin: 12px 0 22px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.lead-gate__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-gate__grid label { display: grid; gap: 7px; }
.lead-gate__grid label:nth-child(3) { grid-column: 1 / -1; }
.lead-gate__grid label > span { color: #d6d6d1; font-size: 12px; font-weight: 760; }
.lead-gate__grid b { color: var(--accent); font-size: 10px; }
.lead-gate__grid em { color: #777771; font-size: 10px; font-style: normal; }
.lead-gate input, .lead-gate select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #181818;
  color: var(--ink);
  font-size: 14px;
  outline: none;
}
.lead-gate input:focus, .lead-gate select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,157,104,.12); }
.lead-gate__consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; color: #c5c5c0; font-size: 12px; line-height: 1.5; }
.lead-gate__consent input { flex: 0 0 auto; width: 18px; min-height: 18px; margin-top: 1px; accent-color: var(--accent); }
.lead-gate__consent small { display: block; margin-top: 3px; color: #777771; font-size: 10px; }
.lead-gate__error { min-height: 20px; margin: 10px 0 0; color: #ff8d8d; font-size: 12px; }
.lead-gate__submit {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #111;
  font-weight: 850;
  cursor: pointer;
}
.lead-gate__submit:disabled { cursor: wait; opacity: .6; }
.lead-gate__honeypot { position: absolute; left: -9999px; }
.lead-gate-open { overflow: hidden; }

.pdf-link.is-used { color: #777; cursor: not-allowed; }
.copyright-gate[hidden] { display: none; }
.copyright-gate { position: fixed; inset: 0; z-index: 1100; display: grid; place-items: center; padding: 18px; }
.copyright-gate__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.82); backdrop-filter: blur(12px); }
.copyright-gate__dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 30px;
  border: 1px solid rgba(255,157,104,.36);
  border-radius: 8px;
  background: #101010;
  box-shadow: 0 24px 90px rgba(0,0,0,.6);
}
.copyright-gate__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #aaa;
  font-size: 26px;
  cursor: pointer;
}
.copyright-gate__dialog h2 { max-width: 500px; margin: 0; font-size: 29px; line-height: 1.3; }
.copyright-gate__notice {
  margin-top: 22px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: rgba(255,157,104,.07);
  color: #d8d8d3;
  font-size: 13px;
  line-height: 1.65;
}
.copyright-gate__notice strong { color: var(--ink); }
.copyright-gate__notice ul { margin: 12px 0 0; padding-left: 18px; }
.copyright-gate__notice li + li { margin-top: 6px; }
.copyright-gate__consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 20px; color: #d1d1cc; font-size: 13px; line-height: 1.55; }
.copyright-gate__consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; accent-color: var(--accent); }
.copyright-gate__error { min-height: 20px; margin: 12px 0 0; color: #ff9a9a; font-size: 12px; }
.copyright-gate__actions { display: grid; grid-template-columns: 120px 1fr; gap: 10px; margin-top: 4px; }
.copyright-gate__actions button { min-height: 50px; border-radius: 6px; font-weight: 830; cursor: pointer; }
.copyright-gate__cancel { border: 1px solid var(--line); background: transparent; color: #bbb; }
.copyright-gate__submit { border: 0; background: var(--accent); color: #111; }
.copyright-gate__submit:disabled { cursor: not-allowed; opacity: .45; }
.copyright-gate-open { overflow: hidden; }

@media print {
  @page { size: 16in 9in; margin: 0; }
  .site-header, .deck-progress, .deck-toc { display: none !important; }
  html, body, .deck { height: auto !important; overflow: visible !important; background: #070707 !important; }
  .slide {
    width: 16in;
    height: 9in;
    min-height: 9in;
    padding: .7in .72in .45in;
    break-after: page;
    page-break-after: always;
    overflow: hidden;
  }
  .slide:last-child { break-after: auto; page-break-after: auto; }
}

@media (min-width: 1180px) {
  .deck-toc {
    top: 50%;
    left: 18px;
    right: auto;
    width: 148px;
    height: auto;
    display: block;
    padding: 12px;
    transform: translateY(-50%);
    border: 1px solid var(--line);
    border-radius: 7px;
  }
  .deck-toc__label {
    display: block;
    padding: 0 7px 8px;
    color: #5f5f5a;
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
  }
  .deck-toc__items { display: grid; gap: 3px; padding: 0; overflow: visible; }
  .deck-toc button { width: 100%; min-height: 38px; }
  .slide { padding-left: 178px; }
}

@media (max-width: 900px) {
  .header-nav a:not([aria-current="page"]):not(.pdf-link) { display: none; }
  .business-grid, .g2, .g3, .g4, .media-layout, .contact { grid-template-columns: 1fr; }
  .business-card { min-height: 0; }
  .compare { grid-template-columns: 1fr; }
  .compare-arrow { transform: rotate(90deg); }
  .pipeline, .scheme { grid-template-columns: 1fr; }
  .pipeline .node:not(:last-child)::after { display: none; }
  .slide { min-height: auto; padding: 116px 18px 74px; }
  .deck { height: auto; overflow: visible; scroll-snap-type: none; }
  .slide h1 { font-size: 47px; }
  .slide h2 { font-size: 37px; }
  .lead { font-size: 17px; }
  .media-shell, .media-shell img { min-height: 0; }
  .slide-foot { left: 18px; right: 18px; }
  .case-table { font-size: 12px; }
  .case-table th, .case-table td { padding: 10px; }
  .hub { padding-top: 96px; }
  .hub h1 { font-size: 43px; }
  .hub-lead { font-size: 16px; }
  .business-visual { height: 190px; }
  .lead-gate { align-items: end; padding: 0; }
  .lead-gate__dialog {
    width: 100%;
    max-height: 92vh;
    padding: 26px 18px calc(22px + env(safe-area-inset-bottom));
    border-radius: 8px 8px 0 0;
  }
  .lead-gate__dialog h2 { padding-right: 28px; font-size: 24px; }
  .lead-gate__grid { grid-template-columns: 1fr; gap: 12px; }
  .lead-gate__grid label:nth-child(3) { grid-column: auto; }
  .lead-gate input, .lead-gate select { min-height: 48px; font-size: 16px; }
  .copyright-gate { align-items: end; padding: 0; }
  .copyright-gate__dialog {
    width: 100%;
    max-height: 92vh;
    padding: 26px 18px calc(22px + env(safe-area-inset-bottom));
    border-radius: 8px 8px 0 0;
  }
  .copyright-gate__dialog h2 { padding-right: 28px; font-size: 24px; }
  .copyright-gate__actions { grid-template-columns: 90px 1fr; }
  .product-section::after { top: 108px; right: 18px; min-height: 30px; padding: 0 9px; font-size: 10px; }
  .product-section .slide-inner { padding-top: 28px; }
}

@media (max-width: 480px) {
  .header-inner { gap: 8px; }
  .logo { gap: 7px; font-size: 13px; }
  .logo img { width: 24px; height: 24px; }
  .header-nav { gap: 4px; }
  .header-nav a {
    min-height: 34px;
    padding: 0 9px;
    font-size: 11px;
    white-space: nowrap;
  }
}
