/* ===== 자신만만렌터카 중고차구독 — style.css ===== */
/* Concept: The Verification Seal — 실차 검증 인장.
   웜 페이퍼 + 검증 그린(인증 도장 컬러), 라운드 코너 전면 제거, 여백과 헤어라인으로 위계를 만든다.
   EEAT: 사업자정보를 마스트헤드 바로 아래 콜로폰으로 상시 노출. */

:root {
  --ink: #12241D;
  --ink-soft: #24382C;
  --muted: #565F53;
  --quiet: #8B9186;
  --paper: #EFEAD8;
  --white: #FFFFFF;
  --line: #E2DDCB;
  --line-dark: rgba(255,255,255,.14);
  --navy: #12241D;
  --navy-2: #1B342A;

  /* 검증 그린 — 실차 검증 인장(스탬프) 컬러, 계열 사이트의 블루/골드/오렌지와 구별되는 독자 색상 */
  --trust: #2E6B4E;
  --trust-deep: #1E4A34;
  --trust-soft: #E4EFE6;
  --trust-ink: #FFFFFF;
  --trust-light: #6FC79A;

  --radius: 0;
  --text-on-light: #12241D;
  --text-on-dark: #F4F0E6;
  --dp-max: 1200px;
  --font-kr: "Wanted Sans Variable", "Wanted Sans", "Apple SD Gothic Neo", sans-serif;
  --font-en: "Outfit", "Wanted Sans Variable", "Wanted Sans", sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Roboto Mono", Menlo, Consolas, "Wanted Sans Variable", "Wanted Sans", "Apple SD Gothic Neo", monospace;
  --ease: cubic-bezier(.16,1,.3,1);

  /* 구 변수명 하위호환 별칭 (13개 서브페이지 공용 클래스가 참조) */
  --dp-ink: var(--ink);
  --dp-ink-soft: var(--ink-soft);
  --dp-ink-muted: var(--muted);
  --dp-ink-quiet: var(--quiet);
  --dp-page: var(--paper);
  --dp-white: var(--white);
  --dp-black: var(--navy);
  --dp-black-2: var(--navy-2);
  --dp-hairline: var(--line);
  --dp-hairline-dark: var(--line-dark);
  --dp-accent: var(--trust);
  --dp-accent-dark: var(--trust-deep);
  --dp-accent-soft: var(--trust-soft);
  --dp-accent-ink: var(--trust-ink);
  --dp-radius: 0;
  --dp-radius-input: 0;
  --dp-radius-sm: 0;
  --dp-radius-pill: 0;
  --font-display: var(--font-kr);
  --font-body: var(--font-kr);
  --ease-editorial: var(--ease);
  --dp-gold: var(--trust);
  --dp-gold-2: var(--trust-deep);
  --dp-line: var(--line);
  --dp-cream: var(--paper);
  --dp-body: var(--muted);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-kr);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}
body, p, h1, h2, h3, h4, h5, h6, li, td, th, a, span, div, button {
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--trust); outline-offset: 2px; }

.container { max-width: var(--dp-max); margin: 0 auto; padding: 0 28px; }
.section { padding: 116px 0; }
.section-sm { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); color: var(--text-on-dark); }

h1, h2, h3 { font-family: var(--font-kr); line-height: 1.24; margin: 0; color: var(--ink); font-weight: 800; letter-spacing: -.015em; }
.section-dark h1, .section-dark h2, .section-dark h3, .page-hero h1 { color: var(--white); }
h1 { font-size: clamp(2.7rem, 5.4vw, 3.9rem); font-weight: 800; letter-spacing: -.03em; }
.mark { color: var(--trust); }
.section-dark .mark, .page-hero .mark { color: var(--trust-light); }
h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); font-weight: 800; }
h3 { font-size: 1.08rem; font-weight: 700; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-en); font-size: 12px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--trust-deep); margin-bottom: 18px;
}
.kicker::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--trust); flex-shrink: 0; }
.section-dark .kicker, .page-hero .kicker { color: var(--trust-light); }
.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 16px; font-weight: 400; line-height: 1.75; }
.section-dark .section-head p { color: #BFC7B8; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 8px 22px; height: 44px; border-radius: 0;
  font-weight: 700; font-size: 14px; letter-spacing: -.005em; border: 1.5px solid transparent;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.btn-primary { background: var(--trust); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.section-dark .btn-outline, .page-hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,.45); }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--trust-deep); transform: translateY(-1px); }
  .btn-outline:hover { background: rgba(46,107,78,.08); border-color: var(--trust); transform: translateY(-1px); }
  .card:hover { border-color: var(--trust); }
  .card:hover .card-media img { transform: scale(1.04); }
  .nav-link:hover { color: var(--trust); }
  .u-link { position: relative; }
  .u-link::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px; background: currentColor; transition: right .35s var(--ease); }
  .u-link:hover::after { right: 0; }
}

/* ---------- Masthead: 유틸리티 바 + 메인 헤더 ---------- */
.util-bar { background: var(--navy); color: var(--quiet); font-family: var(--font-mono); font-size: 11px; letter-spacing: .3px; border-bottom: 1px solid var(--line-dark); }
.util-bar .container { display: flex; align-items: center; justify-content: space-between; height: 34px; gap: 16px; overflow: hidden; }
.util-bar .util-facts { display: flex; gap: 22px; white-space: nowrap; overflow: hidden; }
.util-bar .util-facts span strong { color: #D7DCC8; font-weight: 600; }
.util-bar .util-cta { color: var(--white); font-weight: 600; flex-shrink: 0; }
@media (max-width: 700px) { .util-bar .util-facts span:nth-child(n+3) { display: none; } }
@media (max-width: 480px) { .util-bar .util-facts span:first-child { display: none; } }

.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--line); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 28px; max-width: var(--dp-max); margin: 0 auto; height: 68px; }
.hdr-logo { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.hdr-logo img { width: 26px; height: 26px; flex-shrink: 0; filter: grayscale(1) contrast(1.15); }
.hdr-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.hdr-logo-text strong { font-size: 16px; font-weight: 800; letter-spacing: -.01em; }
.hdr-logo-text small { font-family: var(--font-kr); font-size: 9.5px; font-weight: 600; color: var(--trust); letter-spacing: .4px; text-transform: uppercase; margin-top: 2px; }
.hdr-nav { display: flex; gap: 30px; }
.hdr-nav a { font-size: 14px; font-weight: 500; color: var(--ink-soft); letter-spacing: -.005em; transition: color .25s var(--ease); }
.hdr-cta { display: flex; align-items: center; gap: 16px; }
.hdr-phone { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .2px; color: var(--quiet); }
.hdr-btn { background: var(--trust); color: #fff; padding: 10px 20px; border-radius: 0; font-weight: 700; font-size: 13.5px; transition: background-color .25s var(--ease); }
@media (hover: hover) and (pointer: fine) { .hdr-btn:hover { background: var(--trust-deep); } }
#hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
#hamburger span { width: 20px; height: 2px; background: var(--ink); }
#mob-nav {
  display: none; position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); height: 100vh;
  background: var(--white); border-left: 1px solid var(--line); z-index: 200; padding: 24px;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
#mob-nav.open { display: block; transform: translateX(0); }
#mob-nav a { display: block; padding: 14px 4px; font-weight: 600; font-size: 15px; color: var(--ink); border-bottom: 1px solid var(--line); }
#mob-nav-close { background: none; border: none; font-size: 20px; margin-bottom: 12px; color: var(--ink); }

/* CTA 행 유틸 — 서브페이지 FAQ 하단·컴포넌트 공용 */
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Editorial Hero: 풀블리드 사진 + 좌측 텍스트 컬럼 (스크림 없음) ---------- */
.ed-hero { background: var(--white); border-bottom: 1px solid var(--line); }
.ed-hero-meta { display: flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .4px; color: var(--quiet); padding: 20px 0; border-bottom: 1px solid var(--line); }
.ed-hero-meta .dot { width: 5px; height: 5px; background: var(--trust); border-radius: 50%; flex-shrink: 0; }
.ed-hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 620px; }
.ed-hero-head { padding: 56px 48px 56px max(28px, calc((100vw - var(--dp-max)) / 2 + 28px)); display: flex; flex-direction: column; justify-content: center; }
.ed-hero-head h1 { font-size: clamp(3rem, 6.6vw, 5.2rem); line-height: 1.08; }
.ed-hero-tagline { margin-top: 22px; font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 800; line-height: 1.4; color: var(--ink); letter-spacing: -.01em; }
.ed-hero-head .lede { margin-top: 20px; font-size: 17px; font-weight: 400; color: var(--muted); line-height: 1.8; max-width: 480px; }
.ed-hero-cta { display: flex; align-items: center; gap: 24px; margin-top: 34px; flex-wrap: wrap; }
.ed-hero-cta .u-link { font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; }

.ed-hero-figure { position: relative; margin: 0; overflow: hidden; background: var(--paper); }
.ed-hero-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ed-hero-figure figcaption {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  background: var(--ink); color: var(--white);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .3px;
  padding: 8px 14px; display: flex; gap: 10px;
}

/* 네트워크 인장 — 시그니처 요소. 보험업력 10년·전국 네트워크 포지셔닝을 담은 인증 도장 */
.ed-hero-figure::after,
.page-hero::after {
  content: "NETWORK\A 전국 네트워크 확인";
  position: absolute; z-index: 2;
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-kr); font-size: 9.5px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; line-height: 1.6;
  white-space: pre-line; pointer-events: none; transform: rotate(-9deg);
}
.ed-hero-figure::after {
  top: 20px; right: 20px; background: var(--white); border: 1.5px solid var(--trust); color: var(--trust);
  box-shadow: 0 10px 24px -10px rgba(18,36,29,.45);
}
.page-hero::after { top: 44px; right: 44px; border: 1.5px solid var(--trust-light); color: var(--trust-light); }
@media (max-width: 860px) { .ed-hero-figure::after, .page-hero::after { display: none; } }

@media (max-width: 900px) {
  .ed-hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .ed-hero-head { padding: 40px 28px; }
  .ed-hero-figure { aspect-ratio: 4/3; }
}

/* ---------- EEAT 콜로폰 스트립 ---------- */
.colophon { background: var(--navy); color: #C9CFC0; padding: 20px 0; border-bottom: 1px solid var(--line-dark); }
.colophon-row { display: flex; flex-wrap: wrap; gap: 10px 34px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .2px; }
.colophon-row strong { color: #fff; font-weight: 700; }
.colophon-row .accent { color: var(--trust-light); }

/* Breadcrumb */
.breadcrumb { font-family: var(--font-mono); font-size: 11.5px; color: var(--quiet); margin-bottom: 20px; display: flex; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--trust); }
.section-dark .breadcrumb, .section-dark .breadcrumb a { color: var(--quiet); }

/* Sub page hero — 서브페이지 다크 마스트헤드 (서브페이지 13종 공용) */
.page-hero { position: relative; overflow: hidden; background: var(--navy); color: var(--white); padding: 96px 0 56px; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 42px 42px; mask-image: linear-gradient(180deg, transparent, #000 30%, #000 75%, transparent);
}
.page-hero-bgword { display: none; }
.page-hero-ring { display: none; }
.page-hero .container, .page-hero .spec-strip { position: relative; z-index: 1; }
.page-hero .hero-sub { color: #BFC7B8; margin-top: 16px; font-size: 16px; font-weight: 400; line-height: 1.8; max-width: 620px; }
.spec-strip { display: flex; flex-wrap: wrap; gap: 0; margin-top: 42px; border-top: 1px solid var(--line-dark); padding-top: 24px; max-width: var(--dp-max); margin-left: auto; margin-right: auto; padding-left: 28px; padding-right: 28px; }
.spec-item { flex: 1 1 140px; }
.spec-label { display: block; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--quiet); margin-bottom: 8px; }
.spec-val { font-weight: 600; font-size: 14.5px; color: var(--white); }

/* Grids */
.dp-g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.dp-g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.dp-g5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.dp-stat3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; text-align: center; align-items: center; }
@media(max-width: 768px) { .dp-g2 { grid-template-columns: 1fr; gap: 32px; } .dp-g3, .dp-g5 { grid-template-columns: 1fr; } }
@media(max-width: 600px) { .dp-stat3 { grid-template-columns: 1fr; gap: 16px; } }

/* Cards — 직각, 헤어라인, 검증 라벨 */
.card { background: var(--white); border: none; border-radius: 0; overflow: hidden; transition: background-color .25s var(--ease); }
.dp-g3 .card, .dp-g5 .card { border: none; }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--navy-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card-media::after {
  content: '실차 검증'; position: absolute; top: 0; left: 0; z-index: 2;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 1px; color: var(--ink);
  background: #fff; padding: 5px 10px;
}
.card-body { padding: 26px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.65; }
@media (hover: hover) and (pointer: fine) { .card:hover { background: var(--trust-soft); } }
.card-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.badge { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .3px; padding: 6px 13px; border-radius: 0; background: transparent; color: var(--ink); border: 1px solid var(--quiet); transition: background-color .25s var(--ease), border-color .25s var(--ease); }
@media (hover: hover) and (pointer: fine) { .badge:hover { background: var(--trust-soft); border-color: var(--trust); } }
@media(max-width: 768px) { .card-badges { flex-direction: column; align-items: flex-start; gap: 6px; } }

/* Stat / spec counter */
.stat-num { font-family: var(--font-en); font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 700; letter-spacing: -.01em; color: var(--trust-deep); }
.section-dark .stat-num { color: var(--trust-light); }
.stat-label { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .8px; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.section-dark .stat-label { color: #9CA394; }

/* Process / timeline — 넘버 마지널리아 */
.proc-row { display: flex; align-items: flex-start; gap: 0; }
.proc-step { flex: 1; text-align: center; padding: 0 16px; position: relative; }
.proc-num {
  width: 40px; height: 40px; border-radius: 0; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-en); font-weight: 700; font-size: 15px;
  margin: 0 auto 20px; position: relative; z-index: 2;
}
.proc-step:not(:first-child)::before {
  content: ''; position: absolute; top: 20px; left: calc(-50% + 20px); width: calc(100% - 40px);
  height: 1px; background: var(--line); z-index: 1;
}
.proc-step h3 { font-size: 15px; margin-bottom: 8px; }
.proc-step p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
@media(max-width: 768px) {
  .proc-row { flex-direction: column; gap: 10px; padding: 24px 0; }
  .proc-step::before { display: none; }
  .proc-step { display: flex; align-items: center; gap: 16px; text-align: left; padding: 12px 0; }
  .proc-step .proc-num { margin: 0; flex-shrink: 0; }
}

/* Inputs */
.text-input { background: var(--white); color: var(--ink); border: 1.5px solid var(--ink); border-radius: 0; padding: 10px 12px; height: 42px; font-family: var(--font-kr); font-size: 15px; width: 100%; transition: border-color .25s var(--ease); }
.text-input::placeholder { color: var(--quiet); }
.text-input:focus { outline: none; border-color: var(--trust); }

/* Table wrap */
.table-wrap { overflow-x: auto; border: 1px solid var(--ink); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; color: var(--ink); }
thead th { background: var(--paper); font-family: var(--font-mono); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .6px; }

/* FAQ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 22px 4px; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 15.5px; color: var(--ink); transition: color .25s var(--ease); }
.faq-q .plus { transition: transform .35s var(--ease); font-size: 17px; color: var(--trust); font-family: var(--font-en); }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); font-size: 14.5px; color: var(--muted); line-height: 1.75; }
.faq-a p { padding: 0 4px 22px; margin: 0; }
@media (hover: hover) and (pointer: fine) { .faq-q:hover { color: var(--trust-deep); } }

/* Checklist (guide pages) */
.dp-checklist { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.dp-check-item { display: flex; gap: 16px; align-items: flex-start; background: var(--white); padding: 20px 22px; }
.dp-check-item .dot { width: 20px; height: 20px; border-radius: 0; background: var(--navy); color: #fff; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-en); font-size: 11px; font-weight: 700; }

/* Reveal animation — 절제된 페이드+라이즈 */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.stagger.in > * { transition-delay: calc(var(--i,0) * .08s); }

/* 에디토리얼 스플릿 유틸 (서브페이지 공용) */
.dp-split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.dp-split.dp-split-rev { grid-template-columns: 1fr 1.15fr; }
.dp-split.dp-split-rev > :first-child { order: 2; }
@media(max-width: 900px) { .dp-split, .dp-split.dp-split-rev { grid-template-columns: 1fr; gap: 28px; } .dp-split.dp-split-rev > :first-child { order: 0; } }
.dp-split .card-media { aspect-ratio: 4/3; border: 1px solid var(--line); overflow: hidden; }

.stat-band { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); }
.stat-band > div { padding: 38px 24px; text-align: center; border-left: 1px solid var(--line); }
.stat-band > div:first-child { border-left: 0; }
@media(max-width: 768px) { .stat-band { grid-template-columns: 1fr; } .stat-band > div { border-left: 0; border-top: 1px solid var(--line); } .stat-band > div:first-child { border-top: 0; } }

/* Footer */
.site-footer { background: var(--navy); color: #9CA394; padding: 72px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; }
@media(max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-grid h4 { color: var(--white); font-family: var(--font-en); font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; margin-bottom: 20px; }
.footer-grid li { margin-bottom: 11px; font-size: 13.5px; }
.footer-grid a { position: relative; color: #9CA394; transition: color .25s var(--ease); }
@media (hover: hover) and (pointer: fine) { .footer-grid a:hover { color: var(--trust-light); } }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line-dark); font-family: var(--font-mono); font-size: 11px; letter-spacing: .2px; color: #656C5E; }
.footer-disclaimer { margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line-dark); }
.footer-disclaimer p { font-size: 11.5px; line-height: 1.7; color: #656C5E; margin-bottom: 6px; }

/* Mobile bar */
#mob-bar { display: none; }
@media(max-width: 768px) {
  body { padding-bottom: 72px; }
  #mob-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; background: var(--white); border-top: 1px solid var(--ink); padding: 10px 16px; gap: 10px; }
  #mob-bar a { flex: 1; text-align: center; padding: 12px; border-radius: 0; font-weight: 700; font-size: 14px; }
  #mob-bar .m-call { background: var(--trust); color: #fff; }
  #float-cta { display: none; }
  .hdr-nav, .hdr-phone, .hdr-btn { display: none; }
  #hamburger { display: flex; }
}
@media(min-width: 769px) {
  #float-cta { position: fixed; right: 28px; bottom: 28px; z-index: 150; background: var(--trust); color: #fff; padding: 15px 28px; border-radius: 0; font-weight: 700; font-size: 13.5px; box-shadow: 0 16px 34px -12px rgba(18,36,29,.35); transition: transform .25s var(--ease), background-color .25s var(--ease); }
  #float-cta:hover { transform: translateY(-2px); background: var(--trust-deep); }
}

@media(max-width: 768px) { .section { padding: 72px 0; } .section-sm { padding: 52px 0; } .section-head { margin-bottom: 40px; } }
@media(max-width: 480px) { .section { padding: 52px 0; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ===== 홈페이지 전용 에디토리얼 모듈 ===== */

.kicker-num { display: block; font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--quiet); margin-bottom: 14px; }
.section-dark .kicker-num { color: #656C5E; }

/* 텍스트 티커 */
@keyframes dp-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); padding: 18px 0; }
.marquee-track { display: inline-flex; width: max-content; gap: 0; white-space: nowrap; animation: dp-marquee 42s linear infinite; will-change: transform; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-track span.mq-item { font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; letter-spacing: .4px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 20px; padding: 0 24px; border-left: 1px solid var(--line); }
.marquee-track .mq-dot { display: none; }

/* 이미지 마퀴 */
@keyframes dp-marquee-img { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.img-marquee { overflow: hidden; }
.img-marquee-track { display: inline-flex; width: max-content; gap: 1px; animation: dp-marquee-img 60s linear infinite; will-change: transform; }
.img-marquee:hover .img-marquee-track { animation-play-state: paused; }
.img-marquee-track figure { position: relative; margin: 0; flex-shrink: 0; width: 260px; height: 174px; overflow: hidden; background: var(--navy-2); }
.img-marquee-track img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.img-marquee-track figure:hover img { transform: scale(1.05); }

/* 커버리지 인덱스 */
.kw-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; max-width: 960px; margin: 0 auto; border-top: 1px solid var(--line-dark); }
.kw-float {
  flex: 1 1 auto; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-kr); font-weight: 700; letter-spacing: -.005em; color: #D7DCC8;
  font-size: clamp(15px, 1.6vw, 18px); line-height: 1; padding: 20px 22px;
  border-bottom: 1px solid var(--line-dark); border-right: 1px solid var(--line-dark);
  transition: color .25s var(--ease), background-color .25s var(--ease);
}
.kw-float:last-child { border-right: 0; }
@media (hover: hover) and (pointer: fine) { .kw-float:hover { color: var(--trust-light); background: rgba(46,107,78,.12); } }
@media (max-width: 767px) { .kw-float { flex: 1 1 50%; font-size: 16px; padding: 16px 14px; } }

/* 비교표 */
.compare-grid { border-top: 1px solid var(--ink); }
.compare-row { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; gap: 18px; padding: 26px 6px; border-bottom: 1px solid var(--line); align-items: start; }
.compare-row.head { font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--quiet); padding-bottom: 14px; }
.compare-row .col-title { font-weight: 700; font-size: 15px; }
.compare-row .col-plain { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.compare-row .col-ours { font-size: 13.5px; color: var(--ink); font-weight: 600; line-height: 1.6; }
.compare-row .col-edge { font-family: var(--font-mono); font-size: 12.5px; color: var(--trust-deep); font-weight: 700; line-height: 1.5; }
.compare-label { display: none; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--quiet); margin-bottom: 5px; }
@media (max-width: 860px) {
  .compare-row.head { display: none; }
  .compare-row { grid-template-columns: 1fr; gap: 4px; border: 1px solid var(--line); margin-bottom: 14px; padding: 20px; }
  .compare-label { display: block; }
  .compare-row .col-title { margin-bottom: 6px; }
}

/* 신뢰/권위 밴드 */
.authority-band { background: var(--navy); color: var(--white); padding: 46px 32px; border: 1px solid var(--line-dark); }
.authority-band blockquote { margin: 0; font-size: clamp(1.2rem, 2.1vw, 1.6rem); font-weight: 800; line-height: 1.6; }
.authority-band .authority-points { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 30px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .2px; color: #9CA394; }
.authority-band .authority-points strong { color: var(--trust-light); font-weight: 700; }
@media (max-width: 768px) { .authority-band { padding: 32px 22px; } }

.dp-split .card-media img { transition: transform .8s var(--ease); }
.dp-split .card-media:hover img { transform: scale(1.04); }

/* ---------- 신규: 에디토리얼 전용 모듈 (홈페이지) ---------- */

/* 브랜드 매니페스토 — 풀쿼트 + 러닝텍스트 2단 */
.manifesto { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.manifesto-quote { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; line-height: 1.5; letter-spacing: -.01em; position: sticky; top: 100px; }
.manifesto-body p { font-size: 16px; color: var(--muted); line-height: 1.85; margin: 0 0 20px; }
.manifesto-body p:last-child { margin-bottom: 0; }
@media (max-width: 900px) { .manifesto { grid-template-columns: 1fr; gap: 28px; } .manifesto-quote { position: static; } }

/* 검증 프로세스 — 넘버 마지널리아 러닝텍스트 */
.ver-list { border-top: 1px solid var(--line); }
.ver-item { display: grid; grid-template-columns: 90px 1fr; gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--line); }
.ver-item .num { font-family: var(--font-en); font-size: 13px; font-weight: 700; color: var(--trust); letter-spacing: .5px; padding-top: 4px; }
.ver-item h3 { font-size: 1.15rem; margin-bottom: 10px; }
.ver-item p { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 620px; margin: 0; }
@media (max-width: 640px) { .ver-item { grid-template-columns: 1fr; gap: 8px; } }

/* 에디토리얼 인덱스 (카테고리 목차) */
#toc { padding: 64px 0; }
#toc .section-head { margin-bottom: 26px; }
.toc-index { border-top: 1px solid var(--ink); }
.toc-row { display: grid; grid-template-columns: 44px 1fr auto auto; align-items: center; gap: 20px; padding: 14px 4px; border-bottom: 1px solid var(--line); transition: background-color .25s var(--ease); }
.toc-row .toc-num { font-family: var(--font-en); font-size: 13px; color: var(--quiet); }
.toc-row .toc-label strong { display: block; font-size: 15.5px; font-weight: 700; color: var(--ink); }
.toc-row .toc-label span { display: block; margin-top: 2px; font-size: 12.5px; color: var(--muted); }
.toc-row .toc-cat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .8px; text-transform: uppercase; color: var(--quiet); }
.toc-row .toc-arrow { font-family: var(--font-en); font-size: 18px; color: var(--quiet); transition: transform .3s var(--ease), color .3s var(--ease); }
@media (hover: hover) and (pointer: fine) { .toc-row:hover { background: var(--trust-soft); } .toc-row:hover .toc-arrow { color: var(--trust); transform: translateX(4px); } }
@media (max-width: 640px) { .toc-row { grid-template-columns: 28px 1fr auto; gap: 12px; padding: 12px 4px; } .toc-row .toc-cat { display: none; } #toc { padding: 44px 0; } }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .img-marquee-track { animation: none; }
}
