/* ============================================================
   Yoowon LDS — Sub-page styles (회사 소개 / 제품 상세 / 등)
   Sub-hero + breadcrumb dropdown + CEO message creative design
   ============================================================ */

/* ===== SUB-HERO BANNER ===== */
.sub-hero {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: var(--navy-3);
}
.sub-hero-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/images/slide-1a.jpg');
  background-size: cover;
  background-position: center 35%;
  filter: saturate(0.92) brightness(0.95);
}
.sub-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(8,26,61,.55) 0%, rgba(15,42,94,.42) 55%, rgba(15,42,94,.32) 100%),
    radial-gradient(circle at 85% 25%, rgba(232,184,75,.14) 0, transparent 50%);
}
.sub-hero-content {
  position: relative; z-index: 1;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; color: #fff;
}
.sub-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 18px;
}
.sub-hero-title {
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  color: #fff;
}

/* ===== BREADCRUMB BAR WITH DROPDOWNS ===== */
.sub-crumb {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 50;
}
.sub-crumb-inner {
  /* 컨텐츠 영역과 동일하게 70% 너비 */
  width: 70%; max-width: none; margin: 0 auto;
  display: flex; align-items: stretch;
}
.crumb-home {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--navy);
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
}
.crumb-home:hover { background: var(--navy-2); color: #fff; }

.crumb-item {
  position: relative;
  border-right: 1px solid var(--line);
  min-width: 200px;
}
.crumb-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%; height: 56px;
  padding: 0 22px;
  background: transparent; border: 0; cursor: pointer;
  font-family: inherit;
  font-size: 15px; color: var(--fg-2); font-weight: 500;
  text-align: left;
  transition: background .15s, color .15s;
}
.crumb-btn svg {
  color: var(--muted);
  transition: transform .2s, color .15s;
}
.crumb-item.current .crumb-btn { color: var(--navy); font-weight: 700; }
.crumb-item:hover .crumb-btn,
.crumb-item:focus-within .crumb-btn { background: var(--bg); color: var(--navy); }
.crumb-item:hover .crumb-btn svg,
.crumb-item:focus-within .crumb-btn svg { color: var(--navy); transform: rotate(180deg); }

.crumb-dd {
  position: absolute; top: 100%; left: -1px; right: -1px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  list-style: none; padding: 6px; margin: 0;
  box-shadow: 0 18px 36px rgba(15,42,94,.12);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 60;
}
.crumb-item:hover .crumb-dd,
.crumb-item:focus-within .crumb-dd {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.crumb-dd li a {
  display: block;
  padding: 11px 16px; border-radius: 6px;
  color: var(--fg-2); font-size: 14px;
  transition: background .15s, color .15s;
}
.crumb-dd li a:hover { background: var(--bg); color: var(--navy); }
.crumb-dd li a.active { color: var(--navy); font-weight: 700; background: var(--bg); }

/* ===== CEO MESSAGE SECTION ===== */
.ceo-section {
  position: relative; overflow: hidden;
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.ceo-section-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.ceo-section-bg::before {
  /* large gold accent top-right */
  content: ""; position: absolute; top: -180px; right: -180px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(232,184,75,.12), transparent 70%);
}
.ceo-section-bg::after {
  /* teal accent bottom-left */
  content: ""; position: absolute; bottom: -200px; left: -200px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(13,124,110,.10), transparent 70%);
}

.ceo-container {
  /* 좌우 15% 여백 → 컨텐츠 70% 너비 */
  width: 70%; max-width: none; margin: 0 auto;
  position: relative; z-index: 1;
}
.ceo-grid {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: flex-start;
}

/* === Sidebar === */
.ceo-side { position: sticky; top: 100px; }
.ceo-portrait {
  position: relative; overflow: hidden;
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(140deg, var(--navy-2) 0%, var(--navy) 50%, var(--navy-3) 100%);
  border-radius: 22px;
  margin-bottom: 28px;
  box-shadow: 0 24px 50px rgba(15,42,94,.25);
  display: flex; align-items: center; justify-content: center;
}
.ceo-portrait-bg {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -28deg, transparent 0, transparent 30px,
    rgba(255,255,255,.04) 30px, rgba(255,255,255,.04) 31px
  );
}
.ceo-portrait::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 110px; height: 110px;
  background: linear-gradient(225deg, var(--gold) 0%, transparent 65%);
  opacity: 0.6;
}
.ceo-portrait::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 80px; height: 80px;
  background: linear-gradient(45deg, var(--teal) 0%, transparent 60%);
  opacity: 0.4;
}
.ceo-portrait-monogram {
  position: relative; z-index: 1;
  color: rgba(255,255,255,.16);
  font-size: 68px; font-weight: 900;
  letter-spacing: -0.04em; line-height: 0.9;
  text-align: center;
}
.ceo-portrait-monogram span {
  font-size: 38px;
  display: block;
  margin-top: 4px;
}
.ceo-portrait-badge {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  background: rgba(255,255,255,.10); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  padding: 6px 14px; border-radius: 999px;
}

.ceo-side-sig {
  text-align: center;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}
.ceo-sig-role {
  font-size: 11px; color: var(--muted);
  font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
}
.ceo-sig-name {
  font-size: 26px; font-weight: 800;
  color: var(--navy); letter-spacing: 0.04em;
  margin: 8px 0 4px;
}
.ceo-sig-company {
  font-size: 12px; color: var(--muted); letter-spacing: 0.04em;
}

/* === Main message — fills available width next to sidebar === */
.ceo-main { min-width: 0; }

.ceo-intro { margin-bottom: 64px; }
.ceo-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 20px;
}
.ceo-eyebrow .eyebrow-line {
  width: 36px; height: 2px; background: var(--gold);
}
.ceo-h {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800; color: var(--navy);
  letter-spacing: -0.025em; line-height: 1.2;
  margin: 0 0 22px;
}
.ceo-h em {
  color: var(--gold); font-style: normal;
  position: relative; padding: 0 4px;
}
.ceo-h em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em;
  height: 10px; background: rgba(232,184,75,.24); z-index: -1;
}
.ceo-lead {
  font-size: 20px; line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
  letter-spacing: -0.005em;
}

/* === Chapter blocks === */
.ceo-blocks {
  display: flex; flex-direction: column; gap: 24px;
}
.ceo-block {
  position: relative; overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 44px;
  box-shadow: 0 2px 8px rgba(15,42,94,.04);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.ceo-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(15,42,94,.10);
}
.ceo-block::before {
  /* Left rail accent */
  content: ""; position: absolute; top: 40px; bottom: 40px; left: 0;
  width: 4px; border-radius: 0 4px 4px 0;
  background: var(--gold);
  transition: top .35s, bottom .35s;
}
.ceo-block:hover::before { top: 0; bottom: 0; }
.ceo-block::after {
  /* big chapter number watermark in bg */
  content: attr(data-num);
  position: absolute; top: -10px; right: 24px;
  font-size: 100px; font-weight: 900;
  color: rgba(15,42,94,.04);
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
  font-family: "Spoqa Han Sans Neo", sans-serif;
}

.cb-num {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 12px;
  padding: 5px 12px;
  background: rgba(232,184,75,.12);
  border-radius: 999px;
}
.cb-h {
  font-size: 24px; font-weight: 800;
  color: var(--navy); letter-spacing: -0.015em;
  margin: 0 0 18px;
  position: relative; z-index: 1;
}
.cb-p {
  font-size: 18px; line-height: 1.85;
  color: var(--fg-2); margin: 0;
  position: relative; z-index: 1;
}

.cb-list { list-style: none; padding: 0; margin: 0; position: relative; z-index: 1; }
.cb-list li {
  display: flex; gap: 22px; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 18px;
}
.cb-list li:last-child { border-bottom: 0; }
.cb-k {
  flex-shrink: 0; min-width: 200px;
  color: var(--navy); font-weight: 700;
  position: relative; padding-left: 16px;
}
.cb-k::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); transform: translateY(-50%);
}
.cb-v {
  color: var(--fg-2); flex: 1; line-height: 1.6;
}

/* Bottom signature */
.ceo-bottom-sig {
  margin-top: 56px; padding-top: 32px;
  border-top: 2px solid var(--navy);
  text-align: right;
  display: flex; justify-content: flex-end; align-items: center;
  gap: 12px; flex-wrap: wrap;
  font-size: 18px; color: var(--navy);
  letter-spacing: 0.02em;
}
.ceo-bs-company { font-weight: 700; }
.ceo-bs-divider { width: 1px; height: 14px; background: var(--line); }
.ceo-bs-role { color: var(--fg-2); font-size: 14px; }
.ceo-bs-name { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: 0.06em; padding: 0 6px; }
.ceo-bs-drim { color: var(--muted); font-size: 14px; }

/* ============================================================
   COMPANY HISTORY — creative vertical timeline
   ============================================================ */

/* Shared sub-page container (80% width with 10% gutters) */
.hist-container {
  width: 80%; max-width: none; margin: 0 auto;
  position: relative; z-index: 1;
}

/* --- Intro block with big year + stats --- */
.hist-intro {
  position: relative; overflow: hidden;
  padding: 80px 0 64px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.hist-intro-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hist-intro-bg::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(232,184,75,.12), transparent 70%);
}
.hi-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px;
  align-items: center;
}
.hi-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hi-eyebrow .eyebrow-line { width: 36px; height: 2px; background: var(--gold); }
.hi-h {
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 900;
  color: var(--navy); line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  font-family: "Spoqa Han Sans Neo", sans-serif;
}
.hi-h em {
  color: var(--gold); font-style: normal; position: relative;
}
.hi-h em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.04em;
  height: 16px; background: rgba(232,184,75,.22); z-index: -1;
}
.hi-p {
  font-size: 18px; line-height: 1.7;
  color: var(--fg-2); margin: 0;
  max-width: 560px;
}
.hi-stats {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.hi-stats li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.hi-stats li:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(15,42,94,.08); }
.hi-stats li::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.hi-stats li:hover::before { transform: scaleX(1); }
.his-n {
  font-size: 36px; font-weight: 900;
  color: var(--navy); letter-spacing: -0.03em; line-height: 1;
}
.his-l {
  font-size: 11px; font-weight: 700;
  color: var(--muted); letter-spacing: 0.18em;
}

/* --- Timeline section --- */
.hist-timeline-wrap {
  position: relative; overflow: hidden;
  padding: 64px 0 120px;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}
.hist-timeline-wrap::before {
  /* subtle dotted backdrop */
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(15,42,94,.05) 1.4px, transparent 1.4px);
  background-size: 32px 32px;
  pointer-events: none;
}
.timeline-v {
  position: relative;
  padding-left: 80px;
}
/* Vertical spine */
.timeline-v::before {
  content: ""; position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 3px; border-radius: 2px;
  background: linear-gradient(180deg,
    var(--gold) 0%,
    var(--navy) 12%,
    var(--navy) 88%,
    var(--gold) 100%);
}

.tl-era {
  position: relative;
  margin-bottom: 56px;
}
.tl-era:last-of-type { margin-bottom: 36px; }

/* Year marker on spine */
.tl-marker {
  position: absolute; left: -67px; top: 30px;
  width: 26px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2;
}
.tl-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff;
  border: 4px solid var(--navy);
  box-shadow: 0 0 0 8px rgba(15,42,94,.06);
}
.tl-era.is-current .tl-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 10px rgba(232,184,75,.20), 0 4px 16px rgba(232,184,75,.4);
}
.tl-era.is-origin .tl-dot {
  background: var(--navy);
  border-color: var(--navy);
}
.tl-badge {
  font-size: 9px; font-weight: 800; letter-spacing: 0.16em;
  color: var(--gold);
  background: var(--navy);
  padding: 3px 8px; border-radius: 999px;
  white-space: nowrap;
  margin-top: 4px;
}
.tl-era.is-current .tl-badge {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 12px rgba(232,184,75,.32);
}

/* Era card */
.tl-card {
  position: relative; overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 40px;
  box-shadow: 0 2px 8px rgba(15,42,94,.04);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.tl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15,42,94,.10);
}
.tl-era.is-current .tl-card {
  border-color: rgba(232,184,75,.35);
  background: linear-gradient(180deg, #fff 0%, rgba(232,184,75,.04) 100%);
}
.tl-era.is-current .tl-card::before {
  /* current era top stripe */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
}
.tl-era.is-origin .tl-card {
  background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy) 100%);
  border-color: transparent;
  color: #fff;
}
.tl-era.is-origin .tl-card::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at 100% 0, rgba(232,184,75,.22), transparent 70%);
  pointer-events: none;
}

/* Card head */
.tl-card-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px; margin-bottom: 22px;
  border-bottom: 1px solid var(--line-2);
}
.tl-era.is-origin .tl-card-head { border-bottom-color: rgba(255,255,255,.12); }
.tl-period {
  font-size: 14px; color: var(--gold); font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.tl-tagline {
  font-size: 22px; font-weight: 800;
  color: var(--navy); letter-spacing: -0.02em;
  line-height: 1.25;
  flex: 1;
}
.tl-era.is-origin .tl-tagline { color: #fff; }
.tl-stat {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.tl-era.is-origin .tl-stat { border-left-color: rgba(255,255,255,.16); }
.tl-stat-n {
  font-size: 32px; font-weight: 900;
  color: var(--gold); letter-spacing: -0.03em; line-height: 1;
}
.tl-stat-l {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.06em;
}
.tl-era.is-origin .tl-stat-l { color: rgba(255,255,255,.6); }

/* Milestone list */
.tl-items { list-style: none; padding: 0; margin: 0; }
.tl-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line-2);
}
.tl-era.is-origin .tl-item { border-bottom-color: rgba(255,255,255,.08); }
.tl-item:last-child { border-bottom: 0; }

.tl-when {
  flex-shrink: 0; min-width: 78px;
  font-size: 12.5px; font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
}
.tl-era.is-origin .tl-when { color: var(--gold); }

.tl-tag {
  flex-shrink: 0; min-width: 80px;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  text-align: center;
  line-height: 1.4;
}
.tl-tag[data-cat="auto"]      { background: rgba(15,42,94,.10); color: var(--navy); }
.tl-tag[data-cat="display"]   { background: rgba(13,124,110,.12); color: var(--teal); }
.tl-tag[data-cat="light"]     { background: rgba(232,184,75,.16); color: #8a6f24; }
.tl-tag[data-cat="patent"]    { background: rgba(110,55,180,.10); color: #6a3aa8; }
.tl-tag[data-cat="cert"]      { background: rgba(20,166,149,.12); color: #0a7066; }
.tl-tag[data-cat="milestone"] { background: var(--gold); color: var(--navy); }

.tl-era.is-origin .tl-tag[data-cat="auto"]      { background: rgba(255,255,255,.10); color: #cdd6e8; }
.tl-era.is-origin .tl-tag[data-cat="display"]   { background: rgba(20,166,149,.20); color: #5be0c8; }
.tl-era.is-origin .tl-tag[data-cat="light"]     { background: rgba(232,184,75,.20); color: var(--gold-2); }
.tl-era.is-origin .tl-tag[data-cat="patent"]    { background: rgba(165,120,230,.20); color: #c8a8f0; }
.tl-era.is-origin .tl-tag[data-cat="cert"]      { background: rgba(20,166,149,.20); color: #5be0c8; }
.tl-era.is-origin .tl-tag[data-cat="milestone"] { background: var(--gold); color: var(--navy); }
.tl-era.is-origin .tl-tag[data-cat="mobile"]    { background: rgba(255,140,140,.20); color: #ffb1b1; }

.tl-item-text {
  flex: 1;
  font-size: 16px; line-height: 1.6;
  color: var(--fg-2);
}
.tl-era.is-origin .tl-item-text { color: rgba(255,255,255,.85); }

/* Origin endpoint */
.tl-origin {
  position: relative;
  margin-top: 20px;
  padding-left: 0;
  display: flex; align-items: center; gap: 14px;
}
.tl-origin-dot {
  position: absolute; left: -67px; top: 50%; transform: translate(0, -50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(232,184,75,.18), 0 0 0 14px rgba(232,184,75,.06);
}
.tl-origin-label {
  display: inline-block;
  padding: 7px 16px; border-radius: 999px;
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
}

/* ============================================================
   CERTIFICATIONS & PATENTS
   ============================================================ */

/* Cert / Location / Products intro — centered layout, 1×4 stats row */
.hist-intro.cert-intro .hi-h {
  font-size: clamp(29px, 3.5vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.hist-intro.cert-intro .hi-h em::after {
  height: 8px;
}
.hist-intro.cert-intro .hi-grid {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  gap: 36px;
  align-items: center;
}
.hist-intro.cert-intro .hi-text {
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
}
.hist-intro.cert-intro .hi-eyebrow { justify-content: center; }
.hist-intro.cert-intro .hi-p {
  max-width: 1240px;
  margin: 0 auto;
}
.hist-intro.cert-intro .hi-stats {
  grid-template-columns: repeat(4, 1fr);
  max-width: none;
  width: 100%;
}
.cert-section {
  position: relative; overflow: hidden;
  padding: 80px 0 64px;
  background: #fff;
}
.pat-section {
  position: relative; overflow: hidden;
  padding: 40px 0 120px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.pat-section::before {
  /* dotted backdrop */
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(15,42,94,.05) 1.4px, transparent 1.4px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cert-head { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
.cert-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 16px;
}
.cert-eyebrow .eyebrow-line { width: 36px; height: 2px; background: var(--gold); }
.cert-h {
  font-size: clamp(28px, 3.2vw, 38px); font-weight: 800;
  color: var(--navy); letter-spacing: -0.025em;
  margin: 0 auto 14px;
}
.cert-desc {
  color: var(--fg-2); font-size: 17px; line-height: 1.65;
  max-width: 760px; margin: 0 auto;
}

/* ISO certificate cards */
.iso-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  position: relative; z-index: 1;
}
.iso-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-3) 0%, var(--navy) 50%, var(--navy-2) 100%);
  border-radius: 26px;
  padding: 40px 44px 36px;
  color: #fff;
  box-shadow: 0 20px 44px rgba(15,42,94,.20);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.iso-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(15,42,94,.30);
}
.iso-watermark {
  position: absolute; top: -16px; right: 24px;
  font-size: 120px; font-weight: 900;
  color: rgba(232,184,75,.08);
  letter-spacing: -0.05em; line-height: 1;
  pointer-events: none;
  font-family: "Spoqa Han Sans Neo", sans-serif;
}
.iso-seal {
  position: absolute; top: 32px; right: 36px;
  width: 78px; height: 78px;
  color: var(--gold);
  filter: drop-shadow(0 4px 12px rgba(232,184,75,.32));
}
.iso-seal svg { width: 100%; height: 100%; }

.iso-head { position: relative; z-index: 1; margin-bottom: 22px; }
.iso-since {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  color: var(--gold); letter-spacing: 0.18em;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(232,184,75,.14);
  border: 1px solid rgba(232,184,75,.3);
  margin-bottom: 18px;
}
.iso-code {
  font-size: clamp(42px, 4.4vw, 54px);
  font-weight: 900;
  color: #fff; letter-spacing: -0.03em; line-height: 1;
  margin: 0;
}
.iso-ver {
  font-size: 0.5em; font-weight: 700;
  color: var(--gold); margin-left: 8px;
  letter-spacing: 0;
}
.iso-name {
  margin: 12px 0 0; font-size: 18px;
  font-weight: 600; color: rgba(255,255,255,.92);
  letter-spacing: -0.01em;
}
.iso-desc {
  color: rgba(255,255,255,.78);
  font-size: 16px; line-height: 1.7;
  margin: 0 0 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.iso-features { position: relative; z-index: 1; }
.iso-feat-label {
  color: var(--gold);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 12px;
}
.iso-features ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
}
.iso-features li {
  position: relative; padding-left: 18px;
  font-size: 15px; color: rgba(255,255,255,.88);
  line-height: 1.5;
}
.iso-features li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}

/* Patent cards */
.pat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  position: relative; z-index: 1;
}
.pat-card {
  position: relative; overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .2s;
}
.pat-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 22px 48px rgba(15,42,94,.10);
}
.pat-card[data-cat="measurement"] { --pc: var(--navy); --pc-rgb: 15,42,94; }
.pat-card[data-cat="inspection"]  { --pc: var(--teal); --pc-rgb: 13,124,110; }
.pat-card[data-cat="lighting"]    { --pc: #c48e1f;     --pc-rgb: 196,142,31; }
.pat-card[data-cat="inverter"]    { --pc: #6a3aa8;     --pc-rgb: 110,55,180; }

.pat-card::before {
  /* top accent stripe */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--pc); z-index: 3;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.pat-card:hover::before { transform: scaleX(1); }

/* Certificate thumbnail (clickable) */
.pat-cert-btn {
  display: block; position: relative;
  width: 100%; padding: 0; border: 0; cursor: zoom-in;
  background: #f3f6fb;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 600 / 384;
}
.pat-cert-thumb {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .4s var(--ease-out);
}
.pat-card:hover .pat-cert-thumb { transform: scale(1.04); }
.pat-cert-zoom {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(15,42,94,.55);
  color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .02em;
  opacity: 0; transition: opacity .25s;
}
.pat-cert-zoom svg { width: 20px; height: 20px; }
.pat-card:hover .pat-cert-zoom,
.pat-cert-btn:focus-visible .pat-cert-zoom { opacity: 1; }

.pat-info { padding: 20px 24px 22px; display: flex; flex-direction: column; flex: 1; }
.pat-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.pat-year {
  font-size: 13px; font-weight: 800;
  color: var(--pc); letter-spacing: 0.06em;
}
.pat-tag {
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(var(--pc-rgb), 0.10);
  color: var(--pc);
}
.pat-body { flex: 1; position: relative; z-index: 1; display: flex; flex-direction: column; }
.pat-title {
  font-size: 17px; font-weight: 700;
  color: var(--navy); line-height: 1.45;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  flex: 1;
}
.pat-nums { margin-top: auto; border-top: 1px solid var(--line); padding-top: 12px; }
.pat-no-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 4px;
}
.pat-no-row:last-child { margin-bottom: 0; }
.pat-no-label {
  flex-shrink: 0; width: 64px;
  font-size: 10px; font-weight: 800;
  color: var(--muted); letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pat-no {
  font-size: 14.5px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.005em;
  font-feature-settings: "tnum";
}
.pat-no-app { font-weight: 600; color: var(--fg-2); }

/* ===== Certificate Lightbox ===== */
.cert-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 4vh 4vw;
}
.cert-lightbox.open { display: flex; }
.clb-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,18,40,.86);
  backdrop-filter: blur(3px);
  animation: clbFade .2s ease;
}
.clb-stage {
  position: relative; z-index: 1;
  max-width: 1000px; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  animation: clbPop .25s var(--ease-out);
}
@keyframes clbFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes clbPop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.clb-close {
  position: absolute; top: -46px; right: 0;
  width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.clb-close:hover { background: rgba(255,255,255,.28); }
.clb-figure { margin: 0; width: 100%; }
.clb-img {
  display: block; width: 100%; height: auto;
  max-height: 82vh; object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  background: #fff;
}
.clb-caption {
  margin-top: 16px; text-align: center;
  color: #fff; font-size: 15px; font-weight: 600; letter-spacing: -.01em;
}

/* Cert note CTA strip */
.cert-note {
  margin-top: 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 18px;
  color: #fff;
  position: relative; z-index: 1;
}
.cert-note-text { display: flex; flex-direction: column; gap: 4px; }
.cn-label {
  font-size: 11px; font-weight: 800;
  color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase;
}
.cn-msg {
  font-size: 16px; color: rgba(255,255,255,.92);
}
.cert-note-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 14px;
  padding: 12px 22px; border-radius: 999px;
  transition: background .15s, transform .15s, color .15s;
}
.cert-note-cta:hover {
  background: var(--gold-2); color: var(--navy);
  transform: translateX(4px);
}

/* ============================================================
   PRODUCT CATEGORY PAGES
   ============================================================ */
.prod-section {
  position: relative; overflow: hidden;
  padding: 64px 0 100px;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 60%, var(--bg) 100%);
}
.prod-section-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.prod-section-bg::before {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(232,184,75,.10), transparent 70%);
}
.prod-section-bg::after {
  content: ""; position: absolute; bottom: -120px; left: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(13,124,110,.10), transparent 70%);
}
.prod-list {
  display: flex; flex-direction: column; gap: 28px;
  position: relative; z-index: 1;
}
.prod-card {
  position: relative; overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  display: grid; grid-template-columns: 560px 1fr;
  gap: 44px;
  align-items: stretch;
  box-shadow: 0 2px 8px rgba(15,42,94,.04);
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .25s;
  scroll-margin-top: 110px; /* leave room for sticky header on anchor jump */
}
/* When user navigates via #anchor — highlight the targeted product card */
.prod-card:target {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(232,184,75,.18), 0 22px 48px rgba(15,42,94,.14);
  animation: prodTargetFlash 2.4s ease-out 1;
}
@keyframes prodTargetFlash {
  0%   { box-shadow: 0 0 0 12px rgba(232,184,75,.34), 0 22px 48px rgba(15,42,94,.14); }
  100% { box-shadow: 0 0 0 4px rgba(232,184,75,.18),  0 22px 48px rgba(15,42,94,.14); }
}
.prod-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(15,42,94,.14);
}
.prod-card.is-new::before {
  /* gold gradient top stripe for NEW products */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 100%);
}

/* Big number watermark */
.prod-num {
  position: absolute; top: 18px; right: 32px;
  font-size: 120px; font-weight: 900;
  color: rgba(15,42,94,.05);
  letter-spacing: -0.06em; line-height: 1;
  font-family: "Spoqa Han Sans Neo", sans-serif;
  pointer-events: none;
  z-index: 0;
}
.prod-card.is-new .prod-num { color: rgba(232,184,75,.12); }

/* Photo column */
.prod-photo {
  position: relative;
  align-self: stretch;
}
.prod-photo-frame {
  position: relative; overflow: hidden;
  width: 100%; aspect-ratio: 5 / 4;
  border-radius: 18px;
  background: linear-gradient(160deg, #1d3a78 0%, #0d1f48 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(15,42,94,.16);
}
.prod-photo-frame img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.4));
  position: relative; z-index: 1;
}
.prod-photo-corner {
  position: absolute; top: 0; right: 0;
  width: 90px; height: 90px;
  background: linear-gradient(225deg, var(--gold) 0%, transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}
.prod-new-pill {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--navy);
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.2em;
  padding: 4px 10px; border-radius: 999px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(232,184,75,.4);
}
.prod-photo-accent {
  position: absolute; bottom: -16px; right: -16px;
  width: 110px; height: 110px;
  color: var(--gold);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(15,42,94,.12);
  transition: transform .3s var(--ease-out);
  z-index: 2;
}
.prod-card:hover .prod-photo-accent {
  transform: rotate(-8deg) scale(1.06);
}
.prod-photo-accent svg { width: 70px; height: 70px; }

/* Info column */
.prod-info {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
}
.prod-info-head {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.prod-code {
  font-size: 11.5px; font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.18em;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(232,184,75,.12);
  border: 1px solid rgba(232,184,75,.32);
}
.prod-target {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600;
  color: var(--teal);
  padding: 5px 12px; border-radius: 999px;
  background: rgba(13,124,110,.10);
}
.prod-name {
  font-size: clamp(26px, 2.8vw, 34px); font-weight: 800;
  color: var(--navy); letter-spacing: -0.02em; line-height: 1.2;
  margin: 0 0 14px;
}
.prod-summary {
  color: var(--fg-2); font-size: 18px; line-height: 1.65;
  margin: 0 0 24px;
}

/* Features list */
.prod-features {
  margin-bottom: 20px;
  background: var(--bg);
  border-radius: 14px;
  padding: 18px 22px;
}
.prod-feat-label {
  font-size: 10.5px; font-weight: 800;
  color: var(--navy); letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 10px;
}
.prod-features ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px;
}
.prod-features li {
  position: relative; padding-left: 20px;
  font-size: 18px; color: var(--fg-2);
  line-height: 1.55;
}
.prod-features li::before {
  content: ""; position: absolute; left: 4px; top: 11px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}

/* Specs (optional inline spec list) */
.prod-specs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px;
  margin-bottom: 20px;
}
.prod-spec {
  background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.prod-spec-k {
  font-size: 11px; color: var(--muted);
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.prod-spec-v { font-size: 14px; font-weight: 700; color: var(--navy); }

/* CTA row */
.prod-cta-row {
  margin-top: auto;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.prod-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  font-weight: 700; font-size: 14px;
  padding: 11px 22px; border-radius: 999px;
  border: 1.5px solid var(--navy);
  transition: background .18s, color .18s, transform .15s, box-shadow .2s;
}
.prod-cta:hover {
  background: var(--navy); color: #fff;
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(15,42,94,.28);
}
.prod-cta-secondary {
  background: transparent; color: var(--fg-2);
  border-color: var(--line);
}
.prod-cta-secondary:hover { background: var(--bg); color: var(--navy); transform: translateX(0); box-shadow: none; }

/* Bottom CTA for product page */
.prod-bottom-cta {
  margin-top: 56px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 50%, var(--navy-3) 100%);
  border-radius: 22px;
  padding: 36px 44px;
  color: #fff;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 22px;
  box-shadow: 0 18px 38px rgba(15,42,94,.20);
}
.prod-bottom-cta::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(232,184,75,.20), transparent 70%);
  pointer-events: none;
}
.pbc-text { position: relative; z-index: 1; max-width: 600px; }
.pbc-eyebrow {
  font-size: 11px; font-weight: 800;
  color: var(--gold); letter-spacing: 0.22em;
  margin-bottom: 8px;
}
.pbc-h {
  font-size: clamp(20px, 2.2vw, 26px); font-weight: 800;
  color: #fff; letter-spacing: -0.02em; line-height: 1.2;
  margin: 0 0 8px;
}
.pbc-p {
  color: rgba(255,255,255,.78);
  font-size: 15px; line-height: 1.6;
  margin: 0;
}
.pbc-btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   PRODUCT CARD — RESPONSIVE BREAKPOINTS (Galaxy · iPhone · Tablet · Laptop)
   ============================================================ */
/* Large desktop default: photo 560px + text 1fr */

/* Small laptop (≤1380px): reduce photo column */
@media (max-width: 1380px) {
  .prod-card { grid-template-columns: 480px 1fr; gap: 36px; }
  .prod-name { font-size: 30px; }
}

/* Tablet landscape / small laptop (≤1200px): smaller photo, stack-friendly spacing */
@media (max-width: 1200px) {
  .prod-card { grid-template-columns: 400px 1fr; gap: 30px; padding: 30px; }
  .prod-num { font-size: 100px; top: 14px; right: 24px; }
  .prod-name { font-size: 26px; }
  .prod-summary { font-size: 17px; }
  .prod-features li { font-size: 17px; }
  .prod-features ul { gap: 6px 18px; }
}

/* Tablet portrait (≤1024px): photo and text balanced */
@media (max-width: 1024px) {
  .prod-card { grid-template-columns: 340px 1fr; gap: 24px; padding: 26px; }
  .prod-name { font-size: 24px; }
  .prod-summary { font-size: 16px; }
  .prod-features li { font-size: 16px; padding-left: 18px; }
  .prod-features li::before { top: 9px; }
  .pat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   COMING SOON (placeholder for empty sub-pages)
   ============================================================ */
.page-soon {
  padding: 120px 0 160px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.ps-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 72px 48px;
  text-align: center;
  box-shadow: 0 18px 38px rgba(15,42,94,.06);
}
.ps-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(232,184,75,.14);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.ps-icon svg { width: 32px; height: 32px; }
.ps-msg {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0;
}
.ps-see-also {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.ps-sa-eyebrow {
  font-size: 11px; font-weight: 800;
  color: var(--muted); letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ps-sa-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px;
  background: var(--navy); color: #fff;
  font-size: 14px; font-weight: 700;
  transition: background .15s, color .15s, transform .15s;
}
.ps-sa-link:hover {
  background: var(--gold); color: var(--navy);
  transform: translateX(4px);
}

/* ============================================================
   OEM / ODM PAGE  (legacy — page now uses .page-soon)
   ============================================================ */

/* 4-Phase process flow */
.oem-process {
  padding: 80px 0 60px;
  background: #fff;
}
.phase-flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  position: relative;
}
.phase-card {
  position: relative; overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .25s;
}
.phase-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 22px 48px rgba(15,42,94,.12);
}
.phase-card::before {
  /* connector arrow between cards */
  content: ""; position: absolute; right: -18px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  z-index: 2;
}
.phase-card:last-child::before { display: none; }
.ph-num {
  font-size: 56px; font-weight: 900;
  color: rgba(232,184,75,.18);
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 14px;
  font-family: "Spoqa Han Sans Neo", sans-serif;
}
.ph-tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 800;
  color: var(--gold); letter-spacing: 0.18em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(232,184,75,.12);
  margin-bottom: 12px;
}
.ph-h {
  font-size: 20px; font-weight: 800;
  color: var(--navy); letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.ph-p {
  font-size: 14.5px; line-height: 1.6;
  color: var(--fg-2); margin: 0;
}

/* Customization scope */
.oem-caps {
  position: relative; overflow: hidden;
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}
.oem-caps-bg::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,124,110,.10), transparent 70%);
}
.cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.cap-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform .25s, box-shadow .25s, border-color .2s;
}
.cap-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 18px 38px rgba(15,42,94,.10);
}
.cap-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(13,124,110,.10), rgba(13,124,110,.22));
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.cap-ico svg { width: 26px; height: 26px; }
.cap-card[data-cap="electrical"] .cap-ico { background: linear-gradient(135deg, rgba(15,42,94,.10), rgba(15,42,94,.22)); color: var(--navy); }
.cap-card[data-cap="optical"]    .cap-ico { background: linear-gradient(135deg, rgba(232,184,75,.16), rgba(232,184,75,.30)); color: #8a6f24; }
.cap-card[data-cap="mech"]       .cap-ico { background: linear-gradient(135deg, rgba(31,63,120,.10), rgba(31,63,120,.22)); color: var(--navy-2); }
.cap-card[data-cap="software"]   .cap-ico { background: linear-gradient(135deg, rgba(110,55,180,.10), rgba(110,55,180,.22)); color: #6a3aa8; }
.cap-card[data-cap="ops"]        .cap-ico { background: linear-gradient(135deg, rgba(206,90,90,.10), rgba(206,90,90,.22)); color: #b3424b; }

.cap-h {
  font-size: 18px; font-weight: 800;
  color: var(--navy); margin: 0 0 12px;
}
.cap-p {
  font-size: 15px; line-height: 1.7;
  color: var(--fg-2); margin: 0;
}

/* Reference projects table */
.oem-refs {
  padding: 80px 0 60px;
  background: #fff;
}
.ref-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15,42,94,.04);
}
.ref-head, .ref-row {
  display: grid; grid-template-columns: 60px 1.2fr 1.6fr 2fr;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
}
.ref-head {
  background: var(--navy);
  color: #fff;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.ref-head > span:first-child { display: none; }
.ref-row {
  border-top: 1px solid var(--line-2);
  font-size: 15px;
  transition: background .15s;
}
.ref-row:hover { background: var(--bg); }
.rr-num {
  font-size: 13px; font-weight: 800;
  color: var(--gold); letter-spacing: 0.06em;
}
.rr-1 {
  font-weight: 700; color: var(--navy);
}
.rr-2 { color: var(--fg-2); }
.rr-3 { color: var(--muted); font-size: 14px; }

/* Start project CTA */
.oem-cta-section { padding: 40px 0 100px; }
.oem-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy-3) 100%);
  border-radius: 24px;
  padding: 48px 56px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 32px;
  color: #fff;
  box-shadow: 0 22px 48px rgba(15,42,94,.20);
}
.oc-corner {
  position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at 100% 0, rgba(232,184,75,.22), transparent 70%);
  pointer-events: none;
}
.oc-text { position: relative; z-index: 1; max-width: 640px; }
.oc-eyebrow {
  font-size: 11px; font-weight: 800;
  color: var(--gold); letter-spacing: 0.24em;
  margin-bottom: 10px;
}
.oc-h {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800; color: #fff;
  letter-spacing: -0.02em; line-height: 1.2;
  margin: 0 0 10px;
}
.oc-p {
  font-size: 15px; line-height: 1.65;
  color: rgba(255,255,255,.78);
  margin: 0;
}
.oc-btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   LOCATION / DIRECTIONS PAGE
   ============================================================ */
.loc-section {
  position: relative; overflow: hidden;
  padding: 80px 0 120px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.loc-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.loc-map {
  position: relative; overflow: hidden;
  border-radius: 22px;
  height: 480px;
  border: 1px solid var(--line);
  box-shadow: 0 22px 48px rgba(15,42,94,.10);
  background: var(--bg);
}
.loc-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.loc-info-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-3) 0%, var(--navy) 100%);
  border-radius: 22px;
  padding: 40px 36px;
  color: #fff;
  box-shadow: 0 22px 48px rgba(15,42,94,.18);
}
.loc-info-card::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at 100% 0, rgba(232,184,75,.18), transparent 70%);
  pointer-events: none;
}
.loc-pin {
  position: absolute; top: 28px; right: 28px;
  width: 40px; height: 40px;
  color: var(--gold);
  z-index: 1;
}
.loc-pin svg { width: 100%; height: 100%; }

.loc-block { position: relative; z-index: 1; margin-bottom: 20px; }
.loc-label {
  font-size: 11px; font-weight: 800;
  color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 8px;
}
.loc-company {
  font-size: 20px; font-weight: 800;
  color: #fff; letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.loc-addr {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,.86);
}
.loc-postal {
  display: inline-block; margin-left: 8px;
  font-size: 12px; color: var(--gold);
  padding: 3px 9px; border-radius: 999px;
  border: 1px solid rgba(232,184,75,.4);
  background: rgba(232,184,75,.08);
}

.loc-divider {
  height: 1px; background: rgba(255,255,255,.12);
  margin: 22px 0;
  position: relative;
}

.loc-cells {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px;
  position: relative; z-index: 1;
}
.loc-cell:nth-child(3) { grid-column: span 2; }
.loc-cell-val {
  font-size: 17px; color: #fff;
  font-weight: 600; letter-spacing: -0.005em;
  margin-top: 6px;
}
.loc-cell-val.mono { font-feature-settings: "tnum"; letter-spacing: 0.04em; }
.loc-cell-val a { color: #fff; }
.loc-cell-val a:hover { color: var(--gold); }
.loc-cell-sub {
  display: block;
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

/* Transit cards */
.loc-transit {
  margin-bottom: 40px;
}
.loc-transit-h {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: clamp(22px, 2.4vw, 28px); font-weight: 800;
  color: var(--navy); letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.loc-transit-h .eyebrow-line {
  width: 36px; height: 2px; background: var(--gold);
}
.tr-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.tr-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform .25s, box-shadow .25s, border-color .2s;
}
.tr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15,42,94,.10);
  border-color: var(--gold);
}
.tr-ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.tr-ico svg { width: 26px; height: 26px; }
.tr-ico-subway { background: rgba(15,42,94,.10); color: var(--navy); }
.tr-ico-bus    { background: rgba(13,124,110,.12); color: var(--teal); }
.tr-ico-car    { background: rgba(232,184,75,.16); color: #8a6f24; }
.tr-h {
  font-size: 18px; font-weight: 800;
  color: var(--navy); margin: 0 0 8px;
}
.tr-p {
  font-size: 15px; color: var(--fg-2);
  line-height: 1.6; margin: 0;
}

/* Visit CTA */
.loc-cta {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--gold) 0%, #f3cd6e 50%, #d99e2e 100%);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(232,184,75,.30);
}
.loc-cta-h {
  font-size: clamp(20px, 2vw, 24px); font-weight: 800;
  color: var(--navy); letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.loc-cta-p {
  font-size: 15px; color: var(--navy-2);
  margin: 0; line-height: 1.55;
  opacity: 0.85;
}
.loc-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.loc-cta .btn-gold {
  background: var(--navy); color: #fff;
  box-shadow: 0 8px 20px rgba(15,42,94,.32);
}
.loc-cta .btn-gold:hover { background: var(--navy-2); color: #fff; }
.loc-cta .btn-line-light {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.loc-cta .btn-line-light:hover { background: rgba(15,42,94,.10); color: var(--navy); }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 980px) {
  .sub-hero { height: 260px; }
  .sub-hero-title { font-size: 30px; }
  .sub-hero-eyebrow { font-size: 11px; letter-spacing: 0.2em; margin-bottom: 12px; }

  .sub-crumb-inner { width: 100%; overflow-x: auto; }
  .crumb-home { width: 48px; height: 48px; flex-shrink: 0; }
  .crumb-item { min-width: 160px; flex-shrink: 0; }
  .crumb-btn { height: 48px; padding: 0 14px; font-size: 13px; gap: 8px; }

  .ceo-section { padding: 56px 0 80px; }
  .ceo-container { width: 92%; }
  .ceo-grid { grid-template-columns: 1fr; gap: 36px; }
  .ceo-side { position: static; max-width: 320px; margin: 0 auto; }
  .ceo-portrait-monogram { font-size: 56px; }
  .ceo-portrait-monogram span { font-size: 32px; }

  .ceo-intro { margin-bottom: 40px; }
  .ceo-h { font-size: 26px; }
  .ceo-lead { font-size: 16px; }

  .ceo-block { padding: 28px 24px; }
  .ceo-block::after { font-size: 70px; right: 16px; }
  .cb-h { font-size: 20px; }
  .cb-p { font-size: 15px; }
  .cb-list li { flex-direction: column; gap: 4px; padding: 12px 0; font-size: 15px; }
  .cb-k { min-width: 0; }

  .ceo-bottom-sig {
    text-align: left; justify-content: flex-start;
    font-size: 14px;
  }
  .ceo-bs-name { font-size: 18px; }

  /* History page mobile */
  .hist-container { width: 92%; }
  .hist-intro { padding: 48px 0 40px; }
  .hi-grid { grid-template-columns: 1fr; gap: 32px; }
  .hi-h { font-size: 56px; }
  .hist-intro.cert-intro .hi-h { font-size: 28px; line-height: 1.3; }
  .hist-intro.cert-intro .hi-stats { grid-template-columns: 1fr 1fr; }
  .hist-intro.cert-intro .hi-grid { gap: 28px; }
  .hi-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hi-stats li { padding: 20px 18px; }
  .his-n { font-size: 28px; }
  .his-l { font-size: 10px; }

  .hist-timeline-wrap { padding: 48px 0 80px; }
  .timeline-v { padding-left: 48px; }
  .timeline-v::before { left: 14px; }
  .tl-marker { left: -47px; top: 26px; }
  .tl-dot { width: 18px; height: 18px; border-width: 3px; }
  .tl-badge { font-size: 8px; padding: 2px 6px; }
  .tl-card { padding: 26px 22px; border-radius: 18px; }
  .tl-card-head { flex-direction: column; align-items: flex-start; gap: 14px; padding-bottom: 14px; margin-bottom: 16px; }
  .tl-stat { flex-direction: row; align-items: baseline; gap: 8px; padding-left: 0; border-left: 0; }
  .tl-stat-n { font-size: 24px; }
  .tl-tagline { font-size: 18px; }
  .tl-tag { min-width: 80px; font-size: 9.5px; padding: 4px 8px; }
  .tl-item { gap: 12px; padding: 10px 0; }
  .tl-item-text { font-size: 14px; line-height: 1.55; }
  .tl-origin-dot { left: -47px; }

  /* Certifications mobile */
  .cert-section { padding: 56px 0 40px; }
  .pat-section { padding: 32px 0 80px; }
  .iso-grid { grid-template-columns: 1fr; gap: 18px; }
  .iso-card { padding: 32px 28px; }
  .iso-watermark { font-size: 88px; right: 14px; }
  .iso-seal { width: 60px; height: 60px; top: 24px; right: 24px; }
  .iso-code { font-size: 38px; }
  .iso-features ul { grid-template-columns: 1fr; }
  .iso-features li { font-size: 14px; }

  .pat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pat-info { padding: 16px 18px 18px; }

  .cert-note { padding: 20px 22px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .cn-msg { font-size: 14px; }

  /* Product page mobile/tablet (≤980px) — single column */
  .prod-section { padding: 48px 0 80px; }
  .prod-card { grid-template-columns: 1fr; gap: 22px; padding: 26px 22px; }
  .prod-num { font-size: 84px; top: 14px; right: 20px; }
  .prod-photo-frame { aspect-ratio: 4/3; padding: 14px; }
  .prod-photo-accent { width: 72px; height: 72px; bottom: -10px; right: -10px; }
  .prod-photo-accent svg { width: 46px; height: 46px; }
  .prod-name { font-size: 23px; }
  .prod-summary { font-size: 16px; line-height: 1.6; }
  .prod-features { padding: 16px 18px; }
  .prod-features ul { grid-template-columns: 1fr 1fr; gap: 6px 14px; }
  .prod-features li { font-size: 15px; padding-left: 16px; }
  .prod-features li::before { width: 5px; height: 5px; top: 9px; left: 3px; }
  .prod-info-head { gap: 8px; margin-bottom: 10px; }
  .prod-code, .prod-target { font-size: 11px; padding: 4px 10px; }
  .prod-bottom-cta { padding: 24px 22px; flex-direction: column; align-items: flex-start; }
  .pbc-h { font-size: 19px; }

  /* OEM/ODM mobile */
  .oem-process, .oem-caps, .oem-refs { padding: 48px 0; }
  .phase-flow { grid-template-columns: 1fr 1fr; gap: 14px; }
  .phase-card { padding: 22px 18px; }
  .phase-card::before { display: none; }
  .ph-num { font-size: 40px; }
  .ph-h { font-size: 17px; }
  .ph-p { font-size: 13.5px; }
  .cap-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cap-card { padding: 22px 18px; }
  .cap-ico { width: 44px; height: 44px; }
  .cap-h { font-size: 16px; }
  .cap-p { font-size: 13.5px; }
  .ref-head { display: none; }
  .ref-row {
    grid-template-columns: 1fr;
    gap: 6px; padding: 16px 18px;
  }
  .rr-num { font-size: 12px; }
  .rr-1 { font-size: 16px; }
  .rr-2 { font-size: 14px; }
  .rr-3 { font-size: 13px; }
  .oem-cta { padding: 28px 24px; flex-direction: column; align-items: flex-start; gap: 18px; }
  .oc-h { font-size: 19px; }
  .oc-p { font-size: 13.5px; }

  /* Location mobile */
  .loc-section { padding: 56px 0 80px; }
  .loc-grid { grid-template-columns: 1fr; gap: 18px; }
  .loc-map { height: 360px; border-radius: 16px; }
  .loc-info-card { padding: 28px 24px; }
  .loc-pin { top: 22px; right: 22px; width: 30px; height: 30px; }
  .loc-company { font-size: 18px; }
  .loc-addr { font-size: 14px; }
  .loc-cells { grid-template-columns: 1fr; gap: 16px; }
  .loc-cell:nth-child(3) { grid-column: auto; }
  .tr-grid { grid-template-columns: 1fr; gap: 14px; }
  .tr-card { padding: 22px 20px; }
  .loc-cta { padding: 24px 22px; flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================================
   ULTRA-NARROW PHONES (≤480px) — Galaxy S, iPhone mini, etc.
   ============================================================ */
@media (max-width: 480px) {
  /* Sub-hero */
  .sub-hero { height: 220px; }
  .sub-hero-title { font-size: 26px; }
  .sub-hero-eyebrow { font-size: 10px; letter-spacing: 0.18em; }

  /* Breadcrumb */
  .crumb-item { min-width: 140px; }
  .crumb-btn { padding: 0 12px; font-size: 12px; }

  /* Intro */
  .hist-container { width: 94%; }
  .hist-intro { padding: 36px 0 32px; }
  .hi-h { font-size: 44px; }
  .hist-intro.cert-intro .hi-h { font-size: 24px; line-height: 1.3; }
  .hi-p { font-size: 14px; }
  .hi-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hist-intro.cert-intro .hi-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hi-stats li { padding: 16px 12px; }
  .his-n { font-size: 22px; }
  .his-l { font-size: 9px; letter-spacing: 0.14em; }

  /* Product cards */
  .prod-section { padding: 36px 0 64px; }
  .prod-card { padding: 20px 18px; gap: 18px; border-radius: 18px; }
  .prod-num { font-size: 68px; top: 10px; right: 14px; }
  .prod-photo-frame { padding: 10px; border-radius: 14px; }
  .prod-photo-accent { width: 56px; height: 56px; bottom: -8px; right: -8px; }
  .prod-photo-accent svg { width: 34px; height: 34px; }
  .prod-new-pill { font-size: 9.5px; padding: 3px 8px; }
  .prod-info-head { gap: 6px; }
  .prod-code, .prod-target { font-size: 10.5px; padding: 4px 9px; letter-spacing: 0.10em; }
  .prod-name { font-size: 20px; line-height: 1.25; }
  .prod-summary { font-size: 14.5px; line-height: 1.55; margin-bottom: 16px; }
  .prod-features { padding: 14px 14px; border-radius: 12px; }
  .prod-features ul { grid-template-columns: 1fr; gap: 4px; }
  .prod-features li { font-size: 14px; padding-left: 14px; line-height: 1.5; }
  .prod-features li::before { top: 8px; }
  .prod-feat-label { font-size: 9.5px; letter-spacing: 0.14em; }
  .prod-cta, .prod-cta-secondary { font-size: 13px; padding: 10px 18px; }
  .prod-bottom-cta { padding: 22px 20px; border-radius: 18px; }
  .pbc-h { font-size: 17px; }
  .pbc-p { font-size: 14px; }

  /* CEO message page */
  .ceo-section { padding: 40px 0 64px; }
  .ceo-grid { gap: 28px; }
  .ceo-h { font-size: 22px; }
  .ceo-lead { font-size: 14px; }
  .ceo-block { padding: 22px 18px; border-radius: 16px; }
  .ceo-block::after { font-size: 56px; right: 12px; }
  .cb-h { font-size: 18px; }
  .cb-p { font-size: 14px; }

  /* History timeline */
  .timeline-v { padding-left: 36px; }
  .timeline-v::before { left: 10px; }
  .tl-marker { left: -37px; }
  .tl-dot { width: 14px; height: 14px; border-width: 2.5px; }
  .tl-badge { font-size: 7.5px; padding: 2px 5px; }
  .tl-card { padding: 22px 18px; border-radius: 14px; }
  .tl-tagline { font-size: 16px; }
  .tl-stat-n { font-size: 22px; }
  .tl-tag { min-width: 68px; font-size: 9px; padding: 3px 7px; }
  .tl-when { min-width: 64px; font-size: 11px; }
  .tl-item-text { font-size: 13px; }
  .tl-origin-dot { left: -37px; }

  /* Certifications */
  .iso-card { padding: 26px 22px; border-radius: 20px; }
  .iso-watermark { font-size: 72px; right: 10px; }
  .iso-seal { width: 52px; height: 52px; top: 22px; right: 22px; }
  .iso-since { font-size: 10px; padding: 4px 10px; }
  .iso-code { font-size: 32px; }
  .iso-name { font-size: 15px; }
  .iso-desc { font-size: 14px; padding-bottom: 18px; }
  .iso-features li { font-size: 13px; }
  .pat-grid { grid-template-columns: 1fr; gap: 14px; }
  .pat-card { border-radius: 14px; }
  .pat-info { padding: 16px 18px 18px; }
  .pat-no { font-size: 14px; }
  .pat-title { font-size: 15.5px; line-height: 1.5; }
  .clb-close { top: -42px; }
  .clb-caption { font-size: 13.5px; }
  .cert-note { padding: 18px 18px; border-radius: 14px; }
  .cn-msg { font-size: 13px; }

  /* Location */
  .loc-map { height: 280px; }
  .loc-info-card { padding: 24px 20px; border-radius: 18px; }
  .loc-pin { width: 26px; height: 26px; }
  .loc-company { font-size: 16px; }
  .loc-addr { font-size: 13px; line-height: 1.6; }
  .loc-cell-val { font-size: 15px; }
  .tr-card { padding: 18px 16px; border-radius: 14px; }
  .tr-h { font-size: 16px; }
  .tr-p { font-size: 13px; }
  .loc-cta { padding: 20px 18px; border-radius: 16px; }
  .loc-cta-h { font-size: 17px; }
  .loc-cta-p { font-size: 13px; }
}

/* =============================================================
   CUSTOMER SUPPORT — Quote Form / Kakao Soon / Contact Cards
   ============================================================= */

/* ===== QUOTE FORM ===== */
.quote-section {
  padding: 64px 0 110px;
  background: linear-gradient(180deg, #f7f9fd 0%, #fff 100%);
}
/* Wider form: 좌·우 15% 여백만 (= width 70%) */
.quote-section .hist-container { width: 70%; }

.qf-alert {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  border-radius: 12px;
  margin-bottom: 32px;
  font-size: 14.5px;
  line-height: 1.5;
}
.qf-alert-err {
  background: #fff3f3;
  border: 1px solid #f5cccc;
  color: #a32121;
}
.qf-alert svg { flex-shrink: 0; margin-top: 1px; }

.quote-form {
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 22px;
  padding: 48px 56px 56px;
  box-shadow: 0 18px 50px -28px rgba(15, 42, 94, .15);
  max-width: none;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.qf-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.qf-block { margin-bottom: 36px; }
.qf-block:last-of-type { margin-bottom: 18px; }

.qf-block-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e9ecf3;
  flex-wrap: wrap;
}
.qf-block-num {
  font-family: 'Poppins', 'Spoqa Han Sans Neo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold, #E8B84B);
  background: linear-gradient(135deg, #f6e3a3 0%, #e0a83a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.qf-block-h {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy, #0F2A5E);
  margin: 0;
}
.qf-block-hint {
  font-size: 13px;
  color: #748098;
  margin-left: auto;
}

.qf-row { display: flex; gap: 22px; margin-bottom: 18px; }
.qf-row:last-of-type { margin-bottom: 0; }
.qf-row-2 > .qf-field { flex: 1; min-width: 0; }
.qf-field-full { flex: 1; }

.qf-field { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.qf-label {
  font-size: 18px;
  font-weight: 700;
  color: #1f2a44;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -.005em;
}
.qf-req {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #c0392b;
  background: #fdecec;
  padding: 2px 7px;
  border-radius: 4px;
}
.qf-opt {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #6a778f;
  background: #eef1f7;
  padding: 2px 7px;
  border-radius: 4px;
}

.qf-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #1f2a44;
  background: #f8fafd;
  border: 1.5px solid #dde3ee;
  border-radius: 10px;
  transition: border-color .15s, background .15s, box-shadow .15s;
  box-sizing: border-box;
}
.qf-input:focus {
  outline: none;
  background: #fff;
  border-color: var(--navy, #0F2A5E);
  box-shadow: 0 0 0 3px rgba(15, 42, 94, .1);
}
.qf-input::placeholder { color: #95a0b7; }
.qf-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
  font-family: inherit;
}

.qf-select-wrap { position: relative; }
.qf-select-wrap select.qf-input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  cursor: pointer;
}
.qf-select-caret {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #5d6a85;
}

/* File inputs */
.qf-files {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.qf-file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 12px 12px;
  background: #f8fafd;
  border: 1.5px dashed #d2dae8;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #5d6a85;
  transition: border-color .15s, background .15s;
  overflow: hidden;
}
.qf-file:hover { border-color: var(--gold, #E8B84B); background: #fffbf3; }
.qf-file.has-file {
  background: #f1f7ff;
  border-style: solid;
  border-color: var(--navy, #0F2A5E);
  color: var(--navy, #0F2A5E);
}
.qf-file input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}
.qf-file-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #d2dae8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #5d6a85;
}
.qf-file.has-file .qf-file-num {
  background: var(--navy, #0F2A5E);
  border-color: var(--navy, #0F2A5E);
  color: #fff;
}
.qf-file-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.qf-file-ico { flex-shrink: 0; opacity: .65; }

/* Privacy */
.qf-privacy {
  background: #f8fafd;
  border: 1px solid #e5e9f2;
  border-radius: 12px;
  padding: 20px 22px;
}
.qf-privacy-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #4a5572;
  margin: 0 0 14px;
}
.qf-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.qf-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.qf-check-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #fff;
  border: 1.8px solid #c5cde0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all .15s;
}
.qf-check-box svg { width: 14px; height: 14px; }
.qf-check input:checked + .qf-check-box {
  background: var(--navy, #0F2A5E);
  border-color: var(--navy, #0F2A5E);
  color: #fff;
}
.qf-check input:focus-visible + .qf-check-box {
  box-shadow: 0 0 0 3px rgba(15, 42, 94, .15);
}
.qf-check-label {
  font-size: 14px;
  font-weight: 600;
  color: #1f2a44;
}

/* Submit */
.qf-submit-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.qf-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 48px;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(135deg, var(--navy, #0F2A5E) 0%, #1f3d7a 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, filter .15s;
  box-shadow: 0 12px 28px -12px rgba(15, 42, 94, .55);
}
.qf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -14px rgba(15, 42, 94, .65);
  filter: brightness(1.06);
}
.qf-submit:active { transform: translateY(0); }

/* Thank-you */
.quote-thanks {
  padding: 90px 0 130px;
  background: linear-gradient(180deg, #f7f9fd 0%, #fff 100%);
}
.qt-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px 56px;
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 24px;
  box-shadow: 0 22px 60px -28px rgba(15, 42, 94, .18);
}
.qt-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3f7ff 0%, #e8eefb 100%);
  color: var(--navy, #0F2A5E);
}
.qt-icon svg { width: 56px; height: 56px; }
.qt-h {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy, #0F2A5E);
  margin: 0 0 14px;
  line-height: 1.4;
}
.qt-p {
  font-size: 15px;
  line-height: 1.75;
  color: #4a5572;
  margin: 0 0 32px;
}
.qt-card .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== KAKAO SOON ===== */
.kakao-soon {
  padding: 70px 0 120px;
  background: linear-gradient(180deg, #f7f9fd 0%, #fff 100%);
}
.ks-card {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  padding: 56px 40px 48px;
  background: linear-gradient(135deg, #fffaf0 0%, #fff 50%, #f8fafd 100%);
  border: 1px solid #f3e6c5;
  border-radius: 24px;
  box-shadow: 0 18px 50px -28px rgba(232, 184, 75, .25);
}
.ks-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffe566 0%, #fbcf3c 100%);
  color: var(--navy, #0F2A5E);
  box-shadow: 0 12px 30px -10px rgba(232, 184, 75, .55);
}
.ks-icon svg { width: 64px; height: 64px; }
.ks-h {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy, #0F2A5E);
  margin: 0 0 12px;
}
.ks-p {
  font-size: 15px;
  line-height: 1.75;
  color: #4a5572;
  margin: 0;
}
.ks-alt-h {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--navy, #0F2A5E);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
}
.ks-alt-h .eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--gold, #E8B84B);
}
.ks-alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ks-alt-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.ks-alt-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold, #E8B84B);
  box-shadow: 0 18px 40px -22px rgba(15, 42, 94, .25);
}
.ks-alt-ico {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eaf1ff 0%, #d8e3f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy, #0F2A5E);
}
.ks-alt-ico svg { width: 24px; height: 24px; }
.ks-alt-text { flex: 1; min-width: 0; }
.ks-alt-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy, #0F2A5E);
  margin: 0 0 4px;
}
.ks-alt-text p {
  font-size: 13px;
  line-height: 1.55;
  color: #5d6a85;
  margin: 0;
}
.ks-alt-arrow {
  flex-shrink: 0;
  color: var(--gold, #E8B84B);
  transition: transform .2s;
}
.ks-alt-card:hover .ks-alt-arrow { transform: translateX(4px); }

/* ===== CONTACT US ===== */
.contact-section {
  padding: 64px 0 110px;
  background: linear-gradient(180deg, #f7f9fd 0%, #fff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.cc-card {
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 18px;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 36px -22px rgba(15, 42, 94, .15);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.cc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -22px rgba(15, 42, 94, .25);
}
.cc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy, #0F2A5E), var(--gold, #E8B84B));
}
.cc-card-form::before {
  background: linear-gradient(90deg, var(--gold, #E8B84B), #d49a26);
}

.cc-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf1ff 0%, #dbe6fa 100%);
  color: var(--navy, #0F2A5E);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.cc-ico svg { width: 26px; height: 26px; }
.cc-card-email .cc-ico {
  background: linear-gradient(135deg, #fff4e5 0%, #ffe1b8 100%);
  color: #8a5a14;
}
.cc-card-visit .cc-ico {
  background: linear-gradient(135deg, #f0f7ee 0%, #d9ecd4 100%);
  color: #2d6b3a;
}
.cc-card-form .cc-ico {
  background: linear-gradient(135deg, var(--navy, #0F2A5E) 0%, #1f3d7a 100%);
  color: #fff;
}

.cc-h {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy, #0F2A5E);
  margin: 0 0 16px;
  letter-spacing: -.01em;
}

.cc-block { margin-bottom: 14px; }
.cc-block:last-child { margin-bottom: 0; }
.cc-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #748098;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.cc-big {
  display: block;
  font-family: 'Poppins', 'Spoqa Han Sans Neo', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy, #0F2A5E);
  text-decoration: none;
  letter-spacing: -.01em;
  line-height: 1.2;
  transition: color .15s;
}
.cc-big:hover { color: var(--gold, #E8B84B); }
.cc-big.cc-mail {
  font-size: 19px;
  word-break: break-all;
}
.cc-mid {
  display: block;
  font-family: 'Poppins', 'Spoqa Han Sans Neo', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #2d3a55;
  text-decoration: none;
  transition: color .15s;
}
.cc-mid:hover { color: var(--gold, #E8B84B); }
.cc-meta {
  font-size: 13px;
  color: #5d6a85;
  line-height: 1.6;
}
.cc-divider {
  height: 1px;
  background: #eef1f7;
  margin: 14px 0;
}
.cc-addr {
  font-size: 14px;
  line-height: 1.65;
  color: #2d3a55;
}
.cc-postal {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  color: #748098;
  letter-spacing: -.005em;
}

.cc-form-p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #4a5572;
  margin: 0 0 18px;
  flex: 1;
}

.cc-btn-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy, #0F2A5E);
  background: transparent;
  border: 1.5px solid var(--navy, #0F2A5E);
  border-radius: 50px;
  text-decoration: none;
  margin-top: auto;
  transition: all .15s;
  align-self: flex-start;
}
.cc-btn-line:hover {
  background: var(--navy, #0F2A5E);
  color: #fff;
}
.cc-btn-line-center {
  margin: 18px auto 0;
  align-self: center;
}

.cc-btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--navy, #0F2A5E);
  background: var(--gold, #E8B84B);
  border-radius: 50px;
  text-decoration: none;
  transition: all .15s;
  align-self: flex-start;
}
.cc-btn-fill:hover {
  background: #d49a26;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(232, 184, 75, .65);
}

/* Company info */
.contact-info {
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 18px;
  padding: 32px 36px;
  margin-bottom: 56px;
}
.ci-h {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--navy, #0F2A5E);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
}
.ci-h .eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--gold, #E8B84B);
}
.ci-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
}
.ci-cell { margin: 0; }
.ci-cell dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #748098;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.ci-cell dd {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy, #0F2A5E);
  margin: 0;
}
.ci-cell dd.mono {
  font-family: 'Poppins', 'Spoqa Han Sans Neo', sans-serif;
  letter-spacing: .015em;
}

/* Map */
.contact-map-wrap { margin-top: 0; }
.contact-map {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e9f2;
  background: #f4f6fb;
}
.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .ci-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .quote-section .hist-container { width: 92%; }
  .quote-form { padding: 32px 28px 38px; }
  .qf-row { flex-direction: column; gap: 16px; }
  .qf-files { grid-template-columns: repeat(2, 1fr); }
  .qf-block-h { font-size: 17px; }
  .qf-label { font-size: 16px; }
  .qf-submit { padding: 14px 34px; font-size: 14.5px; width: 100%; justify-content: center; }
  .qf-submit-row { display: block; }

  .qt-card { padding: 44px 28px 40px; }
  .qt-icon { width: 76px; height: 76px; }
  .qt-icon svg { width: 46px; height: 46px; }
  .qt-h { font-size: 21px; }
  .qt-p { font-size: 14px; }

  .ks-card { padding: 44px 28px 38px; }
  .ks-icon { width: 92px; height: 92px; }
  .ks-icon svg { width: 52px; height: 52px; }
  .ks-h { font-size: 22px; }
  .ks-alt-grid { grid-template-columns: 1fr; gap: 14px; }
  .ks-alt-card { padding: 18px 20px; gap: 14px; }

  .contact-section { padding: 50px 0 80px; }
  .contact-info { padding: 26px 24px; }
  .contact-map { height: 320px; }
  .cc-card { padding: 24px 22px 26px; }
  .cc-big { font-size: 20px; }
  .cc-big.cc-mail { font-size: 17px; }
}
@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .quote-section { padding: 40px 0 80px; }
  .quote-section .hist-container { width: 94%; }
  .quote-form { padding: 26px 20px 30px; border-radius: 16px; }
  .qf-block-head { gap: 10px; padding-bottom: 12px; margin-bottom: 14px; }
  .qf-block-num { font-size: 12px; }
  .qf-block-h { font-size: 16px; }
  .qf-block-hint { font-size: 12px; width: 100%; margin-left: 0; }
  .qf-label { font-size: 15px; }
  .qf-input { padding: 11px 13px; font-size: 14px; }
  .qf-files { grid-template-columns: 1fr; }
  .qf-privacy { padding: 16px 18px; }
  .qf-privacy-text { font-size: 13px; }
  .qf-submit { padding: 13px 28px; }

  .qt-card { padding: 36px 22px 32px; border-radius: 18px; }
  .qt-h { font-size: 19px; }

  .ks-card { padding: 36px 22px 30px; border-radius: 18px; }
  .ks-icon { width: 80px; height: 80px; }
  .ks-h { font-size: 19px; }
  .ks-p { font-size: 14px; }

  .cc-card { padding: 22px 20px 24px; border-radius: 14px; }
  .cc-big { font-size: 18px; }
  .cc-big.cc-mail { font-size: 16px; }
  .ci-list { grid-template-columns: 1fr; gap: 16px; }
  .contact-info { padding: 22px 20px; border-radius: 14px; }
  .contact-map { height: 260px; border-radius: 14px; }
}

/* =============================================================
   PRODUCTS SITEMAP (/p/products) — 대메뉴 클릭 시 전체 카테고리 한눈에
   ============================================================= */
.prod-sitemap { padding: 56px 0 110px; background: linear-gradient(180deg, #f7f9fd 0%, #fff 100%); }
.ps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: start; }

.ps-card {
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 18px;
  padding: 28px 30px 26px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .2s;
}
.ps-card:hover { transform: translateY(-3px); border-color: var(--gold, #E8B84B); box-shadow: 0 22px 50px -28px rgba(15,42,94,.18); }
.ps-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy, #0F2A5E), var(--gold, #E8B84B));
  border-radius: 18px 18px 0 0; opacity: .9;
}
.ps-card-simple { background: #f4f7fc; }

.ps-card-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid #eef1f7; }
.ps-num {
  font-family: 'Poppins', 'Spoqa Han Sans Neo', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: .14em;
  color: transparent;
  background: linear-gradient(135deg, #f6e3a3 0%, #e0a83a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ps-cat-title { margin: 0; font-size: 19px; font-weight: 700; color: var(--navy, #0F2A5E); letter-spacing: -.005em; }
.ps-cat-title a { display: inline-flex; align-items: center; gap: 8px; color: inherit; text-decoration: none; transition: color .15s; }
.ps-cat-title a:hover { color: var(--gold, #E8B84B); }
.ps-cat-arrow { opacity: .55; transition: transform .2s, opacity .2s; }
.ps-cat-title a:hover .ps-cat-arrow { opacity: 1; transform: translateX(3px); }

.ps-children { list-style: none; padding: 0; margin: 0 0 18px; display: grid; grid-template-columns: 1fr; gap: 0; }
.ps-children li { border-bottom: 1px dashed #eef1f7; }
.ps-children li:last-child { border-bottom: none; }
.ps-children a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  font-size: 14.5px; color: #2d3a55; text-decoration: none;
  transition: color .15s, padding .15s;
}
.ps-children a:hover { color: var(--navy, #0F2A5E); padding-left: 4px; }
.ps-bullet {
  flex-shrink: 0; width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold, #E8B84B); font-weight: 800;
  transition: transform .15s;
}
.ps-children a:hover .ps-bullet { transform: translateX(2px); }
.ps-child-label { line-height: 1.4; }

.ps-view-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--navy, #0F2A5E);
  text-decoration: none; padding: 6px 0;
  border-top: 1px solid #eef1f7;
  width: 100%;
  padding-top: 12px;
}
.ps-view-all:hover { color: var(--gold, #E8B84B); }

@media (max-width: 1024px) {
  .ps-grid { grid-template-columns: 1fr; gap: 16px; }
  .ps-card { padding: 24px 22px; }
  .ps-cat-title { font-size: 17px; }
}
@media (max-width: 480px) {
  .prod-sitemap { padding: 36px 0 80px; }
  .ps-card { padding: 20px 18px; border-radius: 14px; }
  .ps-children a { font-size: 14px; }
}
