/* ═══════════════════════════════════════════════════════════
   R.P ELECTRONICS — design system
   Precision · Trust · Global  (Navy #1F3A5F / Red #C0392B)
   ═══════════════════════════════════════════════════════════ */
:root {
  --navy: #1F3A5F;
  --navy-deep: #16294a;
  --navy-ink: #0e1c33;
  --red: #C0392B;
  --red-dark: #9a2b1f;
  --ink: #1c2533;
  --body: #3d4a5c;
  --muted: #6b7685;
  --muted2: #8a94a6;
  --line: #e3e8f0;
  --bg: #f5f7fa;
  --bg2: #eef2f7;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 2px 14px rgba(15, 30, 60, .07);
  --shadow-lg: 0 12px 40px rgba(15, 30, 60, .14);
  --maxw: 1200px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Pretendard Variable', Pretendard, 'Noto Sans KR', 'Noto Sans JP', 'Noto Sans SC', -apple-system, 'Malgun Gothic', sans-serif;
  color: var(--body); background: var(--white); line-height: 1.65; font-size: 18px;
  word-break: keep-all; overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
/* 본문 폭 원칙: 좌우 15% 여백 고정 */
.container { max-width: none; margin: 0 auto; padding: 0 15%; }
[id] { scroll-margin-top: 92px; }

/* ── header ── */
.rp-header {
  position: sticky; top: 0; z-index: 900; background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
/* 헤더 폭 원칙: 좌우 10% 여백 고정 */
.rp-header .hwrap { max-width: none; margin: 0 auto; padding: 0 10%; display: flex; align-items: center; gap: 26px; height: 76px; }
.rp-logo img { height: 40px; width: auto; }
.rp-nav { display: flex; gap: 2px; margin-left: auto; align-items: center; }
.rp-nav .nav-item { position: relative; }
.rp-nav .nav-item > a, .rp-nav > a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 15px; font-weight: 600; font-size: 18px; color: var(--ink); border-radius: 9px;
  transition: .18s;
}
.rp-nav .nav-item > a:hover, .rp-nav .nav-item.onmenu > a, .rp-nav > a:hover, .rp-nav > a.on { color: var(--navy); background: var(--bg2); }
.rp-nav .caret { font-size: 16px; color: var(--muted); transition: .18s; pointer-events: none; }
.rp-nav .nav-item:hover .caret { transform: rotate(180deg); color: var(--navy); }
/* 중메뉴 (drop-down) — 17px 고정 */
.subnav {
  position: absolute; top: 100%; left: 0; min-width: 240px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 8px 0; display: none; z-index: 950;
}
.rp-nav .nav-item:hover > .subnav { display: block; }
.subnav a { display: block; padding: 10px 20px; font-size: 17px; font-weight: 500; color: var(--body); white-space: nowrap; }
.subnav a:hover { background: var(--bg2); color: var(--navy); }
.rp-nav > a.rfq-link { color: #fff; background: var(--red); margin-left: 6px; }
.rp-nav > a.rfq-link:hover { background: var(--red-dark); }
.rp-langs { display: flex; gap: 2px; margin-left: 14px; border: 1px solid var(--line); border-radius: 9px; padding: 3px; }
.rp-langs a { font-size: 16px; font-weight: 700; padding: 4px 8px; border-radius: 6px; color: var(--muted); }
.rp-langs a.on { background: var(--navy); color: #fff; }
.rp-burger { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px; }
.rp-burger span { display: block; width: 24px; height: 2.5px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* mobile nav */
@media (max-width: 1024px) {
  .rp-burger { display: block; }
  .rp-nav {
    position: fixed; inset: 76px 0 auto 0; background: #fff; flex-direction: column; gap: 0;
    padding: 12px 20px 22px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    display: none; max-height: calc(100vh - 76px); overflow-y: auto; align-items: stretch;
  }
  .rp-nav.open { display: flex; }
  .rp-nav .nav-item { width: 100%; }
  .rp-nav .nav-item > a, .rp-nav > a { display: flex; padding: 14px 10px; border-bottom: 1px solid var(--bg2); border-radius: 0; width: 100%; justify-content: space-between; }
  .subnav { position: static; display: none; min-width: 0; border: 0; border-radius: 0; box-shadow: none; background: var(--bg); padding: 4px 0; }
  .rp-nav .nav-item.open > .subnav { display: block; }
  .rp-nav .nav-item:hover > .subnav { display: none; }
  .rp-nav .nav-item.open:hover > .subnav { display: block; }
  .subnav a { padding: 12px 26px; white-space: normal; }
  .rp-nav > a.rfq-link { border-radius: 10px; text-align: center; margin: 12px 0 0; justify-content: center; }
  .rp-langs { margin-left: auto; margin-top: 12px; }
}

/* ── hero v2 — rpohm.co.kr 오리지널 슬라이더 재현 ──
   원본 SR7 스펙: 높이 1000px(모바일 800px), 텍스트 중앙 정렬,
   타이틀 60px(Noto Sans KR 400/bold, ls 1px), 서브 25px/lh35(weight 100),
   흰색 + text-shadow 2px 2px 3px rgba(0,0,0,.3), 배경 영상+이미지 페이드 */
.rp-hero2 {
  position: relative; height: 1000px; overflow: hidden; background: #181818;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.h2-slides { position: absolute; inset: 0; }
.h2-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.h2-slide.on { opacity: 1; }
.rp-hero2::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,16,28,.18), rgba(10,16,28,.34));
}
.h2-text {
  position: relative; z-index: 2; width: 100%; padding: 0 15%;
  text-align: center; transform: translateY(-90px);
  font-family: 'Noto Sans KR', 'Pretendard Variable', Pretendard, sans-serif;
}
.h2-text h1 {
  font-size: clamp(32px, 4.5vw, 60px); font-weight: 400; letter-spacing: 1px;
  line-height: 1.15; color: #fff; text-shadow: 2px 2px 3px rgba(0,0,0,.3);
}
.h2-text h1 b { font-weight: 700; }
.h2-text p {
  margin-top: 26px; font-size: clamp(18px, 2vw, 25px); font-weight: 100;
  line-height: 1.45; color: #fff; text-shadow: 2px 2px 3px rgba(0,0,0,.3);
}
.h2-text p b { font-weight: 700; }
.h2-text .hero-ctas { margin-top: 38px; }
@media (max-width: 800px) {
  .rp-hero2 { height: 800px; }
  .h2-text { transform: translateY(-50px); }
}

/* ── hero (구버전, page-hero 등에서 재사용) ── */
.rp-hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, var(--navy-ink) 0%, var(--navy-deep) 55%, #24466e 100%);
}
.rp-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url('/assets/rp/img/hero.jpg') center/cover no-repeat;
  opacity: .22; mix-blend-mode: luminosity;
}
.rp-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,28,51,.25) 0%, rgba(14,28,51,.66) 100%);
}
.rp-hero .hero-in { position: relative; z-index: 2; max-width: none; margin: 0 auto; padding: 96px 15% 92px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; letter-spacing: .16em; font-weight: 700; color: #ffb3a7; margin-bottom: 18px; }
.hero-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); }
.rp-hero h1 { font-size: clamp(34px, 5.4vw, 58px); line-height: 1.16; font-weight: 800; letter-spacing: -.02em; white-space: pre-line; }
.rp-hero .hero-sub { margin-top: 20px; font-size: clamp(18px, 2vw, 20px); color: #cdd8e8; }
.hero-ctas { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; padding: 14px 28px; border-radius: 11px; transition: .18s; cursor: pointer; border: 0; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-line { background: #fff; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-line:hover { background: var(--bg2); }

/* ── stats strip ── */
.rp-stats { background: var(--navy); color: #fff; }
.rp-stats .stats-in { max-width: none; margin: 0 auto; padding: 30px 15%; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.stat { text-align: center; padding: 8px 4px; }
.stat b { display: block; font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -.01em; color: #fff; }
.stat span { font-size: 16px; color: #a9bcd6; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.12); }
@media (max-width: 860px) {
  .rp-stats .stats-in { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(4) { border-left: 0; }
}
@media (max-width: 520px) { .rp-stats .stats-in { grid-template-columns: repeat(2, 1fr); } .stat + .stat { border-left: 0; } }

/* ── section scaffolding ── */
.sec { padding: 84px 0; }
.sec.alt { background: var(--bg); }
.sec-head { text-align: center; max-width: none; margin: 0 auto 46px; }
.sec-head .kicker { display: inline-block; font-size: 16px; letter-spacing: .18em; font-weight: 800; color: var(--red); margin-bottom: 10px; text-transform: uppercase; }
.sec-head h2 { font-size: clamp(26px, 3.6vw, 38px); color: var(--ink); font-weight: 800; letter-spacing: -.02em; line-height: 1.25; }
.sec-head p { margin-top: 12px; color: var(--muted); font-size: 18px; }

/* ── category / product cards ── */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: .22s; display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #c6d4e8; }
.cat-card .thumb { aspect-ratio: 16/10; background: #fff; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--bg2); padding: 14px; }
.cat-card .thumb img { max-height: 100%; width: auto; object-fit: contain; }
.cat-card .body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.cat-card .num { font-size: 16px; font-weight: 800; color: var(--red); letter-spacing: .08em; }
.cat-card h3 { font-size: 18.5px; color: var(--ink); margin: 4px 0 6px; font-weight: 800; }
.cat-card .models { font-size: 16px; color: var(--navy); font-weight: 600; font-family: 'SF Mono', Consolas, monospace; }
.cat-card .tag { margin-top: 8px; font-size: 16.5px; color: var(--muted); }
.cat-card .go { margin-top: auto; padding-top: 14px; font-size: 16px; font-weight: 700; color: var(--red); }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 1024px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .prod-grid { grid-template-columns: 1fr; } }
.prod-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .2s; display: flex; flex-direction: column; }
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prod-card .thumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; padding: 16px; background: #fff; border-bottom: 1px solid var(--bg2); }
.prod-card .thumb img { max-height: 100%; width: auto; object-fit: contain; }
.prod-card .body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.prod-card .model { font-size: 16px; font-weight: 700; color: var(--red); font-family: Consolas, monospace; }
.prod-card h3 { font-size: 17px; color: var(--ink); margin: 4px 0 6px; font-weight: 700; line-height: 1.35; }
.prod-card p { font-size: 16.5px; color: var(--muted); flex: 1; }
.prod-card .go { margin-top: 12px; font-size: 16px; font-weight: 700; color: var(--navy); }

/* ── 제품 통합검색 (products 상단) ── */
.prod-search {
  position: relative; display: flex; align-items: center; margin: 0 auto 18px;
  background: #fff; border: 2px solid var(--navy); border-radius: 16px;
  box-shadow: 0 8px 30px rgba(31,58,95,.12); transition: .18s;
}
.prod-search:focus-within { border-color: var(--red); box-shadow: 0 8px 34px rgba(192,57,43,.18); }
.prod-search .ps-icon { font-size: 24px; padding: 0 8px 0 22px; color: var(--navy); }
.prod-search input {
  flex: 1; border: 0; outline: none; background: transparent;
  padding: 22px 16px 22px 8px; font-size: 20px; font-family: inherit; color: var(--ink);
}
.prod-search input::placeholder { color: var(--muted2); font-size: 18px; }
.prod-search input::-webkit-search-cancel-button { display: none; }
.prod-search .ps-clear {
  border: 0; background: var(--bg2); color: var(--muted); cursor: pointer;
  font-size: 22px; line-height: 1; width: 38px; height: 38px; border-radius: 50%;
  margin-right: 14px; transition: .15s;
}
.prod-search .ps-clear:hover { background: var(--red); color: #fff; }
.ps-status { text-align: center; margin: 0 0 26px; font-size: 18px; font-weight: 600; color: var(--navy); }
@media (max-width: 640px) {
  .prod-search input { padding: 16px 12px 16px 6px; font-size: 17px; }
  .prod-search input::placeholder { font-size: 16px; }
  .prod-search .ps-icon { font-size: 20px; padding-left: 16px; }
}

/* category filter pills */
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 38px; }
.cat-pills a { padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line); font-size: 16px; font-weight: 600; color: var(--body); background: #fff; transition: .15s; }
.cat-pills a:hover { border-color: var(--navy); color: var(--navy); }
.cat-pills a.on { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ── strengths ── */
.str-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1024px) { .str-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .str-grid { grid-template-columns: 1fr; } }
.str-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: var(--radius); padding: 26px 24px; }
.str-card b { display: block; font-size: 34px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.str-card h3 { font-size: 17px; color: var(--ink); margin: 6px 0 8px; }
.str-card p { font-size: 18px; color: var(--muted); }

/* ── tables (spec / capacity) ── */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
table.rp-tbl { width: 100%; border-collapse: collapse; font-size: 18px; min-width: 560px; }
.rp-tbl th { background: var(--navy); color: #fff; font-weight: 700; padding: 12px 14px; text-align: left; font-size: 16px; white-space: nowrap; }
.rp-tbl td { padding: 12px 14px; border-top: 1px solid var(--bg2); color: var(--body); font-size: 18px; }
.rp-tbl tr:nth-child(even) td { background: #f8fafc; }
.rp-tbl td:first-child { font-weight: 700; color: var(--ink); white-space: nowrap; }

/* ── quality gallery ── */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1024px) { .gal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }
.gal-item { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.gal-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: .3s; }
.gal-item:hover img { transform: scale(1.04); }
.gal-item figcaption { padding: 10px 12px; font-size: 16px; color: var(--muted); border-top: 1px solid var(--bg2); }

/* horizontal photo strip on home */
.strip { display: grid; grid-auto-flow: column; grid-auto-columns: 240px; gap: 12px; overflow-x: auto; padding: 4px 2px 14px; scroll-snap-type: x mandatory; }
.strip img { width: 240px; height: 165px; object-fit: cover; border-radius: 11px; border: 1px solid var(--line); scroll-snap-align: start; }

/* ── process flow ── */
.flow { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.flow li { display: flex; align-items: center; gap: 10px; }
.flow .step { background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 20px; font-weight: 700; font-size: 16px; color: var(--navy); white-space: nowrap; }
.flow li::after { content: "→"; color: var(--red); font-weight: 800; }
.flow li:last-child::after { content: ""; }

/* ── certs ── */
.cert-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1024px) { .cert-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px) { .cert-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
.cert-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px; text-align: center; }
.cert-item img { aspect-ratio: 3/4; object-fit: contain; width: 100%; background: #fff; }
.cert-item figcaption { margin-top: 8px; font-size: 16px; color: var(--muted); line-height: 1.4; }

/* ── FAQ (풀폭 2단, TLDR 박스 제거) ── */
.faq-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; align-items: start; }
@media (max-width: 900px) { .faq-wide { grid-template-columns: 1fr; } }
details.faq {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--line);
  border-radius: 14px; padding: 0; overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
details.faq:hover { border-color: #c6d4e8; }
details.faq[open] { border-left-color: var(--red); box-shadow: var(--shadow-lg); }
details.faq summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; gap: 14px;
  padding: 20px 52px 20px 22px; font-weight: 700; color: var(--ink); font-size: 18px; position: relative;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq .qn {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: inline-flex;
  align-items: center; justify-content: center; font-size: 16px; font-weight: 800;
  background: var(--bg2); color: var(--navy); transition: .2s;
}
details.faq[open] .qn { background: var(--red); color: #fff; }
details.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 26px; color: var(--muted2); font-weight: 300; transition: .25s;
}
details.faq:hover summary::after { color: var(--red); }
details.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--red); }
details.faq .a {
  padding: 2px 22px 22px 76px; color: var(--body); font-size: 18px; line-height: 1.75;
}
@media (max-width: 560px) { details.faq .a { padding-left: 22px; } }

/* ── CTA band ── */
.cta-band { background: linear-gradient(115deg, var(--navy-ink), var(--navy) 70%); color: #fff; text-align: center; padding: 74px 15%; }
.cta-band h2 { font-size: clamp(24px, 3.4vw, 36px); font-weight: 800; letter-spacing: -.02em; }
.cta-band p { margin-top: 10px; color: #b9c8dd; font-size: 16.5px; }
.cta-band .ctas { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── page hero (subpages) ── */
.page-hero { background: linear-gradient(115deg, var(--navy-ink), var(--navy-deep) 80%); color: #fff; padding: 66px 0 58px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(192,57,43,.35), transparent 70%); }
/* 사진 배경 서브히어로 — 제품(산업현장) · 품질(성능테스트) */
.page-hero.ph-img { padding: 84px 0 76px; background-blend-mode: normal; }
.page-hero.ph-products {
  background: linear-gradient(115deg, rgba(10,18,34,.84), rgba(16,32,58,.6)),
              url('/assets/rp/img/fac-12.jpg') center 42%/cover no-repeat;
}
.page-hero.ph-quality {
  background: linear-gradient(115deg, rgba(10,18,34,.84), rgba(16,32,58,.6)),
              url('/assets/rp/img/meas-02.jpg') center 34%/cover no-repeat;
}
/* 게시판 서브배경 — 자료실(자판) · 공지(상담) */
.page-hero.ph-b-download {
  background: linear-gradient(115deg, rgba(10,18,34,.84), rgba(16,32,58,.58)),
              url('/assets/rp/img/bg-download.jpg') center 45%/cover no-repeat;
}
.page-hero.ph-b-notice {
  background: linear-gradient(115deg, rgba(10,18,34,.86), rgba(16,32,58,.6)),
              url('/assets/rp/img/bg-notice.jpg') center 30%/cover no-repeat;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.02em; position: relative; z-index: 1; }
.page-hero p { margin-top: 12px; color: #b9c8dd; max-width: 680px; font-size: 16px; position: relative; z-index: 1; }
.crumbs { font-size: 16px; color: #8fa3c0; margin-bottom: 14px; position: relative; z-index: 1; }
.crumbs a:hover { color: #fff; }

/* ── product detail ── */
.pd-top { display: grid; grid-template-columns: 420px 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .pd-top { grid-template-columns: 1fr; } }
.pd-img { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.pd-img img { max-height: 300px; width: auto; object-fit: contain; }
.pd-info .model { color: var(--red); font-weight: 800; font-family: Consolas, monospace; font-size: 16px; letter-spacing: .04em; }
.pd-info h1 { font-size: clamp(24px, 3vw, 32px); color: var(--ink); font-weight: 800; margin: 6px 0 12px; letter-spacing: -.01em; }
.pd-info .desc { color: var(--body); font-size: 18px; }
.quick-tbl { margin-top: 20px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.quick-tbl dl { display: grid; grid-template-columns: 170px 1fr; margin: 0; }
.quick-tbl dt { background: var(--bg); padding: 11px 16px; font-size: 16px; font-weight: 700; color: var(--navy); border-top: 1px solid var(--line); }
.quick-tbl dd { padding: 11px 16px; font-size: 18px; border-top: 1px solid var(--line); color: var(--ink); font-weight: 600; }
.quick-tbl dl:first-child dt, .quick-tbl dl:first-child dd { border-top: 0; }
@media (max-width: 480px) { .quick-tbl dl { grid-template-columns: 120px 1fr; } }
.pd-ctas { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.pd-sec { margin-top: 54px; }
.pd-sec > h2 { font-size: 21px; color: var(--ink); font-weight: 800; margin-bottom: 16px; padding-left: 13px; border-left: 4px solid var(--red); }
.feat-list li { position: relative; padding: 9px 0 9px 30px; font-size: 18px; color: var(--body); border-bottom: 1px dashed var(--bg2); }
.feat-list li::before { content: "✓"; position: absolute; left: 4px; color: var(--red); font-weight: 800; }
.order-box { background: var(--bg); border: 1px dashed #c3cfdf; border-radius: 12px; padding: 20px 22px; }
.order-box code { font-family: Consolas, monospace; font-size: 17px; font-weight: 700; color: var(--navy); letter-spacing: .02em; display: block; margin-bottom: 8px; }
.order-box p { font-size: 16px; color: var(--muted); }

/* ── about ── */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.greeting { white-space: pre-line; font-size: 16px; color: var(--body); }
.greeting::first-line { font-weight: 700; color: var(--ink); }
.kv-tbl { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.kv-tbl dl { display: grid; grid-template-columns: 130px 1fr; margin: 0; }
.kv-tbl dt { background: var(--bg); padding: 12px 16px; font-weight: 700; font-size: 16px; color: var(--navy); border-top: 1px solid var(--line); }
.kv-tbl dd { padding: 12px 16px; font-size: 18px; border-top: 1px solid var(--line); }
.kv-tbl dl:first-child dt, .kv-tbl dl:first-child dd { border-top: 0; }
.timeline { position: relative; padding-left: 26px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding: 0 0 22px 14px; }
.timeline li::before { content: ""; position: absolute; left: -26px; top: 7px; width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 3px solid var(--red); }
.timeline b { display: block; color: var(--navy); font-size: 16px; font-family: Consolas, monospace; }
.timeline span { color: var(--body); font-size: 16px; }
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 720px) { .vision-grid { grid-template-columns: 1fr; } }
.vision-card { background: #fff; border-top: 4px solid var(--navy); border-radius: 12px; box-shadow: var(--shadow); padding: 24px; }
.vision-card h3 { color: var(--red); font-size: 16px; letter-spacing: .1em; margin-bottom: 8px; }
.vision-card p { font-size: 16px; color: var(--body); }
.map-box iframe { width: 100%; height: 380px; border: 0; border-radius: var(--radius); }

/* ── RFQ form ── */
.rfq-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: start; }
@media (max-width: 900px) { .rfq-grid { grid-template-columns: 1fr; } }
.rfq-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.rfq-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .rfq-form .row { grid-template-columns: 1fr; } }
.rfq-form label { display: block; font-size: 16px; font-weight: 700; color: var(--navy); margin: 16px 0 6px; }
.rfq-form input, .rfq-form select, .rfq-form textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 18px;
  font-family: inherit; color: var(--ink); background: #fff; transition: .15s;
}
.rfq-form input:focus, .rfq-form select:focus, .rfq-form textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(31,58,95,.12); }
.rfq-form textarea { min-height: 110px; resize: vertical; }
.rfq-form .note { font-size: 16px; color: var(--muted2); margin-top: 12px; }
.rfq-side { background: var(--navy); color: #d9e4f2; border-radius: var(--radius); padding: 30px; }
.rfq-side h3 { color: #fff; font-size: 19px; margin-bottom: 16px; }
.rfq-side .li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 18px; }
.rfq-side .li b { color: #fff; min-width: 62px; font-size: 16px; }
.flash-ok { background: #e8f7ee; border: 1px solid #b7e2c8; color: #1c6b3c; border-radius: 10px; padding: 14px 18px; margin-bottom: 18px; font-weight: 600; }
.flash-err { background: #fdeeec; border: 1px solid #f2c1ba; color: #a03024; border-radius: 10px; padding: 14px 18px; margin-bottom: 18px; font-weight: 600; }

/* ── footer v2 — 프리미엄 다크 ── */
.rp-footer {
  position: relative; overflow: hidden; color: #93a5bf; font-size: 16.5px;
  background: linear-gradient(165deg, #0e1c33 0%, #0a1424 60%, #081020 100%);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--navy), var(--red) 55%, var(--navy)) 1;
}
.rp-footer .f-glow {
  position: absolute; right: -160px; top: -160px; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,.16), transparent 65%); pointer-events: none;
}
.rp-footer .fwrap {
  position: relative; max-width: none; margin: 0 auto; padding: 64px 12% 42px;
  display: grid; grid-template-columns: 1.5fr .8fr .8fr 1.3fr; gap: 40px;
}
@media (max-width: 1100px) { .rp-footer .fwrap { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 620px) { .rp-footer .fwrap { grid-template-columns: 1fr; } }
.rp-footer img.flogo { height: 38px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.f-tag { font-size: 18px; line-height: 1.7; color: #c6d4e8; font-weight: 500; }
.f-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 16px; }
.f-badges span {
  font-size: 16px; font-weight: 700; letter-spacing: .06em; color: #8fa3c0;
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 4px 13px;
}
.f-biz { font-size: 16px; color: #5f7291; }
.rp-footer h4 {
  color: #fff; font-size: 16px; margin-bottom: 16px; letter-spacing: .14em; text-transform: uppercase;
}
.rp-footer h4::after { content: ""; display: block; width: 22px; height: 2px; background: var(--red); margin-top: 8px; }
.rp-footer .fl li { padding: 5px 0; }
.rp-footer .fl a { position: relative; transition: .15s; font-size: 16.5px; }
.rp-footer .fl a::before { content: "›"; color: var(--red); margin-right: 8px; }
.rp-footer .fl a:hover { color: #fff; padding-left: 4px; }
.f-contact .frow { display: flex; gap: 12px; padding: 6px 0; font-size: 16.5px; align-items: baseline; }
.f-contact .frow b { min-width: 52px; color: #ff9d90; font-size: 16px; letter-spacing: .08em; }
.f-contact .frow a:hover { color: #fff; }
.f-cta-row {
  grid-column: 1 / -1; display: flex; flex-wrap: nowrap; gap: 12px; align-items: center;
  margin-top: 4px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.09);
}
.f-cta-row .btn { font-size: 16.5px; padding: 12px 24px; white-space: nowrap; }
@media (max-width: 560px) { .f-cta-row { flex-wrap: wrap; } .f-cta-row .btn { width: 100%; justify-content: center; } }
.f-btn-line { background: transparent; color: #c6d4e8; border: 1px solid rgba(255,255,255,.28); }
.f-btn-line:hover { border-color: #fff; color: #fff; }
/* 하단 바 */
.f-bar { position: relative; border-top: 1px solid rgba(255,255,255,.09); background: rgba(0,0,0,.22); }
.fbar-in { padding: 16px 12%; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.f-copy { font-size: 16px; color: #6c7f9d; display: inline-flex; align-items: center; gap: 10px; }
.f-admin { display: inline-flex; align-items: center; color: #46587a; transition: .18s; }
.f-admin:hover { color: var(--red); transform: scale(1.15); }
.f-top {
  font-size: 16px; font-weight: 700; color: #8fa3c0; border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; padding: 6px 18px; transition: .18s;
}
.f-top:hover { color: #fff; border-color: var(--red); background: rgba(192,57,43,.18); }

/* ── 기술자료 (guide) — 이미지는 원본 크기 그대로(업스케일 금지) ── */
.guide-imgs { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.guide-imgs img { width: auto; max-width: 100%; height: auto; border: 1px solid var(--line); border-radius: 12px; background: #fff; }

/* ═══ ABOUT 리디자인 (2026-07) — 5섹션 ═══ */
/* ① 인사말: 구사이트 introduce 배너(subimg01) 배경 + 대형 인용 */
.ab-greet {
  position: relative; color: #fff; overflow: hidden; padding: 110px 0 96px;
  background: linear-gradient(115deg, rgba(15,26,46,.68), rgba(24,44,76,.5)),
              url('/assets/rp/img/subimg01.jpg') center/cover no-repeat;
}
.ab-greet::after { content: "”"; position: absolute; right: 4%; top: -70px; font-size: 380px; font-weight: 800; color: rgba(192,57,43,.18); font-family: Georgia, serif; pointer-events: none; }
.ab-kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; letter-spacing: .18em; font-weight: 800; color: #ffb3a7; }
.ab-kicker::before { content: ""; width: 30px; height: 2px; background: var(--red); }
.ab-quote { margin: 26px 0 46px; }
.ab-quote span { display: block; line-height: 1.28; letter-spacing: -.02em; }
.ab-quote .q1 { font-size: clamp(20px, 2.4vw, 30px); font-weight: 300; color: #c6d4e8; }
.ab-quote .q2 { font-size: clamp(28px, 3.6vw, 46px); font-weight: 700; color: #fff; margin-top: 6px; }
.ab-quote .q3 { margin-top: 14px; }
.ab-quote .q3 em {
  font-style: normal; display: inline-block; font-size: clamp(30px, 4.2vw, 54px); font-weight: 800;
  background: var(--red); color: #fff; padding: 6px 26px 8px; border-radius: 6px;
  box-shadow: 10px 10px 0 rgba(192,57,43,.25); transform: rotate(-1deg);
}
.ab-glass { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 18px; }
@media (max-width: 960px) { .ab-glass { grid-template-columns: 1fr; } }
.ab-glass .g-item {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px); border-radius: 16px; padding: 26px 26px 24px;
}
.ab-glass h3 { color: #ffb3a7; font-size: 16px; letter-spacing: .08em; margin-bottom: 10px; text-transform: uppercase; }
.ab-glass p { color: #e4ebf5; font-size: 18px; line-height: 1.75; }
.ab-glass .pledge { border-left: 4px solid var(--red); }
.ab-glass .pledge p { font-size: 18px; font-weight: 500; color: #fff; }
.ab-glass .sign { margin-top: 16px; text-align: right; font-weight: 700; color: #c6d4e8; font-size: 16px; }

/* ② 회사개요: 지표 + 아이콘 카드 + 크롭 배너 */
.ab-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 34px; }
@media (max-width: 900px) { .ab-stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .ab-stats { grid-template-columns: repeat(2, 1fr); } }
.ab-stats .s { background: var(--navy); color: #fff; border-radius: 14px; text-align: center; padding: 22px 8px; position: relative; overflow: hidden; }
.ab-stats .s::after { content: ""; position: absolute; right: -18px; bottom: -18px; width: 64px; height: 64px; border-radius: 50%; background: rgba(192,57,43,.35); }
.ab-stats .s b { display: block; font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; }
.ab-stats .s span { font-size: 16px; color: #a9bcd6; }
/* 회사개요 인포 그리드 — 스펙시트 스타일 (아이콘 없이 타이포 중심) */
.ab-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 960px) { .ab-info { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ab-info { grid-template-columns: 1fr; } }
.ab-info .cell {
  position: relative; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--navy);
  border-radius: 0 0 14px 14px; padding: 24px 24px 22px; transition: .22s; overflow: hidden;
}
.ab-info .cell:hover { border-top-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ab-info .idx {
  position: absolute; top: 12px; right: 18px; font-size: 44px; font-weight: 800; line-height: 1;
  color: var(--bg2); letter-spacing: -.03em; transition: .22s;
}
.ab-info .cell:hover .idx { color: rgba(192,57,43,.16); }
.ab-info h3 { font-size: 16px; color: var(--red); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.ab-info h3::after { content: ""; display: block; width: 22px; height: 2px; background: var(--line); margin-top: 8px; }
.ab-info p { font-size: 18px; color: var(--ink); font-weight: 600; line-height: 1.62; position: relative; z-index: 1; }
.ab-strip { margin-top: 26px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.ab-strip img { width: 100%; }

/* ③ 연혁: 센터 타임라인(지그재그) */
.ab-timeline { position: relative; padding: 10px 0; }
.ab-timeline::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--navy), var(--red)); transform: translateX(-50%); border-radius: 2px; }
.ab-timeline li { position: relative; width: 50%; padding: 0 44px 34px; }
.ab-timeline li.left { left: 0; text-align: right; }
.ab-timeline li.right { left: 50%; }
.ab-timeline li::before {
  content: ""; position: absolute; top: 6px; width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 5px solid var(--red); z-index: 1;
}
.ab-timeline li.left::before { right: -9px; }
.ab-timeline li.right::before { left: -9px; }
.ab-timeline .tcard { display: inline-block; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 22px; box-shadow: var(--shadow); max-width: 100%; }
.ab-timeline .year { display: block; font-family: Consolas, monospace; color: var(--red); font-weight: 800; font-size: 18px; margin-bottom: 4px; }
.ab-timeline .tcard span { font-size: 18px; color: var(--ink); font-weight: 500; }
@media (max-width: 760px) {
  .ab-timeline::before { left: 10px; }
  .ab-timeline li, .ab-timeline li.right { width: 100%; left: 0; text-align: left; padding: 0 0 26px 38px; }
  .ab-timeline li.left::before, .ab-timeline li.right::before { left: 2px; right: auto; }
}

/* ④ 비전·경영방침·조직도 */
.ab-vis .vq { font-size: clamp(19px, 2.2vw, 26px); color: var(--navy); font-weight: 700; margin-top: 16px; }
.ab-mission { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; margin: 44px 0 10px; }
.ab-mission .core {
  width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle at 32% 28%, #2c5288, var(--navy-deep));
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  box-shadow: 0 0 0 12px rgba(31,58,95,.10), 0 0 0 26px rgba(31,58,95,.05), var(--shadow-lg);
}
.ab-mission .core small { color: #ffb3a7; letter-spacing: .2em; font-size: 16px; text-transform: uppercase; }
.ab-mission .core b { font-size: 26px; font-weight: 800; }
.ab-mission .core span { font-size: 16px; color: #a9bcd6; }
.ab-mission .orbit {
  background: #fff; border: 2px solid var(--line); border-radius: 999px; padding: 16px 26px;
  font-weight: 700; font-size: 17px; color: var(--navy); box-shadow: var(--shadow); white-space: nowrap;
}
.ab-mission .orbit:hover { border-color: var(--red); color: var(--red); }
.ab-policy { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 40px 26px 34px; margin: 40px 0; position: relative; overflow: hidden; }
.ab-policy::before, .ab-policy::after {
  content: "❯❯❯"; position: absolute; top: 50%; transform: translateY(-50%); font-size: 60px; color: var(--bg2); letter-spacing: -8px;
}
.ab-policy::before { left: 3%; } .ab-policy::after { right: 3%; }
.ab-policy .pk { font-size: 16px; letter-spacing: .2em; font-weight: 800; color: var(--red); text-transform: uppercase; }
.ab-policy .pline { margin: 10px 0 16px; }
.ab-policy .ko { display: block; font-size: clamp(20px, 2.4vw, 28px); color: var(--ink); font-weight: 500; }
.ab-policy .en {
  display: block; font-size: clamp(34px, 4.4vw, 56px); font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(100deg, var(--navy), #2f6fb2 55%, var(--red)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ab-policy p { font-size: 18px; color: var(--body); line-height: 1.9; position: relative; z-index: 1; }
.ab-policy p b { color: var(--navy); }
/* 조직도 (HTML 트리 — 구사이트 subimg04 구조) */
.ab-org { margin-top: 46px; text-align: center; }
.ab-org .org-t { font-size: 21px; color: var(--ink); margin-bottom: 22px; }
.org-ceo { display: inline-block; background: var(--red); color: #fff; font-weight: 800; font-size: 18px; letter-spacing: .1em; padding: 12px 46px; border-radius: 999px; box-shadow: var(--shadow); }
.org-line { width: 3px; height: 26px; background: var(--line); margin: 0 auto; }
.org-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; border-top: 3px solid var(--line); padding-top: 22px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 960px) { .org-row { grid-template-columns: repeat(3, 1fr); border-top: 0; } }
@media (max-width: 560px) { .org-row { grid-template-columns: repeat(2, 1fr); } }
.org-col { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.org-col .dept { background: var(--navy); color: #fff; font-weight: 700; font-size: 16.5px; padding: 11px 8px; border-radius: 999px; }
.org-col .team { background: #fff; border: 1.5px solid var(--line); color: var(--body); font-size: 16.5px; padding: 9px 8px; border-radius: 999px; }
.org-col .team:hover { border-color: var(--navy); color: var(--navy); }

/* ⑤ 오시는 길: 풀맵 + 플로팅 카드 */
.ab-map { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.ab-map iframe { width: 100%; height: 520px; border: 0; display: block; }
.loc-card {
  position: absolute; left: 26px; top: 26px; width: min(420px, calc(100% - 52px));
  background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
  border-radius: 16px; box-shadow: var(--shadow-lg); padding: 24px 26px;
}
.loc-card h3 { color: var(--navy); font-size: 20px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--red); display: inline-block; }
.loc-card .row { display: flex; gap: 12px; padding: 8px 0; font-size: 18px; border-bottom: 1px dashed var(--bg2); }
.loc-card .row b { min-width: 74px; color: var(--red); font-size: 16px; }
.loc-card .row a { color: var(--navy); font-weight: 600; }
@media (max-width: 640px) {
  .ab-map iframe { height: 640px; }
  .loc-card { left: 12px; right: 12px; top: 12px; width: auto; }
}

/* utility */
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.center { text-align: center; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.vis { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ═══════════ MOBILE OPTIMIZATION (갤럭시·아이폰 등 전 기기) ═══════════
   데스크톱 여백 원칙(헤더10%/본문15%/푸터12%)은 유지하되,
   768px 이하에서는 가독성을 위해 고정 여백(16~20px)으로 전환 */
@media (max-width: 768px) {
  /* 여백: %여백은 모바일에서 본문을 과도하게 좁혀 고정값으로 전환 */
  .container { padding: 0 20px; }
  .rp-header .hwrap { padding: 0 16px; height: 64px; gap: 14px; }
  .rp-nav { inset: 64px 0 auto 0; max-height: calc(100vh - 64px); }
  [id] { scroll-margin-top: 78px; }
  .rp-logo img { height: 32px; }
  .rp-hero .hero-in { padding: 64px 20px 60px; }
  .rp-stats .stats-in { padding: 22px 20px; }
  .cta-band { padding: 54px 20px; }
  .rp-footer .fwrap { padding: 44px 20px 30px; gap: 26px; }
  .fbar-in { padding: 13px 20px; }
  .page-hero { padding: 46px 0 42px; }
  .page-hero.ph-img { padding: 56px 0 50px; }
  .sec { padding: 54px 0; }
  .sec-head { margin-bottom: 30px; }

  /* 히어로: 화면보다 길지 않게 (주소창 변화 대응 svh) + 텍스트 여백 */
  .rp-hero2 { height: min(800px, calc(100vh - 64px)); height: min(800px, calc(100svh - 64px)); }
  .h2-text { padding: 0 20px; transform: translateY(-34px); }
  .h2-text .hero-ctas { margin-top: 26px; }

  /* 버튼·터치 타겟 */
  .btn { padding: 13px 22px; }
  .hero-ctas .btn { width: auto; }

  /* 표: 좌우 스와이프 힌트 + 관성 스크롤 */
  .tbl-wrap { -webkit-overflow-scrolling: touch; }

  /* 홈 사진 스트립 */
  .strip { grid-auto-columns: 190px; }
  .strip img { width: 190px; height: 132px; }

  /* 공정 플로우 칩 */
  .flow { gap: 8px; }
  .flow .step { font-size: 16px; padding: 8px 14px; }

  /* 회사소개 */
  .ab-greet { padding: 70px 0 58px; }
  .ab-greet::after { font-size: 200px; top: -40px; right: -14px; }
  .ab-quote .q3 em { box-shadow: 6px 6px 0 rgba(192,57,43,.25); padding: 5px 16px 7px; }
  .ab-policy::before, .ab-policy::after { display: none; }
  .ab-mission .core { width: 200px; height: 200px; }
  .ab-mission { gap: 12px; }
  .ab-mission .orbit { padding: 12px 18px; font-size: 16px; }

  /* 오시는 길: 카드가 지도를 덮지 않게 위·아래 분리 */
  .ab-map { display: flex; flex-direction: column; border-radius: 14px; }
  .ab-map .loc-card { position: static; width: auto; order: 1; border-radius: 0; box-shadow: none; backdrop-filter: none; background: #fff; }
  .ab-map iframe { order: 2; height: 380px; }

  /* 검색창 */
  .prod-search .ps-icon { padding-left: 14px; }

  /* RFQ */
  .rfq-form { padding: 22px 18px; }
  .rfq-side { padding: 24px 20px; }
}

/* 초소형(폴드 커버·SE 등) */
@media (max-width: 380px) {
  .container, .rp-header .hwrap, .cta-band { padding-left: 14px; padding-right: 14px; }
  .rp-langs a { padding: 4px 6px; }
  .h2-text h1 { font-size: 28px; }
}

/* 가로 회전(landscape 낮은 화면): 히어로가 화면을 다 먹지 않게 */
@media (max-height: 480px) and (orientation: landscape) {
  .rp-hero2 { height: 460px; }
  .h2-text { transform: none; }
}
