/* === Wholesale Industry · JMIC-grade 정제 디자인 === */
:root {
    --c-slate: #1e293b;
    --c-text: #334155;
    --c-text-sub: #64748b;
    --c-text-mute: #94a3b8;
    --c-gray-1: #f8fafc;
    --c-gray-2: #e2e8f0;
    --c-gray-3: #cbd5e1;
    --c-blue: #0089D0;
    --c-blue-dark: #006fa8;
    --c-direct: #0089D0;
    --c-stock: #15803d;
    --c-stock-bg: #dcfce7;
    --c-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.06);
    --c-shadow-md: 0 4px 6px -1px rgba(15,23,42,0.06), 0 2px 4px -1px rgba(15,23,42,0.04);
    --radius: 6px;
    --t: all 0.18s cubic-bezier(.4,0,.2,1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
    font-family: -apple-system, "Apple SD Gothic Neo", "Noto Sans KR", "Pretendard", sans-serif;
    color: var(--c-text); line-height: 1.6; background: #fff;
    font-size: 15px; letter-spacing: -0.2px;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: var(--t); }
a:hover { color: var(--c-blue); }
.wrap { max-width: 1400px; margin: 0 auto; padding: 0 28px; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* === Header (JMIC 스타일 — 브랜드 + nav + 우측 검색) === */
.site-header { border-bottom: 1px solid var(--c-gray-2); position: sticky; top: 0; background: rgba(255,255,255,0.96); z-index: 100; backdrop-filter: blur(12px); }
.site-header .wrap { display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center; padding-top: 18px; padding-bottom: 18px; }
.site-header .brand { display: flex; align-items: center; gap: 10px; }
.site-header .brand img { height: 38px; width: auto; display: block; flex-shrink: 0; object-fit: contain; }
.main-nav { display: flex; gap: 28px; align-items: center; font-size: 14px; justify-self: start; }
.main-nav a { color: var(--c-text-sub); padding: 8px 0; border-bottom: 2px solid transparent; transition: var(--t); font-weight: 500; }
.main-nav a.on, .main-nav a:hover { color: var(--c-slate); border-bottom-color: var(--c-blue); }
.header-search { display: flex; align-items: center; }
.header-search input { padding: 9px 16px 9px 36px; border: 1px solid var(--c-gray-2); border-radius: 22px; font-size: 13px; min-width: 260px; font-family: inherit; transition: var(--t); background: var(--c-gray-1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") no-repeat 12px center; }
.header-search input:focus { outline: none; border-color: var(--c-blue); background-color: white; box-shadow: 0 0 0 3px rgba(0,137,208,0.1); }
@media (max-width: 880px) {
    .site-header .wrap { grid-template-columns: auto 1fr; gap: 16px; }
    .site-header .brand img { height: 30px; }
    .main-nav { display: none; }
    .header-search input { min-width: 160px; }
}
@media (max-width: 480px) {
    .site-header .wrap { gap: 12px; }
    .site-header .brand img { height: 26px; }
    .header-search input { min-width: 0; }
}

/* === HOME — JMIC 스타일 풍부 layout === */
.home-hero { padding: 0; height: 380px; text-align: left; background: linear-gradient(120deg, #eaf2fb 0%, #e1ebf6 45%, #f3f9fd 100%); position: relative; overflow: hidden; }
.home-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(0,137,208,0.06) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(0,137,208,0.04) 0%, transparent 50%); pointer-events: none; }
.home-hero .wrap { position: relative; z-index: 1; }
.home-hero .badge-line { display: inline-block; padding: 5px 14px; background: white; border: 1px solid var(--c-gray-2); border-radius: 20px; font-size: 12px; color: var(--c-blue); font-weight: 600; margin-bottom: 14px; letter-spacing: -0.2px; box-shadow: var(--c-shadow); }
.home-hero h1 { font-size: 40px; font-weight: 800; letter-spacing: -1.5px; color: var(--c-slate); margin-bottom: 14px; line-height: 1.15; }
.home-hero h1 span { color: var(--c-blue); }
.home-hero .sub { font-size: 15px; color: var(--c-text-sub); margin-bottom: 22px; line-height: 1.55; font-weight: 400; }
.home-hero-search { max-width: 680px; margin: 0 auto 32px auto; display: flex; gap: 10px; }
.home-hero-search input { flex: 1; padding: 17px 28px; border: 1px solid var(--c-gray-2); border-radius: 36px; font-size: 15px; font-family: inherit; transition: var(--t); box-shadow: var(--c-shadow-md); background: white; }
.home-hero-search input:focus { outline: none; border-color: var(--c-blue); box-shadow: 0 0 0 4px rgba(0,137,208,0.12); }
.home-hero-search button { background: var(--c-slate); color: white; border: 0; border-radius: 36px; padding: 17px 36px; font-size: 14px; font-weight: 600; letter-spacing: -0.2px; transition: var(--t); }
.home-hero-search button:hover { background: var(--c-blue); transform: translateY(-1px); box-shadow: var(--c-shadow-md); }
.hero-stats { display: flex; justify-content: center; gap: 32px; margin-top: 4px; font-size: 12px; color: var(--c-text-sub); }
.hero-stats div { display: flex; gap: 5px; align-items: baseline; }
.hero-stats strong { font-size: 18px; font-weight: 800; color: var(--c-slate); letter-spacing: -0.4px; }

/* 히어로 2단 + 제품 슬라이드쇼 (JMIC식) */
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; text-align: left; }
.hero-grid .hero-text { text-align: left; }
.hero-grid .hero-stats { justify-content: flex-start; }
.hero-search { display: flex; gap: 8px; margin: 20px 0 22px; max-width: 470px; }
.hero-search input { flex: 1; min-width: 0; padding: 15px 22px; border: 1px solid var(--c-gray-2); border-radius: 30px; font-size: 15px; font-family: inherit; background: #fff; box-shadow: var(--c-shadow-md); transition: var(--t); }
.hero-search input:focus { outline: none; border-color: var(--c-blue); box-shadow: 0 0 0 4px rgba(0,137,208,0.12); }
.hero-search button { flex-shrink: 0; background: var(--c-slate); color: #fff; border: 0; border-radius: 30px; padding: 0 30px; font-size: 14.5px; font-weight: 600; cursor: pointer; transition: var(--t); }
.hero-search button:hover { background: var(--c-blue); transform: translateY(-1px); }
.hero-show { position: relative; aspect-ratio: 4 / 3.3; background: linear-gradient(150deg, #e9f2fb 0%, #f7fbfe 48%, #e6f0f9 100%); border-radius: 16px; box-shadow: 0 14px 48px rgba(15,23,42,0.12); overflow: hidden; }
.hero-show::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(0,137,208,0.10) 0%, transparent 55%); pointer-events: none; z-index: 0; }
.hs-track { position: absolute; inset: 0; z-index: 1; }
.hs-slide { position: absolute; inset: 0; display: flex; flex-direction: column; opacity: 0; transition: opacity .6s ease; pointer-events: none; text-decoration: none; }
.hs-slide.on { opacity: 1; pointer-events: auto; }
.hs-imgwrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 30px 30px 14px; min-height: 0; }
.hs-imgwrap img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.hs-cap { padding: 13px 22px 16px; border-top: 1px solid var(--c-gray-2); background: #fff; }
.hs-mfr { display: block; font-size: 11.5px; font-weight: 700; color: var(--c-blue); letter-spacing: 0.3px; text-transform: uppercase; }
.hs-nm { display: block; font-size: 14.5px; font-weight: 600; color: var(--c-slate); margin-top: 3px; line-height: 1.3; }
.hs-nav { position: absolute; top: 44%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.92); border: 1px solid var(--c-gray-2); font-size: 19px; line-height: 1; color: var(--c-slate); cursor: pointer; z-index: 3; box-shadow: var(--c-shadow); transition: var(--t); }
.hs-nav:hover { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }
.hs-nav.prev { left: 12px; }
.hs-nav.next { right: 12px; }
.hs-dots { position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 3; }
.hs-dot { width: 7px; height: 7px; padding: 0; border-radius: 50%; border: none; background: rgba(15,23,42,0.22); cursor: pointer; transition: var(--t); }
.hs-dot.on { background: var(--c-blue); width: 18px; border-radius: 4px; }
@media (max-width: 820px) {
    .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .hero-grid .hero-text { text-align: center; }
    .hero-grid .hero-stats { justify-content: center; }
    .hero-grid .hero-search { margin-left: auto; margin-right: auto; }
    .hero-show { max-width: 380px; width: 100%; margin: 0 auto; }
}

/* === 풀폭 배너 슬라이드 (JMIC식) — 슬라이드가 화면 전체, 슬로건은 좌측 오버레이 === */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hbs { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; display: flex; align-items: center; justify-content: flex-end; text-decoration: none; }
.hbs.on { opacity: 1; }
.hbs-img { height: 100%; display: flex; align-items: center; padding-right: 7%; box-sizing: border-box; }
.hbs-img img { max-height: 78%; max-width: 42vw; object-fit: contain; mix-blend-mode: multiply; }
.hbs-cap { position: absolute; right: 7%; bottom: 26px; text-align: right; z-index: 1; }
.hbs-mfr { display: block; font-size: 12px; font-weight: 700; color: var(--c-blue); letter-spacing: 0.5px; text-transform: uppercase; }
.hbs-nm { display: block; font-size: 16px; font-weight: 700; color: var(--c-slate); margin-top: 3px; }
.hero-overlay { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; pointer-events: none; }
.hero-overlay > * { pointer-events: auto; }
.hero-overlay .badge-line { margin-bottom: 13px; }
.hero-overlay h1 { font-size: 33px; line-height: 1.18; margin-bottom: 13px; }
.hero-overlay .hero-search { margin: 2px 0 15px; }
.hero-overlay .hero-stats { justify-content: flex-start; }
.home-hero .hs-nav { top: 50%; z-index: 3; }
.home-hero .hs-dots { bottom: 16px; left: auto; right: 7%; transform: none; z-index: 3; }
@media (max-width: 820px) {
    .home-hero { height: auto; min-height: 340px; padding: 26px 0; }
    .hbs { justify-content: center; }
    .hbs-img { padding-right: 0; opacity: 0.16; }
    .hbs-img img { max-width: 82vw; max-height: 100%; }
    .hbs-cap { display: none; }
    .hero-overlay { align-items: center; text-align: center; }
    .hero-overlay .hero-stats { justify-content: center; }
    .home-hero .hs-nav { display: none; }
    .home-hero .hs-dots { right: 50%; transform: translateX(50%); }
}

/* === 히어로 v3 — 추상테크 배경 + 누끼컷 + spec 텍스트 === */
.home-hero.hero-v3 { height: 400px; padding: 0; }
.hero-v3 .hbs { display: flex; align-items: center; justify-content: space-between; opacity: 0; transition: opacity .7s ease; }
.hero-v3 .hbs.on { opacity: 1; }
.hbs[data-hue="blue"]   { --h1:#0a2540; --h2:#16456f; --acc:#38bdf8; }
.hbs[data-hue="teal"]   { --h1:#072e2b; --h2:#0c5f55; --acc:#2dd4bf; }
.hbs[data-hue="violet"] { --h1:#1e1b4b; --h2:#4338ca; --acc:#a78bfa; }
.hbs[data-hue="slate"]  { --h1:#0f172a; --h2:#334155; --acc:#94a3b8; }
.hbs[data-hue="amber"]  { --h1:#3b2410; --h2:#7c4a1e; --acc:#fbbf24; }
.hbs[data-hue="cyan"]   { --h1:#083344; --h2:#0e6b85; --acc:#22d3ee; }
.hero-v3 .hbs { background: linear-gradient(120deg, #0a1622 0%, #14243a 55%, #0c1a2c 100%); }
/* 제품 누끼를 크게 블러해서 배경으로 — 제품색이 배경에 녹아 통합 */
.hbs-bgblur { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: var(--prod); background-size: 60% auto; background-position: 64% 48%; background-repeat: no-repeat;
  filter: blur(58px) saturate(1.7) brightness(1.18); transform: scale(2.1); opacity: 0.6; }
.hbs-veil { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(8,16,28,.92) 26%, rgba(8,16,28,.4) 66%, rgba(8,16,28,.12) 100%); }
.hero-v3 .hbs-text { position: relative; z-index: 2; padding-left: 7%; max-width: 47%; display: flex; flex-direction: column; gap: 11px; }
.hbs-mfr { font-size: 13px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: #7dd3fc; }
.hbs-spec { font-size: 27px; font-weight: 800; line-height: 1.28; color: #fff; letter-spacing: -0.3px; }
.hbs-cta { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.82); margin-top: 2px; }
.hero-v3 .hbs-img { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding-right: 6%; }
.hero-v3 .hbs-img img { max-height: 86%; max-width: 42vw; object-fit: contain; }
.hero-v3 .hbs-img img.is-trans { filter: drop-shadow(0 18px 40px rgba(0,0,0,.45)); }
.hero-v3 .hbs-img img:not(.is-trans) { background: rgba(255,255,255,.96); border-radius: 10px; padding: 10px; max-height: 78%; }
.hero-v3 .hs-dots { bottom: 16px; left: auto; right: 6%; transform: none; }
.hero-v3 .hs-dot { background: rgba(255,255,255,.35); }
.hero-v3 .hs-dot.on { background: #fff; }
.hero-v3 .hs-nav { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.3); }
.hero-v3 .hs-nav:hover { background: rgba(255,255,255,.3); border-color: #fff; }
@media (max-width: 820px) {
    .home-hero.hero-v3 { height: auto; min-height: 380px; }
    .hero-v3 .hbs { flex-direction: column-reverse; justify-content: center; gap: 14px; padding: 26px 0; text-align: center; }
    .hero-v3 .hbs-text { max-width: 88%; padding-left: 0; align-items: center; }
    .hbs-spec { font-size: 21px; }
    .hero-v3 .hbs-img { padding-right: 0; height: auto; }
    .hero-v3 .hbs-img img { max-width: 66vw; max-height: 170px; }
    .hero-v3 .hs-nav { display: none; }
    .hero-v3 .hs-dots { right: 50%; transform: translateX(50%); }
}

/* === 시리즈 카드 (제품군 페이지 안 시리즈별 구분) === */
.series-cards { margin: 30px 0 10px; }
.sc-title { font-size: 19px; font-weight: 800; color: var(--c-slate); margin-bottom: 4px; }
.sc-sub { font-size: 13px; color: var(--c-text-sub); margin-bottom: 16px; }
.sc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.sc-card { display: block; text-decoration: none; color: inherit; border: 1px solid var(--c-gray-2); border-radius: 12px; overflow: hidden; background: #fff; transition: var(--t); }
.sc-go { margin-top: 9px; font-size: 12px; font-weight: 700; color: var(--c-blue); }
.sc-card:hover { box-shadow: 0 8px 24px rgba(15,23,42,.10); transform: translateY(-2px); }
.sc-img { height: 132px; display: flex; align-items: center; justify-content: center; background: #f8fafc; padding: 12px; box-sizing: border-box; }
.sc-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.sc-body { padding: 13px 14px 15px; }
.sc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.sc-code { font-family: ui-monospace, "SF Mono", monospace; font-size: 16px; font-weight: 800; color: var(--c-blue); letter-spacing: 0.3px; }
.sc-n { font-size: 11px; font-weight: 600; color: var(--c-text-sub); background: #eef2f7; padding: 2px 8px; border-radius: 10px; }
/* 품번 인덱스 (SEO 텍스트 노출) */
.pn-index { margin-top: 30px; border-top: 1px solid var(--c-gray-2); padding-top: 20px; }
.pn-index h2 { font-size: 14px; font-weight: 700; color: var(--c-text-sub); margin-bottom: 12px; letter-spacing: -0.2px; }
.pn-index ul { list-style: none; columns: 2; column-gap: 28px; margin: 0; padding: 0; }
.pn-index li { font-size: 12px; color: var(--c-text-mute); padding: 3px 0; break-inside: avoid; }
.pn-index code { font-family: ui-monospace, "SF Mono", monospace; font-size: 12px; font-weight: 700; color: var(--c-slate); }
.pn-index .pn-note { font-size: 12px; color: var(--c-text-sub); margin-top: 12px; }
@media (max-width: 640px) { .pn-index ul { columns: 1; } }
.sc-inquiry { border-style: dashed; border-color: #fdba74; background: #fffdfa; }
.sc-inquiry .sc-n { background: #fff7ed; color: #c2570c; }
.sc-inquiry .sc-code { color: #7c2d12; }
.sc-inquiry .sc-go { color: #ea580c; }
.sc-label { font-size: 14px; font-weight: 700; color: var(--c-slate); margin-bottom: 7px; }
.sc-spec { font-size: 11.5px; color: var(--c-text-sub); line-height: 1.55; margin-bottom: 9px; }
.sc-meta { display: flex; flex-direction: column; gap: 3px; font-size: 11px; color: var(--c-text-mute); }
@media (max-width: 860px) { .sc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sc-grid { grid-template-columns: 1fr; } }

/* Home Section — 상하 padding 축소 (스크롤 줄임) */
.home-section { padding: 36px 0; }
.home-section.bg-gray { background: var(--c-gray-1); }
.home-section .sec-title { font-size: 22px; font-weight: 700; color: var(--c-slate); margin-bottom: 4px; letter-spacing: -0.5px; }
.home-section .sec-sub { font-size: 13px; color: var(--c-text-sub); margin-bottom: 18px; }
.home-section .sec-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 18px; }
.home-section .sec-head .sec-title, .home-section .sec-head .sec-sub { margin-bottom: 0; }
.home-section .sec-head .sec-sub { margin-top: 4px; }

/* Category Grid */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.cat-card { background: white; border: 1px solid var(--c-gray-2); border-radius: 10px; padding: 28px 22px; transition: var(--t); text-align: left; box-shadow: var(--c-shadow); }
.cat-card:hover { border-color: var(--c-blue); transform: translateY(-4px); box-shadow: var(--c-shadow-md); }
.cat-icon { font-size: 36px; margin-bottom: 14px; line-height: 1; }
.cat-name { font-size: 17px; font-weight: 700; color: var(--c-slate); margin-bottom: 6px; letter-spacing: -0.3px; }
.cat-sub { font-size: 12px; color: var(--c-text-sub); line-height: 1.5; }

/* Why Grid — compact */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.why-card { background: white; border: 1px solid var(--c-gray-2); border-radius: 8px; padding: 18px 16px; text-align: center; transition: var(--t); }
.why-card:hover { border-color: var(--c-blue); box-shadow: var(--c-shadow-md); }
.why-icon { font-size: 26px; margin-bottom: 8px; line-height: 1; }
.why-name { font-size: 14px; font-weight: 700; color: var(--c-slate); margin-bottom: 6px; letter-spacing: -0.3px; }
.why-card p { font-size: 12px; color: var(--c-text-sub); line-height: 1.5; }

/* === 취급 브랜드 — 본사 로고 grid (compact) === */
.brand-logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
.brand-logo-card { background: white; border: 1px solid var(--c-gray-2); border-radius: 6px; padding: 6px 10px; transition: var(--t); display: flex; align-items: center; justify-content: center; min-height: 72px; }
.brand-logo-card:hover { border-color: var(--c-blue); box-shadow: var(--c-shadow-md); }
.brand-logo-card.placeholder { opacity: 0.45; border-style: dashed; }
.brand-logo-card img { max-width: 100%; max-height: 56px; object-fit: contain; filter: grayscale(20%); transition: filter 0.2s; }
.brand-logo-card:hover img { filter: grayscale(0%); }
.brand-logo-card .logo-text { font-weight: 700; font-size: 14px; color: var(--c-slate); letter-spacing: -0.3px; }

/* === Brand Showcase (이전 CTA banner 자리) === */
.brand-showcase { margin-bottom: 56px; }
.brand-showcase:last-child { margin-bottom: 0; }
.brand-showcase .bs-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 2px solid var(--c-gray-2); }
.brand-showcase .bs-icon { font-size: 22px; margin-bottom: 6px; line-height: 1; }
.brand-showcase h3 { font-size: 20px; font-weight: 700; color: var(--c-slate); letter-spacing: -0.4px; }
.brand-showcase .bs-header p { font-size: 13px; color: var(--c-text-sub); margin-top: 4px; }

/* === News Slider (JMIC 옆 스크롤) === */
.news-section .sec-head { align-items: center; }
.news-nav-btns { display: flex; gap: 8px; }
.news-nav-btns .nav-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--c-gray-2); background: white; cursor: pointer; font-size: 18px; color: var(--c-slate); transition: var(--t); }
.news-nav-btns .nav-btn:hover { border-color: var(--c-blue); color: var(--c-blue); transform: scale(1.05); }
.news-slider { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
.news-slider::-webkit-scrollbar { height: 6px; }
.news-slider::-webkit-scrollbar-track { background: var(--c-gray-1); border-radius: 3px; }
.news-slider::-webkit-scrollbar-thumb { background: var(--c-gray-3); border-radius: 3px; }
.news-card { flex: 0 0 300px; background: white; border: 1px solid var(--c-gray-2); border-radius: 8px; overflow: hidden; scroll-snap-align: start; transition: var(--t); display: flex; flex-direction: column; }
.news-card:hover { border-color: var(--c-blue); box-shadow: var(--c-shadow-md); }
.news-card .news-img { height: 120px; background: var(--c-gray-1); }
.news-card .news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card .news-body { padding: 12px 14px; flex: 1; display: flex; flex-direction: column; }
.news-card .news-brand { font-size: 10px; color: var(--c-blue); font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 4px; }
.news-card h3 { font-size: 14px; font-weight: 700; color: var(--c-slate); margin-bottom: 5px; line-height: 1.35; letter-spacing: -0.2px; }
.news-card .news-body p { font-size: 12px; color: var(--c-text-sub); line-height: 1.5; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card .news-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--c-gray-2); font-size: 12px; }
.news-card .news-date { color: var(--c-text-mute); }
.news-card .news-cta { color: var(--c-blue); font-weight: 700; }
.news-card .news-cta:hover { text-decoration: underline; }
.news-card .news-ext { color: var(--c-text-mute); font-weight: 500; font-size: 11px; }
.news-card .news-ext:hover { color: var(--c-blue); }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, #1e293b 0%, #334155 100%); color: white; padding: 64px 0; }
.cta-banner .wrap { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-size: 28px; font-weight: 700; color: white; margin-bottom: 8px; letter-spacing: -0.6px; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 580px; line-height: 1.6; }
.cta-banner .cta-actions { display: flex; gap: 10px; }
.cta-banner .btn.primary { background: var(--c-blue); border-color: var(--c-blue); padding: 14px 26px; font-size: 15px; }
.cta-banner .btn.primary:hover { background: var(--c-blue-dark); }
.cta-banner .btn.ghost-light { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); padding: 14px 26px; font-size: 15px; }
.cta-banner .btn.ghost-light:hover { background: rgba(255,255,255,0.1); border-color: white; color: white; }

/* Post Grid (blog preview) */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.post-card { background: white; border: 1px solid var(--c-gray-2); border-radius: 8px; padding: 24px 22px; transition: var(--t); }
.post-card:hover { border-color: var(--c-blue); transform: translateY(-2px); box-shadow: var(--c-shadow-md); }
.post-card .date { font-size: 12px; color: var(--c-text-sub); margin-bottom: 8px; letter-spacing: 0.3px; }
.post-card .title { font-size: 16px; font-weight: 700; color: var(--c-slate); margin-bottom: 10px; letter-spacing: -0.3px; line-height: 1.4; }
.post-card .excerpt { font-size: 13px; color: var(--c-text-sub); line-height: 1.6; }

/* === legacy Hero (keep for non-home pages if used) === */
.hero { padding: 100px 0 72px 0; text-align: center; background: linear-gradient(180deg, #f1f5f9 0%, white 100%); }
.hero h1 { font-size: 48px; font-weight: 700; letter-spacing: -1.6px; color: var(--c-slate); margin-bottom: 16px; line-height: 1.15; }
.hero h1 span { color: var(--c-blue); }
.hero .sub { font-size: 17px; color: var(--c-text-sub); margin-bottom: 40px; font-weight: 400; }
.hero-search { max-width: 680px; margin: 0 auto 18px auto; display: flex; gap: 10px; }
.hero-search input { flex: 1; padding: 16px 26px; border: 1px solid var(--c-gray-2); border-radius: 32px; font-size: 15px; font-family: inherit; transition: var(--t); box-shadow: var(--c-shadow); }
.hero-search input:focus { outline: none; border-color: var(--c-blue); box-shadow: 0 0 0 4px rgba(0,137,208,0.12); }
.hero-search button { background: var(--c-slate); color: white; border: 0; border-radius: 32px; padding: 16px 32px; font-size: 14px; font-weight: 600; letter-spacing: -0.2px; }
.hero-search button:hover { background: var(--c-blue); }
.hero .trust { font-size: 13px; color: var(--c-text-sub); margin-top: 16px; }

/* === Section === */
.section { padding: 80px 0; }
.section h2 { font-size: 26px; font-weight: 700; color: var(--c-slate); margin-bottom: 36px; letter-spacing: -0.7px; }
.section h2 .small { font-size: 14px; color: var(--c-text-sub); font-weight: 400; margin-left: 10px; letter-spacing: -0.2px; }

/* === Brand Grid === */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.brand-card { border: 1px solid var(--c-gray-2); border-radius: 8px; padding: 22px 14px; text-align: center; transition: var(--t); background: white; }
.brand-card:hover { border-color: var(--c-blue); color: var(--c-blue); transform: translateY(-3px); box-shadow: var(--c-shadow-md); }
.brand-card.placeholder { border-style: dashed; opacity: 0.55; }
.brand-card .name { font-weight: 600; font-size: 15px; margin-bottom: 6px; letter-spacing: -0.3px; }
.brand-card .cnt { font-size: 11px; color: var(--c-text-sub); letter-spacing: 0.3px; }

/* === Card Grid === */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(264px, 1fr)); gap: 20px; }
.product-card { border: 1px solid var(--c-gray-2); border-radius: 8px; background: white; transition: var(--t); overflow: hidden; display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--c-blue); transform: translateY(-2px); box-shadow: var(--c-shadow-md); }
.product-card .img-wrap { height: 180px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--c-gray-2); background: #fff; padding: 14px; }
.product-card .img-wrap img { max-width: 95%; max-height: 95%; object-fit: contain; }
.product-card .img-wrap .no-img { color: var(--c-text-mute); font-size: 12px; }
.product-card .name { font-size: 14px; font-weight: 600; line-height: 1.45; height: 60px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; padding: 14px 14px 0 14px; color: var(--c-slate); letter-spacing: -0.2px; }
.product-card .spec { font-size: 12px; color: var(--c-text-sub); line-height: 1.4; margin-top: 6px; height: 34px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; padding: 0 14px; }
.product-card .price { font-size: 14px; font-weight: 600; padding: 12px 14px 0 14px; color: var(--c-blue); letter-spacing: -0.3px; }
.product-card .price .rfq { color: var(--c-blue); }
.product-card .meta { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; margin-top: auto; border-top: 1px solid var(--c-gray-2); }
.product-card .meta .mfr { font-size: 11px; color: var(--c-text-sub); }
.product-card .badge { background: rgba(0,137,208,0.08); color: var(--c-direct); padding: 2px 7px; font-size: 10px; font-weight: 700; border-radius: 3px; letter-spacing: 0.3px; }

.more { text-align: center; margin-top: 40px; }
.btn { display: inline-block; padding: 12px 26px; background: var(--c-slate); color: white; border-radius: var(--radius); font-size: 14px; font-weight: 500; letter-spacing: -0.2px; transition: var(--t); border: 1px solid var(--c-slate); }
.btn:hover { background: var(--c-blue); border-color: var(--c-blue); color: white; transform: translateY(-1px); box-shadow: var(--c-shadow-md); }
.btn.ghost { background: transparent; color: var(--c-slate); border-color: var(--c-gray-2); }
.btn.ghost:hover { border-color: var(--c-blue); color: var(--c-blue); background: transparent; }
.btn.primary { background: var(--c-blue); border-color: var(--c-blue); }
.btn.primary:hover { background: var(--c-blue-dark); border-color: var(--c-blue-dark); }

/* === Product Detail (JMIC-style, 한 화면 fit) === */
.product-detail { padding: 16px 24px 60px 24px; }
.breadcrumb { font-size: 12px; color: var(--c-text-sub); margin-bottom: 14px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb .sep { color: var(--c-gray-3); margin: 0 2px; }
.breadcrumb .current { color: var(--c-slate); font-weight: 500; }
.breadcrumb a:hover { color: var(--c-blue); }

.detail-grid { display: grid; grid-template-columns: 5fr 5fr; gap: 36px; margin-bottom: 20px; align-items: start; }
@media (max-width: 880px) { .detail-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 16px; } }

.gallery .main-img { background: #fff; border: 1px solid var(--c-gray-2); border-radius: 8px; height: clamp(340px, 52vh, 460px); display: flex; align-items: center; justify-content: center; padding: 18px; box-shadow: var(--c-shadow); }
.gallery .main-img img { max-width: 100%; max-height: 100%; object-fit: contain; transition: opacity 0.2s; }
.gallery .main-img.placeholder { height: clamp(340px, 52vh, 460px); }
.gallery .main-img.placeholder span { color: var(--c-text-mute); font-size: 14px; }
.gallery .thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.gallery .thumb { width: 60px; height: 60px; border: 2px solid var(--c-gray-2); background: white; padding: 0; cursor: pointer; transition: var(--t); border-radius: 4px; overflow: hidden; }
.gallery .thumb:hover { border-color: var(--c-blue); }
.gallery .thumb.on { border-color: var(--c-blue); }
.gallery .thumb img { width: 100%; height: 100%; object-fit: contain; }

.info h1 { font-size: 22px; font-weight: 700; line-height: 1.3; color: var(--c-slate); margin-bottom: 10px; letter-spacing: -0.5px; }
.info .meta-row { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.info .badge { padding: 4px 10px; font-size: 11px; font-weight: 700; border-radius: 4px; letter-spacing: 0.3px; }
.info .badge.direct { background: rgba(0,137,208,0.1); color: var(--c-direct); }
.info .badge.stock { background: var(--c-stock-bg); color: var(--c-stock); }
.info .badge.brand { background: var(--c-gray-1); color: var(--c-text-sub); border: 1px solid var(--c-gray-2); }
.info .codes { display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; font-size: 12px; color: var(--c-text-sub); margin-bottom: 12px; padding: 8px 12px; background: var(--c-gray-1); border-radius: 6px; }
.info .codes dt { font-weight: 500; }
.info .codes code { background: white; padding: 1px 6px; font-family: ui-monospace, "SF Mono", monospace; font-size: 11px; border-radius: 3px; border: 1px solid var(--c-gray-2); color: var(--c-slate); }
.info .price-block { padding: 12px 0; border-top: 1px solid var(--c-gray-2); border-bottom: 1px solid var(--c-gray-2); margin-bottom: 12px; }
.info .rfq-label { font-size: 17px; font-weight: 700; color: var(--c-blue); margin-bottom: 3px; letter-spacing: -0.3px; }
.info .rfq-note { font-size: 12px; color: var(--c-text-sub); line-height: 1.5; }
.info .cta-row { display: flex; gap: 8px; margin-bottom: 10px; }

.datasheet-list { padding: 10px 14px; background: var(--c-gray-1); border-radius: 6px; }
.datasheet-list .label { font-size: 11px; color: var(--c-text-sub); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px; }
.datasheet-list .ds-link { display: inline-block; padding: 6px 12px; background: white; border: 1px solid var(--c-gray-2); border-radius: 4px; font-size: 12px; margin: 3px 3px 0 0; transition: var(--t); }
.datasheet-list .ds-link:hover { border-color: var(--c-blue); color: var(--c-blue); background: white; }

/* === Tab block (한 화면 fit · sticky tab-nav) === */
.tabs-block { border-top: 2px solid var(--c-gray-2); padding-top: 0; margin-top: 4px; }
.tab-nav { display: flex; gap: 0; border-bottom: 1px solid var(--c-gray-2); margin-bottom: 16px; overflow-x: auto; position: sticky; top: 56px; background: white; z-index: 5; }
.tab-btn { background: transparent; border: 0; padding: 12px 22px; font-size: 14px; font-weight: 500; color: var(--c-text-sub); cursor: pointer; transition: var(--t); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; letter-spacing: -0.2px; }
.tab-btn:hover { color: var(--c-slate); }
.tab-btn.on { color: var(--c-blue); border-bottom-color: var(--c-blue); font-weight: 700; }
.tab-pane { display: none; padding: 4px 0 24px 0; font-size: 14px; line-height: 1.7; color: var(--c-text); }
.tab-pane.on { display: block; }
.tab-pane .desc-body { white-space: pre-wrap; }
.tab-pane .desc-body p { margin-bottom: 14px; }
.tab-pane .muted { color: var(--c-text-sub); font-style: italic; }
.tab-pane .spec-raw { background: var(--c-gray-1); padding: 18px 20px; border-radius: 6px; font-family: inherit; white-space: pre-wrap; font-size: 14px; color: var(--c-text); line-height: 1.7; }

/* Spec Table — JMIC 표 스타일 */
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table tr { border-bottom: 1px solid var(--c-gray-2); }
.spec-table tr:first-child { border-top: 1px solid var(--c-gray-2); }
.spec-table th, .spec-table td { padding: 10px 16px; text-align: left; vertical-align: top; }
.spec-table th { width: 180px; background: var(--c-gray-1); color: var(--c-slate); font-weight: 600; letter-spacing: -0.2px; }
.spec-table td { color: var(--c-text); }

/* === Configurator (구성품 사양 선택기) === */
.configurator { background: var(--c-gray-1); border: 1px solid var(--c-gray-2); border-radius: 10px; padding: 16px 18px; margin-bottom: 12px; }
.cfg-title { font-size: 13px; font-weight: 700; color: var(--c-slate); margin-bottom: 14px; }
.cfg-row { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 10px; margin-bottom: 9px; }
.cfg-row label { font-size: 12.5px; color: var(--c-text-sub); font-weight: 500; }
.cfg-row select { width: 100%; padding: 8px 10px; font-size: 13px; border: 1.5px solid var(--c-gray-2); border-radius: 6px; background: #fff; color: var(--c-slate); cursor: pointer; outline: none; transition: var(--t); }
.cfg-row select:focus { border-color: var(--c-blue); }
.cfg-code-box { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; padding: 11px 14px; background: var(--c-slate); border-radius: 7px; }
.cfg-code-label { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 500; }
.cfg-code { font-family: ui-monospace, "SF Mono", monospace; font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 0.3px; }
.cfg-note { font-size: 11.5px; color: var(--c-text-mute); line-height: 1.5; margin-top: 10px; }

/* === Faceted 선택기 === */
.faceted { background: var(--c-gray-1); border: 1px solid var(--c-gray-2); border-radius: 10px; padding: 16px 18px; margin-bottom: 12px; }
.faceted .cfg-row { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 10px; margin-bottom: 9px; }
.faceted .cfg-row label { font-size: 12.5px; color: var(--c-text-sub); font-weight: 500; }
.faceted .cfg-row select { width: 100%; padding: 8px 10px; font-size: 13px; border: 1.5px solid var(--c-gray-2); border-radius: 6px; background: #fff; color: var(--c-slate); cursor: pointer; outline: none; }
.faceted .cfg-row select:focus { border-color: var(--c-blue); }
.fct-result { margin-top: 14px; max-height: 360px; overflow-y: auto; }
.fct-count { font-size: 12px; font-weight: 700; color: var(--c-blue); margin-bottom: 8px; }
.fct-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px; background: #fff; border: 1px solid var(--c-gray-2); border-radius: 6px; margin-bottom: 6px; }
.fct-text { flex: 1; min-width: 0; }
.fct-pn { font-family: ui-monospace, "SF Mono", monospace; font-size: 14px; font-weight: 700; color: var(--c-slate); letter-spacing: 0.2px; }
.fct-spec { font-size: 11px; color: var(--c-text-sub); margin-top: 3px; line-height: 1.4; }
.fct-quote { flex-shrink: 0; font-size: 12px; font-weight: 700; color: var(--c-blue); white-space: nowrap; padding: 7px 14px; border: 1.5px solid var(--c-blue); border-radius: 6px; transition: var(--t); }
.fct-quote:hover { background: var(--c-blue); color: #fff; }
.fct-empty { font-size: 13px; color: var(--c-text-mute); padding: 12px 0; }

/* === Track B — 사양 의뢰 폼 === */
.spec-inquiry { margin-top: 16px; border: 1px solid var(--c-gray-2); border-radius: 10px; background: #f8fafc; overflow: hidden; }
.si-summary { display: flex; align-items: center; gap: 10px; padding: 14px 16px; cursor: pointer; list-style: none; font-size: 13.5px; color: var(--c-slate); user-select: none; }
.si-summary::-webkit-details-marker { display: none; }
.si-summary b { color: var(--c-blue); }
.si-ico { font-size: 17px; flex-shrink: 0; }
.si-tx { flex: 1; line-height: 1.45; }
.si-arrow { margin-left: auto; flex-shrink: 0; transition: transform .2s; color: var(--c-text-mute); }
.spec-inquiry[open] .si-arrow { transform: rotate(180deg); }
.spec-inquiry[open] .si-summary { border-bottom: 1px solid var(--c-gray-2); background: #fff; }
.si-body { padding: 16px; }
.si-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 14px; }
.si-field { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.si-field.si-full { grid-column: 1 / -1; }
.si-field label { font-size: 11.5px; font-weight: 600; color: var(--c-text-sub); }
.si-field input, .si-field select, .si-field textarea { padding: 8px 10px; border: 1px solid var(--c-gray-2); border-radius: 6px; font-size: 13px; font-family: inherit; color: var(--c-slate); background: #fff; width: 100%; box-sizing: border-box; }
.si-field input:focus, .si-field select:focus, .si-field textarea:focus { outline: none; border-color: var(--c-blue); }
.si-field textarea { resize: vertical; }
.si-contact { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 11px 14px; margin-top: 13px; padding-top: 13px; border-top: 1px dashed var(--c-gray-2); }
.si-submit { margin-top: 15px; width: 100%; }
.si-foot { font-size: 11px; color: var(--c-text-mute); margin-top: 9px; text-align: center; line-height: 1.5; }
@media (max-width: 560px) { .si-grid, .si-contact { grid-template-columns: 1fr; } }

/* === NEWS (WI 편집) === */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }
.news-card-v2 { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--c-gray-2); border-radius: 10px; overflow: hidden; transition: var(--t); }
.news-card-v2:hover { border-color: var(--c-blue); transform: translateY(-3px); box-shadow: var(--c-shadow-md); }
.news-card-v2 .nc-img { aspect-ratio: 16/10; background: #fff; overflow: hidden; border-bottom: 1px solid var(--c-gray-1); }
.news-card-v2 .nc-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.news-card-v2 .nc-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.nc-cat { display: inline-block; align-self: flex-start; font-size: 11px; font-weight: 700; color: var(--c-blue); background: rgba(0,137,208,0.08); padding: 3px 10px; border-radius: 12px; letter-spacing: 0.2px; }
.news-card-v2 .nc-body h3 { font-size: 16px; font-weight: 700; line-height: 1.4; color: var(--c-slate); letter-spacing: -0.4px; }
.news-card-v2 .nc-body p { font-size: 13px; color: var(--c-text-sub); line-height: 1.6; }
.nc-date { font-size: 12px; color: var(--c-text-mute); margin-top: 2px; }

/* NEWS index */
.news-index { padding: 36px 24px 80px; }
.ni-head { text-align: center; margin-bottom: 32px; }
.ni-head h1 { font-size: 38px; font-weight: 800; color: var(--c-slate); letter-spacing: -1px; }
.ni-head .sub { font-size: 15px; color: var(--c-text-sub); margin-top: 8px; }
.ni-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; background: #fff; border: 1px solid var(--c-gray-2); border-radius: 12px; overflow: hidden; margin-bottom: 28px; transition: var(--t); }
.ni-feature:hover { border-color: var(--c-blue); box-shadow: var(--c-shadow-md); }
@media (max-width: 760px) { .ni-feature { grid-template-columns: 1fr; } }
.ni-feature .nif-img { background: #fff; min-height: 280px; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--c-gray-1); }
.ni-feature .nif-img img { width: 100%; height: 100%; max-height: 360px; object-fit: contain; padding: 24px; }
.ni-feature .nif-body { padding: 36px 38px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.ni-feature .nif-body h2 { font-size: 26px; font-weight: 800; line-height: 1.3; color: var(--c-slate); letter-spacing: -0.6px; }
.ni-feature .nif-body p { font-size: 15px; color: var(--c-text-sub); line-height: 1.7; }

/* NEWS article */
.news-article { padding: 28px 24px 80px; max-width: 820px; }
.na-head { margin: 18px 0 24px; }
.na-cat { display: inline-block; font-size: 12px; font-weight: 700; color: var(--c-blue); background: rgba(0,137,208,0.08); padding: 4px 12px; border-radius: 14px; }
.na-head h1 { font-size: 34px; font-weight: 800; line-height: 1.3; color: var(--c-slate); letter-spacing: -1px; margin: 14px 0 10px; }
.na-date { font-size: 13px; color: var(--c-text-mute); }
.na-hero { background: #fff; border: 1px solid var(--c-gray-2); border-radius: 12px; overflow: hidden; margin-bottom: 32px; display: flex; align-items: center; justify-content: center; }
.na-hero img { width: 100%; max-height: 440px; object-fit: contain; padding: 28px; }
.na-body { font-size: 16px; line-height: 1.85; color: var(--c-text); }
.na-body h2 { font-size: 22px; font-weight: 700; color: var(--c-slate); margin: 36px 0 14px; letter-spacing: -0.5px; }
.na-body h3 { font-size: 18px; font-weight: 700; color: var(--c-slate); margin: 26px 0 10px; }
.na-body p { margin-bottom: 16px; }
.na-body ul, .na-body ol { padding-left: 24px; margin-bottom: 16px; }
.na-body li { margin-bottom: 8px; }
.na-body strong { color: var(--c-slate); font-weight: 700; }
.na-body a { color: var(--c-blue); text-decoration: underline; }
.na-foot { display: flex; gap: 12px; justify-content: space-between; margin: 44px 0; padding-top: 24px; border-top: 1px solid var(--c-gray-2); }
.na-more { margin-top: 48px; }
.na-more .sec-title { font-size: 20px; margin-bottom: 20px; }

/* === Product List (/p/) === */
.plist-wrap { padding: 32px 24px 80px 24px; }
.plist-head { text-align: center; margin-bottom: 28px; }
.plist-head h1 { font-size: 32px; font-weight: 700; color: var(--c-slate); letter-spacing: -0.8px; margin-bottom: 8px; }
.plist-head .sub { font-size: 15px; color: var(--c-text-sub); margin-bottom: 22px; }
.plist-search { max-width: 520px; margin: 0 auto; }
.plist-search input { width: 100%; padding: 13px 18px; font-size: 15px; border: 1.5px solid var(--c-gray-2); border-radius: 8px; outline: none; transition: var(--t); }
.plist-search input:focus { border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(0,137,208,0.1); }

.brand-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 18px; }
.brand-chips .chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 15px; font-size: 13.5px; font-weight: 500; color: var(--c-text-sub); background: var(--c-gray-1); border: 1.5px solid var(--c-gray-2); border-radius: 20px; cursor: pointer; transition: var(--t); white-space: nowrap; }
.brand-chips .chip:hover { border-color: var(--c-blue); color: var(--c-blue); }
.brand-chips .chip.on { background: var(--c-blue); border-color: var(--c-blue); color: #fff; font-weight: 700; }
.brand-chips .chip .c { font-size: 11px; opacity: 0.7; font-weight: 600; }
.brand-chips .chip.on .c { opacity: 0.85; }

.plist-count { text-align: center; font-size: 13px; color: var(--c-text-mute); margin-bottom: 22px; }
.plist-empty { text-align: center; padding: 60px 20px; color: var(--c-text-sub); }
.plist-empty p { margin-bottom: 0; display: flex; flex-direction: column; gap: 14px; align-items: center; }

/* === About === */
.about { padding: 60px 24px 100px 24px; max-width: 900px; margin: 0 auto; }
.about h1 { font-size: 44px; font-weight: 700; color: var(--c-slate); margin-bottom: 16px; letter-spacing: -1.4px; }
.about .lede { font-size: 19px; color: var(--c-text-sub); margin-bottom: 56px; line-height: 1.5; }
.about .block { padding: 36px 0; border-top: 1px solid var(--c-gray-2); }
.about .block:first-of-type { border-top: 0; }
.about .block h2 { font-size: 22px; font-weight: 700; color: var(--c-slate); margin-bottom: 22px; letter-spacing: -0.5px; }
.about ul { list-style: disc; padding-left: 22px; }
.about ul li { padding: 8px 0; font-size: 15px; line-height: 1.7; }
.about .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 12px; }
.about .cards .card { background: var(--c-gray-1); padding: 22px; border-radius: 8px; border: 1px solid var(--c-gray-2); transition: var(--t); }
.about .cards .card:hover { border-color: var(--c-blue); transform: translateY(-2px); box-shadow: var(--c-shadow-md); }
.about .cards .card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--c-slate); letter-spacing: -0.3px; }
.about .cards .card p { font-size: 13px; color: var(--c-text-sub); line-height: 1.6; }

/* === Footer === */
.site-footer { padding: 60px 0 28px 0; border-top: 1px solid var(--c-gray-2); margin-top: 80px; background: var(--c-gray-1); }
.site-footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; }
.site-footer strong { font-size: 13px; color: var(--c-slate); margin-bottom: 12px; display: block; letter-spacing: 0.3px; }
.site-footer p { font-size: 13px; color: var(--c-text-sub); line-height: 1.8; }
.site-footer a { color: var(--c-text-sub); }
.site-footer a:hover { color: var(--c-blue); }
.site-footer .copy { font-size: 12px; color: var(--c-text-mute); text-align: center; padding-top: 28px; border-top: 1px solid var(--c-gray-2); }
