/* =====================================================
   자신만만렌터카 — 수도권 장기렌트 | style.css
   ===================================================== */

/* === CSS 변수 === */
:root {
  --bg:           #FFFFFF;
  --bg-alt:       #F0F9FF;
  --dark:         #0A0E17;
  --green:        #06B6D4;
  --green-dark:   #0891B2;
  --green-mid:    #22D3EE;
  --green-pale:   #CFFAFE;
  --amber:        #F59E0B;
  --border:       #BAE6FD;
  --text:         #0A0E17;
  --text-body:    #334155;
  --text-muted:   #64748B;
  --white:        #FFFFFF;
  --radius:       0px;
  --shadow:       0 2px 16px rgba(6,182,212,.08);
  --shadow-md:    0 6px 32px rgba(6,182,212,.16);
  --transition:   all .28s cubic-bezier(.4,0,.2,1);
  --nav-h:        72px;
}

/* === 리셋 === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === 타이포그래피 === */
h1, h2, h3, h4 { font-family: 'Noto Sans KR', sans-serif; color: var(--text); font-weight: 700; line-height: 1.3; }
h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
p  { font-size: 16px; line-height: 1.75; color: var(--text-body); }

/* === 레이아웃 === */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.bg-alt     { background: var(--bg-alt); }
.bg-dark    { background: var(--dark); }

/* === 섹션 헤더 공통 === */
.sec-header {
  margin-bottom: 56px;
}
.sec-header.centered { text-align: center; }
.sec-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.sec-header h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--text); }
.sec-header p  { font-size: 16px; color: var(--text-muted); margin-top: 10px; max-width: 580px; }
.sec-header.centered p { margin: 10px auto 0; }

/* === 버튼 === */
.btn-blue {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff;
  font-size: 15px; font-weight: 700; padding: 14px 32px;
  border: 2px solid var(--green); transition: var(--transition);
  white-space: nowrap;
}
.btn-blue:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--green);
  font-size: 15px; font-weight: 700; padding: 13px 31px;
  border: 2px solid var(--green); transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

.btn-ghost-white {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #fff;
  font-size: 15px; font-weight: 700; padding: 13px 31px;
  border: 2px solid rgba(255,255,255,.5); transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* === 헤더 === */
#site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 999; height: var(--nav-h);
  background: rgba(10,14,23,.0);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); max-width: 1240px; margin: 0 auto; padding: 0 40px;
}
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-img  { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.logo-wrap { display: flex; flex-direction: column; gap: 1px; }
.logo-en   { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green-mid); line-height: 1.2; }
.logo-text { font-size: 1.05rem; font-weight: 700; color: #fff; white-space: nowrap; transition: var(--transition); line-height: 1.2; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green); color: #fff !important;
  padding: 9px 20px; font-size: 13px; font-weight: 700;
  transition: var(--transition); white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--green-dark) !important; }
.nav-cta svg { flex-shrink: 0; }

#site-header.scrolled {
  background: rgba(10,14,23,.97);
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

.hamburger {
  display: none; flex-direction: column; gap: 6px; padding: 8px; background: none; border: none; cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: rgba(255,255,255,.9); transition: var(--transition); }

/* 오버레이 메뉴 */
.overlay-menu {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--dark);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity .3s cubic-bezier(.4,0,.2,1);
}
.overlay-menu.open { opacity: 1; pointer-events: all; }
.overlay-head {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.overlay-close {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: color .2s ease;
}
.overlay-close:hover { color: #fff; }
.overlay-body {
  display: flex; flex: 1; overflow-y: auto;
}
.overlay-nav {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 48px 64px;
}
.overlay-nav a {
  font-size: clamp(1.5rem, 4vw, 2.8rem); font-weight: 700;
  color: rgba(255,255,255,.6); line-height: 1.25;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s ease, padding-left .2s ease;
}
.overlay-nav a:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.overlay-nav a:hover { color: #fff; padding-left: 12px; }
.overlay-cta-link { color: var(--green-mid) !important; }
.overlay-cta-link:hover { color: var(--amber) !important; }
.overlay-info {
  width: 300px; flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,.07);
  padding: 48px 36px; display: flex; flex-direction: column; justify-content: center;
}
.overlay-info-label { font-size: 11px; font-weight: 700; letter-spacing: .2em; color: rgba(255,255,255,.3); margin-bottom: 20px; }
.overlay-info-cta {
  display: inline-block; font-size: 14px; font-weight: 700;
  color: var(--green-mid); margin-bottom: 20px; transition: color .2s ease;
}
.overlay-info-cta:hover { color: var(--amber); }
.overlay-info-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.75; margin-bottom: 16px; }
.overlay-info-addr { font-size: 12px; color: rgba(255,255,255,.3); font-style: normal; line-height: 1.8; margin-bottom: 10px; }
.overlay-info-biz  { font-size: 11px; color: rgba(255,255,255,.2); }

/* === 버튼 lg 사이즈 === */
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* === 1. HERO (Centered Editorial) === */
.hero-center {
  min-height: 100svh;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  margin-top: calc(var(--nav-h) * -1);
  padding: calc(var(--nav-h) + 80px) 40px 80px;
}
.hero-center::before {
  content: '';
  position: absolute; top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(6,182,212,.18) 0%, transparent 60%);
  pointer-events: none; z-index: 2;
}

/* — 배경 사진 슬라이드 (3장 켄번즈 크로스페이드) — */
.hero-bg-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation-duration: 24s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.hero-bg-slide--1 {
  background-image: url('/assets/img/hero-01.webp');
  animation-name: heroKb1, heroFade;
  animation-delay: 0s, 0s;
}
.hero-bg-slide--2 {
  background-image: url('/assets/img/hero-02.webp');
  animation-name: heroKb2, heroFade;
  animation-delay: 8s, 8s;
}
.hero-bg-slide--3 {
  background-image: url('/assets/img/hero-03.webp');
  animation-name: heroKb3, heroFade;
  animation-delay: 16s, 16s;
}

@keyframes heroKb1 {
  0%   { transform: scale(1.12) translate(1%, 1%); }
  100% { transform: scale(1.0)  translate(-1%, -1%); }
}
@keyframes heroKb2 {
  0%   { transform: scale(1.0)  translate(-1%, 1%); }
  100% { transform: scale(1.12) translate(1%, -1%); }
}
@keyframes heroKb3 {
  0%   { transform: scale(1.08) translate(0%, -1%); }
  100% { transform: scale(1.0)  translate(0%, 1%); }
}

/* 크로스페이드: 8초 주기, 3장 = 24s 루프 */
@keyframes heroFade {
  0%    { opacity: 0; }
  4.2%  { opacity: 1; }
  66.7% { opacity: 1; }
  79.2% { opacity: 0; }
  100%  { opacity: 0; }
}

/* 다크 오버레이 — 텍스트 가독성 확보 */
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,14,23,.72) 0%,
    rgba(10,14,23,.55) 50%,
    rgba(10,14,23,.80) 100%
  );
}

.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black, transparent);
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black, transparent);
}
.hero-center-inner {
  position: relative; z-index: 3;
  text-align: center; max-width: 860px; margin: 0 auto;
}
.hero-center-overline {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: 44px;
}
.hco-line { display: block; width: 48px; height: 1px; background: rgba(255,255,255,.18); flex-shrink: 0; }
.hco-text {
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--green-mid); white-space: nowrap;
}
.hero-center-h1 {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 700; line-height: 1.0;
  color: #fff; margin-bottom: 28px;
  letter-spacing: -.02em;
}
.hero-h1-hl {
  display: block; color: var(--green-mid);
}
.hero-center-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.5);
  line-height: 1.8; margin-bottom: 48px;
}
.hero-center-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-center-trust {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.38);
}
.trust-dot { margin: 0 12px; color: rgba(255,255,255,.16); }

/* === 2. MARQUEE === */
.marquee-wrap {
  background: var(--dark);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 24px;
  padding: 0 24px;
  font-size: 13px; font-weight: 500; letter-spacing: .05em;
  color: rgba(255,255,255,.5);
}
.marquee-item .m-sep { color: var(--green-mid); font-size: 10px; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === 3. STATS BAR === */
.stats-bar { background: var(--bg); border-bottom: 1px solid var(--border); }
.stats-bar.section { padding: 48px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide: var(--border);
}
.stat-item {
  text-align: center; padding: 20px 16px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block; font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 8px;
}
.stat-unit { font-size: .6em; font-weight: 700; color: var(--green); }
.stat-label { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.stat-desc  { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* === 3-B. WHY 자신만만 === */
.why-jashin-section { background: var(--bg); }

/* 에디토리얼 헤더 */
.wj-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px; margin-bottom: 48px;
}
.wj-header-left h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -.02em;
  color: var(--text); margin-top: 14px;
}
.wj-header-right {
  max-width: 360px; font-size: 15px; color: var(--text-muted);
  line-height: 1.8; flex-shrink: 0;
}

/* 핵심 카피 */
.wj-headline {
  margin-bottom: 48px;
}
.wj-headline p {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700; line-height: 1.4; letter-spacing: -.01em;
  color: var(--text); max-width: 720px;
}
.wj-hl { color: var(--green-mid); }

/* 비교 테이블 */
.wj-table-wrap {
  border: 1px solid var(--border);
  margin-bottom: 48px; overflow: hidden;
}
.wj-table-head {
  display: grid; grid-template-columns: 1.2fr 1.8fr 2fr 1fr;
  background: var(--dark);
  padding: 14px 0;
}
.wjt-cell {
  padding: 0 24px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; line-height: 1.5;
}
.wj-table-head .wjt-cell { color: rgba(255,255,255,.45); }
.wj-table-head .wjt-good { color: var(--green-mid); }
.wj-table-head .wjt-edge { color: var(--amber); }

.wj-table-row {
  display: grid; grid-template-columns: 1.2fr 1.8fr 2fr 1fr;
  border-top: 1px solid var(--border);
  transition: background .2s;
}
.wj-table-row:hover { background: var(--bg-alt); }
.wj-table-row .wjt-cell {
  padding: 22px 24px; font-size: 14px; font-weight: 400;
  line-height: 1.65; letter-spacing: 0; text-transform: none;
  color: var(--text-body);
}
.wjt-label {
  display: flex; flex-direction: column; justify-content: center;
  gap: 4px; border-right: 1px solid var(--border);
}
.wjt-num  { font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--text-muted); }
.wjt-title { font-size: 14px; font-weight: 700; color: var(--text); }
.wjt-bad  { color: var(--text-muted) !important; border-right: 1px solid var(--border); }
.wjt-good { color: var(--text-body) !important; font-weight: 500 !important; border-right: 1px solid var(--border); }
.wjt-edge {
  display: flex; align-items: center;
  font-size: 13px !important; font-weight: 700 !important;
  color: var(--green-dark) !important;
  background: #f0feff;
  white-space: pre-line;
}


@media (max-width: 900px) {
  .wj-table-head { display: none; }
  .wj-table-row  { grid-template-columns: 1fr; }
  .wjt-bad, .wjt-good, .wjt-label { border-right: none; border-bottom: 1px solid var(--border); }
  .wjt-label { flex-direction: row; gap: 8px; align-items: center; background: var(--bg-alt); }
  .wjt-edge  { border-top: none; padding: 14px 24px; }
  .wjt-bad::before  { content: '단일 직영 렌터카사'; display: block; font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--text-muted); margin-bottom: 6px; }
  .wjt-good::before { content: '자신만만'; display: block; font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--green-dark); margin-bottom: 6px; }
}
@media (max-width: 600px) {
  .wj-header { flex-direction: column; align-items: flex-start; }
  .wj-header-right { max-width: 100%; }
  .wj-bottom { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .wj-bottom .btn-blue { width: 100%; justify-content: center; }
}

/* === 4. SERVICES NUMBERED GRID === */
.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.svc-card {
  display: flex; flex-direction: column;
  padding: 36px 32px;
  background: var(--bg);
  transition: var(--transition);
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--green);
  transition: height .3s ease;
}
.svc-card:hover { background: var(--bg-alt); }
.svc-card:hover::after { height: 100%; }
.svc-card:hover .svc-arrow { transform: translateX(5px); }
.svc-num {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  color: var(--green); margin-bottom: 20px; display: block;
}
.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.svc-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--green);
  margin-top: 20px;
}
.svc-arrow { font-size: 13px; transition: transform .25s ease; }
.svc-card-cta {
  background: var(--dark); color: #fff;
}
.svc-card-cta:hover { background: #122850; }
.svc-card-cta::after { background: var(--amber); }
.svc-card-cta .svc-num { color: var(--amber); }
.svc-card-cta h3 { color: #fff; }
.svc-card-cta p  { color: rgba(255,255,255,.6); }
.svc-card-cta .svc-link { color: var(--amber); }

/* === 5. CAR SCROLL === */
.car-scroll-outer {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.car-scroll-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: car-track-scroll 36s linear infinite;
  will-change: transform;
}
.car-scroll-outer:hover .car-scroll-track { animation-play-state: paused; }
@keyframes car-track-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.car-scroll-card {
  flex: 0 0 280px; background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden; transition: var(--transition);
  text-decoration: none; color: inherit;
}
.car-scroll-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.car-scroll-card .c-thumb {
  aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt);
}
.car-scroll-card .c-thumb img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease;
}
.car-scroll-card:hover .c-thumb img { transform: scale(1.04); }
.car-scroll-card .c-body { padding: 18px 20px; }
.car-scroll-card .c-cat  { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: .08em; margin-bottom: 6px; }
.car-scroll-card .c-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.car-scroll-card .c-type { font-size: 13px; color: var(--text-muted); }
.car-scroll-card .c-more {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700; color: var(--green); margin-top: 12px;
}

.car-cta-full {
  display: flex; justify-content: center; margin-top: 36px;
}

/* === 6. PROCESS === */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border);
}
.proc-card {
  background: var(--bg); padding: 40px 28px;
  position: relative;
}
.proc-num {
  font-size: 3.5rem; font-weight: 700; color: var(--green-pale);
  line-height: 1; margin-bottom: 20px; display: block;
  transition: color .3s ease;
}
.proc-card:hover .proc-num { color: var(--green); }
.proc-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.proc-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* === 7. COMPARISON TABLE === */
.cmp-wrap { overflow-x: auto; }
.cmp-table {
  width: 100%; border-collapse: collapse;
  font-size: 15px; min-width: 560px;
}
.cmp-table th, .cmp-table td {
  padding: 15px 20px; border-bottom: 1px solid var(--border);
  text-align: center;
}
.cmp-table thead th {
  font-size: 13px; font-weight: 700; letter-spacing: .06em;
  background: var(--bg); color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.cmp-table th:first-child, .cmp-table td:first-child {
  text-align: left; font-weight: 600; color: var(--text); background: var(--bg);
}
.cmp-table th.hl { background: var(--green) !important; color: #fff !important; }
.cmp-table td.hl { background: rgba(6,182,212,.06); color: var(--green); font-weight: 700; }
.cmp-table tbody tr:hover td { background: var(--bg-alt); }
.cmp-table tbody tr:hover td.hl { background: rgba(6,182,212,.1); }

/* === 8. FAQ === */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-row { border-bottom: 1px solid var(--border); }
.faq-row:first-child { border-top: 1px solid var(--border); }
.faq-q-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 15px; font-weight: 700; color: var(--text);
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Noto Sans KR', sans-serif; gap: 16px;
  transition: color .2s ease;
}
.faq-q-btn:hover { color: var(--green); }
.faq-icon-wrap {
  flex-shrink: 0; width: 26px; height: 26px;
  border: 2px solid var(--green); display: flex; align-items: center;
  justify-content: center; transition: var(--transition);
}
.faq-row.open .faq-icon-wrap { background: var(--green); }
.faq-icon-sym { font-size: 16px; font-weight: 700; color: var(--green); line-height: 1; transition: var(--transition); }
.faq-row.open .faq-icon-sym { color: #fff; transform: rotate(45deg); display: block; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.4,0,.2,1); }
.faq-row.open .faq-body { max-height: 300px; }
.faq-body-inner { padding: 0 0 20px; font-size: 15px; color: var(--text-body); line-height: 1.8; }

/* === 9. REGIONS === */
.regions-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); }
.region-row {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 28px; background: var(--bg);
  text-decoration: none; color: inherit;
  transition: var(--transition);
}
.region-row:hover { background: var(--dark); }
.region-row:hover .r-num,
.region-row:hover .r-name { color: #fff; }
.region-row:hover .r-tag  { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
.region-row:hover .r-arrow { color: var(--amber); }
.r-num  { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: .1em; min-width: 28px; }
.r-name { font-size: 15px; font-weight: 700; color: var(--text); flex: 1; }
.r-tag  { font-size: 12px; color: var(--text-muted); background: var(--bg-alt); padding: 3px 10px; white-space: nowrap; transition: var(--transition); }
.r-arrow { font-size: 16px; color: var(--text-muted); transition: var(--transition); }

/* === 10. CTA BAND === */
.cta-band {
  background: var(--dark); padding: 88px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-band p  { color: rgba(255,255,255,.65); font-size: 16px; margin-bottom: 36px; position: relative; z-index: 1; }
.cta-btns    { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* === FOOTER === */
#site-footer { background: var(--dark); }

.footer-cta-top {
  padding: 96px 0 72px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-cta-en {
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 20px;
}
.footer-cta-heading {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: #fff;
  line-height: 1.2; margin-bottom: 20px;
}
.footer-cta-heading .hl-green { color: var(--green-mid); }
.footer-cta-desc { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 36px; }
.btn-footer-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--dark);
  font-size: 15px; font-weight: 700; padding: 14px 32px;
  transition: var(--transition); white-space: nowrap;
}
.btn-footer-cta:hover { background: var(--green); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(6,182,212,.4); }
.btn-footer-cta svg { flex-shrink: 0; }

.footer-main { padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand-en   { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 4px; }
.footer-brand-name { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.footer-brand-tag  { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.footer-brand p    { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.75; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s ease; }
.footer-col ul li a:hover { color: var(--amber); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0;
  gap: 16px; flex-wrap: wrap;
}
.footer-biz-info { display: flex; flex-wrap: wrap; gap: 4px 16px; }
.footer-biz-info span { font-size: 12px; color: rgba(255,255,255,.28); line-height: 1.8; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.18); white-space: nowrap; }

.footer-legal { padding: 20px 0 40px; border-top: 1px solid rgba(255,255,255,.05); }
.footer-legal p {
  font-size: 11px; color: rgba(255,255,255,.22);
  line-height: 1.75; word-break: keep-all; margin-bottom: 4px;
}

/* === FLOATING 버튼 === */
.floating-wrap {
  position: fixed; bottom: 28px; right: 24px;
  z-index: 900; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.float-btn {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer; font-family: inherit;
}
.float-primary {
  background: var(--green); color: #fff;
  box-shadow: 0 4px 20px rgba(6,182,212,.5);
}
.float-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(6,182,212,.55); }
.float-top {
  background: rgba(10,14,23,.88); color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.12);
}
.float-top:hover { background: var(--dark); border-color: var(--green); color: #fff; }
.float-top[hidden] { opacity: 0; pointer-events: none; transform: translateY(8px); }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* === 페이지 HERO (서비스/지역) === */
.page-hero {
  position: relative; background: var(--dark);
  background-size: cover; background-position: center 40%;
  padding: calc(var(--nav-h) + 60px) 0 0;
  overflow: hidden;
}
/* 차량 이미지 위 다크 오버레이 */
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10,14,23,.78) 0%,
    rgba(10,14,23,.60) 45%,
    rgba(10,14,23,.82) 100%
  );
}
.page-hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 100%; z-index: 1;
  background: linear-gradient(135deg, rgba(6,182,212,.12) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; padding-bottom: 56px; }
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s ease; }
.page-hero .breadcrumb a:hover { color: var(--amber); }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero .hero-sub { font-size: 16px; color: rgba(255,255,255,.65); max-width: 540px; }

/* 서비스 스펙 스트립 */
.spec-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 48px;
}
.spec-item {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.spec-item:last-child { border-right: none; }
.spec-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--amber); margin-bottom: 6px; display: block; text-transform: uppercase; }
.spec-val   { font-size: 1.1rem; font-weight: 700; color: #fff; }

/* 시나리오 카드 */
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.scenario-card { background: var(--bg); padding: 32px 28px; position: relative; overflow: hidden; }
.scenario-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--border); transition: background .3s ease; z-index: 2; }
.scenario-card:hover::after { background: var(--green); }
.s-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-size: cover; background-position: center 35%;
  opacity: 0.09; transition: opacity .3s ease;
}
.scenario-card:hover .s-bg { opacity: 0.15; }
.s-num  { font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--green); margin-bottom: 16px; display: block; position: relative; z-index: 1; }
.s-tag  { display: inline-block; background: var(--bg-alt); color: var(--green); font-size: 12px; font-weight: 700; padding: 4px 12px; margin-bottom: 14px; position: relative; z-index: 1; }
.scenario-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; position: relative; z-index: 1; }
.scenario-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; position: relative; z-index: 1; }

/* 조건표 */
.cond-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cond-table th, .cond-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); text-align: left; }
.cond-table th { background: var(--dark); color: rgba(255,255,255,.8); font-size: 12px; font-weight: 700; letter-spacing: .06em; }
.cond-table tr:hover td { background: var(--bg-alt); }

/* 연관 링크 */
.related-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.related-link-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; background: var(--bg);
  text-decoration: none; color: inherit; transition: var(--transition);
  font-size: 14px; font-weight: 700; color: var(--text);
}
.related-link-card:hover { background: var(--dark); color: #fff; }
.related-link-card:hover .rl-arrow { color: var(--amber); }
.rl-arrow { font-size: 16px; color: var(--text-muted); transition: var(--transition); }

/* 기존 FAQ 클래스 호환 (서비스 페이지) */
.faq-list  { max-width: 760px; margin: 0 auto; }
.faq-item  { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 15px; font-weight: 700; color: var(--text);
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Noto Sans KR', sans-serif; gap: 16px;
}
.faq-btn:hover { color: var(--green); }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px;
  border: 2px solid var(--green); display: flex; align-items: center;
  justify-content: center; font-size: 16px; font-weight: 700; color: var(--green);
  transition: var(--transition); line-height: 1;
}
.faq-item.open .faq-icon { background: var(--green); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 0 20px; font-size: 15px; color: var(--text-body); line-height: 1.8; }

/* 구 FAQ (html.php) 호환 */
.faq-section .faq-list { /* same as above */ }

/* === 섹션 타이틀 (하위 호환) === */
.section-title { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--text); margin-bottom: 12px; }
.section-sub   { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hl-cyan { color: var(--green-mid); }

/* === WHY LTR 비교 섹션 === */
.why-ltr-compare {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: stretch; margin-bottom: 40px;
  border: 1px solid var(--border);
}
.wlc-col { padding: 36px 32px; }
.wlc-lcc { background: var(--bg); border-right: 1px solid var(--border); }
.wlc-ltr { background: var(--bg-alt); }
.wlc-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 22px; display: inline-block;
}
.wlc-label--bad  { background: rgba(239,68,68,.07); color: #DC2626; border: 1px solid rgba(239,68,68,.2); }
.wlc-label--good { background: rgba(6,182,212,.07);  color: var(--green-dark); border: 1px solid var(--border); }
.wlc-list { display: flex; flex-direction: column; gap: 11px; }
.wlc-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.6; color: var(--text-body);
}
.wlc-item.bad  .wlc-icon { color: #DC2626; font-weight: 700; flex-shrink: 0; }
.wlc-item.good .wlc-icon { color: var(--green-dark); font-weight: 700; flex-shrink: 0; }
.wlc-vs {
  display: flex; align-items: center; justify-content: center;
  padding: 0 18px; font-size: 11px; font-weight: 700; letter-spacing: .14em;
  color: rgba(255,255,255,.35); background: var(--dark);
  writing-mode: vertical-rl;
}
.why-ltr-note {
  background: var(--dark); padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.why-ltr-note p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.75; flex: 1; min-width: 240px; margin: 0; }

/* === 사이트맵 페이지 === */
.page-hero-sm {
  background: var(--dark); position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 56px) 0 48px;
}
.page-hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(6,182,212,.12) 0%, transparent 60%);
}
.page-hero-content {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  position: relative; z-index: 1;
}
.page-hero-title { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px; }
.page-hero-sub   { color: rgba(255,255,255,.5); font-size: 14px; }
.page-hero-sub strong { color: var(--green-mid); }

.sitemap-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.filter-btn {
  padding: 7px 18px; font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); color: var(--text-muted);
  background: var(--bg); transition: var(--transition); cursor: pointer;
  font-family: inherit;
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active { background: var(--green); border-color: var(--green); color: #fff; }

.sitemap-search-wrap { margin-bottom: 32px; }
.sitemap-search {
  width: 100%; max-width: 400px; padding: 11px 16px;
  border: 1px solid var(--border); font-size: 14px; font-family: inherit;
  color: var(--text); background: var(--bg); outline: none; transition: border-color .2s;
}
.sitemap-search:focus { border-color: var(--green); }

.sitemap-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--border);
}
.sitemap-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px 20px 18px; background: var(--bg);
  text-decoration: none; transition: var(--transition);
}
.sitemap-card[hidden] { display: none !important; }
.sitemap-card:hover { background: var(--bg-alt); }
.sitemap-icon { color: var(--green); flex-shrink: 0; }
.sitemap-card-title { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }
.sitemap-card-cat {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: var(--text-muted); text-transform: uppercase; margin-top: 2px;
}
.sitemap-no-result { text-align: center; padding: 48px 0; color: var(--text-muted); font-size: 15px; }

/* === 가이드 페이지 === */
.guide-hero { background: var(--dark); min-height: auto; padding-bottom: 48px; }
.guide-hero .page-hero-inner { padding-top: calc(var(--nav-h) + 48px); }
.guide-hero-meta {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.guide-category-badge {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(6,182,212,.15); color: var(--green-mid);
  border: 1px solid rgba(6,182,212,.3); padding: 5px 12px;
}
.guide-updated { font-size: 12px; color: rgba(255,255,255,.4); }
.guide-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 16px; }
.guide-hero .hero-sub { color: rgba(255,255,255,.65); margin-bottom: 36px; }
.guide-hero-toc-wrap { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; }
.guide-toc-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .14em; color: rgba(255,255,255,.35); text-transform: uppercase; margin-bottom: 14px; }
.guide-toc-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.toc-pill {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 7px 16px; transition: var(--transition);
}
.toc-pill:hover { background: rgba(6,182,212,.15); border-color: rgba(6,182,212,.4); color: var(--green-mid); }

/* 가이드 본문 텍스트 */
.guide-body-text { font-size: 16px; line-height: 1.85; color: var(--text-body); margin-bottom: 20px; }
.guide-body-text strong { color: var(--text); }

/* 정의 섹션 2-col */
.guide-def-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.guide-key-points { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.gkp-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; background: var(--bg-alt);
  border-left: 3px solid var(--green);
}
.gkp-dot { width: 8px; height: 8px; background: var(--green); flex-shrink: 0; margin-top: 6px; }
.gkp-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.gkp-item p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* 사이드 인포박스 */
.guide-info-box {
  background: var(--dark); padding: 28px 24px; position: sticky; top: calc(var(--nav-h) + 20px);
}
.gib-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 20px;
}
.gib-list { display: flex; flex-direction: column; gap: 0; }
.gib-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  gap: 12px;
}
.gib-list li:last-child { border-bottom: none; }
.gib-key { font-size: 13px; color: rgba(255,255,255,.45); flex-shrink: 0; }
.gib-val { font-size: 13px; font-weight: 700; color: #fff; text-align: right; }

/* 비교표 래퍼 */
.guide-cmp-wrap { overflow-x: auto; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cmp-table th, .cmp-table td {
  padding: 13px 18px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.cmp-table th { background: var(--dark); color: #fff; font-weight: 700; font-size: 13px; }
.cmp-table td:first-child { color: var(--text-muted); font-weight: 600; }
.cmp-col-hl { background: rgba(6,182,212,.06); }
.cmp-table th.cmp-col-hl { background: var(--green); color: #fff; }
.cmp-table tbody tr:hover { background: var(--bg-alt); }
.guide-table-note { font-size: 13px; color: var(--text-muted); margin-top: 14px; padding-left: 14px; border-left: 3px solid var(--border); line-height: 1.65; }

/* 비용 구성 카드 */
.guide-cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); margin-bottom: 24px; }
.guide-cost-card { background: var(--bg); padding: 28px 24px; }
.guide-cost-core { border-top: 3px solid var(--green); }
.guide-cost-extra { border-top: 3px solid var(--amber); }
.gcc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.gcc-header h3 { font-size: 16px; font-weight: 700; color: var(--text); }
.gcc-badge { font-size: 11px; font-weight: 700; letter-spacing: .08em; padding: 3px 10px; }
.gcc-badge--included { background: rgba(6,182,212,.1); color: var(--green-dark); border: 1px solid rgba(6,182,212,.25); }
.gcc-badge--varies   { background: rgba(245,158,11,.08); color: #B45309; border: 1px solid rgba(245,158,11,.25); }
.gcc-badge--extra    { background: rgba(239,68,68,.06); color: #DC2626; border: 1px solid rgba(239,68,68,.2); }
.guide-cost-card p { font-size: 14px; color: var(--text-body); line-height: 1.75; }
.guide-cost-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--bg-alt); padding: 16px 20px;
  border-left: 3px solid var(--green);
}
.guide-cost-note svg { flex-shrink: 0; color: var(--green); margin-top: 2px; }
.guide-cost-note p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* 심사 조건 */
.guide-criteria-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); margin-bottom: 20px; }
.guide-criteria-col { background: var(--bg); }
.gcol-header { padding: 24px 28px; }
.gcol-personal  { background: var(--dark); }
.gcol-corporate { background: rgba(10,14,23,.85); }
.gcol-type { display: block; font-size: 11px; font-weight: 700; letter-spacing: .18em; color: var(--green-mid); text-transform: uppercase; margin-bottom: 6px; }
.gcol-header h3 { color: #fff; font-size: 17px; }
.gcol-body { padding: 24px 28px; }
.gcol-section { margin-bottom: 24px; }
.gcol-section h4 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 12px; }
.gcol-list { display: flex; flex-direction: column; gap: 8px; }
.gcol-list li {
  font-size: 14px; color: var(--text-body); padding-left: 16px;
  position: relative; line-height: 1.6;
}
.gcol-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; background: var(--green); border-radius: 50%;
}
.gcol-note { background: var(--bg-alt); padding: 12px 16px; font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.guide-crit-disclaimer { font-size: 13px; color: var(--text-muted); text-align: center; padding-top: 8px; }

/* 차종 가이드 */
.guide-car-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); }
.guide-car-card { background: var(--bg); padding: 28px 24px; }
.guide-car-card--hl { background: var(--bg-alt); border-top: 3px solid var(--green); }
.gcc-type-badge {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-dark); background: rgba(6,182,212,.08); border: 1px solid var(--border);
  padding: 4px 10px; display: inline-block; margin-bottom: 12px;
}
.gcc-badge--suv { background: rgba(6,182,212,.15); border-color: rgba(6,182,212,.3); }
.guide-car-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.gcc-models { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.gcc-pros { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.gcc-pros li { font-size: 14px; color: var(--text-body); padding-left: 14px; position: relative; line-height: 1.5; }
.gcc-pros li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
.gcc-ideal { background: var(--dark); padding: 14px 16px; }
.gcc-ideal span { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--green-mid); display: block; margin-bottom: 5px; }
.gcc-ideal p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin: 0; }

/* 체크리스트 */
.guide-checklist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); }
.guide-checklist-col { background: var(--bg); padding: 32px 28px; }
.gcl-col-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--green); }
.gcl-list { display: flex; flex-direction: column; gap: 10px; }
.gcl-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-body); line-height: 1.6; }
.gcl-check {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px;
  border: 2px solid var(--border); background: var(--bg-alt);
  position: relative;
}
.gcl-check::after {
  content: ''; position: absolute; inset: 3px;
  background: var(--green); opacity: 0.4;
}

/* 가이드 FAQ */
.guide-faq-list { max-width: 800px; margin: 0 auto; }

/* =================================================
   가이드 v2 (gd-* 네임스페이스)
   ================================================= */
.gd-rp { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9999; background: rgba(255,255,255,.06); pointer-events: none; }
.gd-rp-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--green), var(--green-mid)); transition: width .12s linear; }

.g-reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1); }
.g-reveal.is-in { opacity: 1; transform: none; }
.g-reveal[data-delay="1"] { transition-delay: .08s; }
.g-reveal[data-delay="2"] { transition-delay: .18s; }
.g-reveal[data-delay="3"] { transition-delay: .28s; }
.g-reveal[data-delay="4"] { transition-delay: .38s; }
.g-reveal[data-delay="5"] { transition-delay: .46s; }
.g-reveal[data-delay="6"] { transition-delay: .54s; }

.gd-sec { padding: 96px 0; }
.gd-sec--dark { background: var(--dark); }
.gd-sec--alt  { background: var(--bg-alt); }
.gd-sec-head  { margin-bottom: 56px; }
.gd-sec-num   { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.gsn-n { font-size: 13px; font-weight: 900; letter-spacing: .04em; color: var(--green); }
.gsn-l { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--green); background: rgba(6,182,212,.1); border: 1px solid rgba(6,182,212,.25); padding: 3px 10px; }
.gd-sec-h2 { font-size: clamp(1.55rem, 3.2vw, 2.3rem); color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.gd-sec--dark .gd-sec-h2 { color: #fff; }
.gd-sec-lead { font-size: 16px; color: var(--text-muted); line-height: 1.75; max-width: 600px; }
.gd-sec--dark .gd-sec-lead { color: rgba(255,255,255,.5); }

/* HERO */
.gd-hero { background: var(--dark); padding: calc(var(--nav-h) + 56px) 0 64px; position: relative; overflow: hidden; }
.gd-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(6,182,212,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(6,182,212,.04) 1px, transparent 1px); background-size: 64px 64px; }
.gd-hero-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.gd-cat-badge { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: rgba(6,182,212,.15); color: var(--green-mid); border: 1px solid rgba(6,182,212,.3); padding: 5px 12px; }
.gd-reading-time, .gd-updated { font-size: 12px; color: rgba(255,255,255,.35); }
.gd-reading-time::before, .gd-updated::before { content: '\00B7\0020'; }
.gd-hero-h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 22px; position: relative; z-index: 1; }
.gd-hero-em { font-style: normal; color: var(--green-mid); }
.gd-hero-lead { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 44px; max-width: 620px; position: relative; z-index: 1; }
.gd-toc { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; position: relative; z-index: 1; }
.gd-toc-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.gd-toc-links { display: flex; flex-wrap: wrap; gap: 8px; }
.gd-toc-link { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: 7px 16px; transition: var(--transition); }
.gd-toc-link:hover { background: rgba(6,182,212,.15); border-color: rgba(6,182,212,.4); color: var(--green-mid); }

/* TL;DR */
.gd-tldr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); }
.gd-tldr-card { background: var(--bg); padding: 36px 32px; position: relative; overflow: hidden; transition: background var(--transition); }
.gd-tldr-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--green); transition: height .4s ease; }
.gd-tldr-card:hover::before { height: 100%; }
.gd-tldr-card:hover { background: var(--bg-alt); }
.gtc-num { display: block; font-size: 11px; font-weight: 900; letter-spacing: .12em; color: var(--green); margin-bottom: 14px; }
.gtc-title { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.gtc-body  { font-size: 15px; color: var(--text-body); line-height: 1.8; margin: 0; }

/* COMPARE TABLE */
.gd-tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.gd-cmp-tbl { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 14px; }
.gd-cmp-tbl th, .gd-cmp-tbl td { padding: 14px 18px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); }
.gd-cmp-tbl thead th { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.5); background: rgba(255,255,255,.04); }
.gd-cmp-tbl tbody th { font-weight: 600; color: rgba(255,255,255,.45); }
.gd-cmp-tbl tbody td { color: rgba(255,255,255,.75); }
.gd-cmp-tbl tbody tr:hover td, .gd-cmp-tbl tbody tr:hover th { background: rgba(255,255,255,.03); }
.gct-hl { background: rgba(6,182,212,.12) !important; border-left: 2px solid var(--green); border-right: 2px solid var(--green); }
.gd-cmp-tbl thead .gct-hl { color: var(--green-mid) !important; border-top: 2px solid var(--green); }
.gct-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .1em; background: var(--green); color: #fff; padding: 2px 8px; margin-left: 6px; vertical-align: middle; }
.gd-tbl-note { font-size: 13px; color: rgba(255,255,255,.3); margin-top: 16px; padding-left: 12px; border-left: 2px solid rgba(255,255,255,.1); line-height: 1.65; }

/* COST TABLE */
.gd-cost-tbl { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 14px; }
.gd-cost-tbl th, .gd-cost-tbl td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.gd-cost-tbl thead th { background: var(--dark); color: #fff; font-size: 13px; font-weight: 700; }
.gd-cost-tbl tbody th { font-weight: 700; color: var(--text); }
.gd-cost-tbl tbody tr:hover { background: var(--bg-alt); }
.gd-badge { font-size: 11px; font-weight: 700; letter-spacing: .06em; padding: 4px 10px; white-space: nowrap; }
.gd-badge--must  { background: rgba(6,182,212,.1);   color: var(--green-dark); border: 1px solid rgba(6,182,212,.25); }
.gd-badge--inc   { background: rgba(6,182,212,.07);  color: var(--green-dark); border: 1px solid rgba(6,182,212,.2); }
.gd-badge--var   { background: rgba(245,158,11,.08); color: #92400E;           border: 1px solid rgba(245,158,11,.25); }
.gd-badge--extra { background: rgba(239,68,68,.06);  color: #DC2626;           border: 1px solid rgba(239,68,68,.2); }
.gd-info-note { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; background: var(--bg-alt); padding: 16px 20px; border-left: 3px solid var(--green); }
.gd-info-note svg { flex-shrink: 0; color: var(--green); margin-top: 2px; }
.gd-info-note p  { font-size: 14px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* CRITERIA */
.gd-crit-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); margin-bottom: 16px; }
.gd-crit-col  { background: var(--bg); }
.gdc-head { padding: 28px 32px; }
.gdc-head--personal  { background: var(--dark); }
.gdc-head--corporate { background: rgba(10,14,23,.85); }
.gdc-type { display: block; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 6px; }
.gdc-head h3 { color: #fff; font-size: 16px; }
.gdc-body { padding: 24px 32px; }
.gdc-block { margin-bottom: 24px; }
.gdc-h4 { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 12px; }
.gdc-list { display: flex; flex-direction: column; gap: 8px; }
.gdc-list li { font-size: 14px; color: var(--text-body); padding-left: 16px; position: relative; line-height: 1.6; }
.gdc-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
.gdc-note { font-size: 13px; color: var(--text-muted); background: var(--bg-alt); padding: 12px 16px; line-height: 1.65; }
.gd-crit-disc { font-size: 13px; color: var(--text-muted); text-align: center; padding-top: 8px; }

/* PROCESS TIMELINE */
.gd-timeline { list-style: none; padding: 0; margin: 0 0 48px; max-width: 720px; }
.gd-tl-item { display: flex; align-items: stretch; }
.gtl-marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 64px; }
.gtl-num { width: 44px; height: 44px; flex-shrink: 0; border: 2px solid var(--green); color: var(--green-mid); font-size: 13px; font-weight: 900; display: flex; align-items: center; justify-content: center; background: rgba(6,182,212,.08); }
.gtl-line { flex: 1; width: 2px; background: rgba(6,182,212,.2); margin: 6px 0; }
.gtl-body { padding: 4px 0 40px 8px; flex: 1; }
.gtl-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.gtl-desc  { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.75; margin: 0; }
.gd-proc-cta { text-align: center; }

/* CAR TYPE */
.gd-car-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); }
.gd-car-card { background: var(--bg); padding: 28px 24px; border-top: 3px solid transparent; transition: border-color var(--transition), background var(--transition); }
.gd-car-card:hover { background: var(--bg-alt); border-top-color: var(--green); }
.gd-car-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-dark); background: rgba(6,182,212,.08); border: 1px solid var(--border); padding: 3px 10px; margin-bottom: 14px; }
.gd-car-title  { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.gd-car-models { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.gd-car-pros   { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.gd-car-pros li { font-size: 13px; color: var(--text-body); padding-left: 14px; position: relative; line-height: 1.5; }
.gd-car-pros li::before { content: ''; position: absolute; left: 0; top: 7px; width: 4px; height: 4px; background: var(--green); border-radius: 50%; }
.gd-car-for { background: var(--dark); padding: 12px 14px; }
.gd-car-for span { display: block; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 4px; }
.gd-car-for p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; margin: 0; }

/* CHECKLIST */
.gd-cl-grid   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(255,255,255,.07); }
.gd-cl-group  { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); padding: 32px 28px; }
.gd-cl-title  { font-size: 14px; font-weight: 700; color: var(--green-mid); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(6,182,212,.2); }
.gd-cl-list   { display: flex; flex-direction: column; gap: 12px; }
.gd-cl-item   { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6; }
.gd-cl-box    { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; border: 1.5px solid rgba(6,182,212,.4); background: rgba(6,182,212,.06); }

/* FAQ details/summary */
.gd-faq-wrap { max-width: 800px; margin: 0 auto; }
.gd-faq-item { border-bottom: 1px solid var(--border); }
.gd-faq-item:first-child { border-top: 1px solid var(--border); }
.gd-faq-summary { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 22px 0; cursor: pointer; list-style: none; transition: color var(--transition); }
.gd-faq-summary::-webkit-details-marker { display: none; }
.gd-faq-summary::marker { display: none; }
.gd-faq-summary:hover .gd-faq-q { color: var(--green-dark); }
.gd-faq-q { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.5; flex: 1; }
.gd-faq-icon { flex-shrink: 0; width: 28px; height: 28px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: transform .25s ease, background var(--transition), border-color var(--transition); margin-top: 2px; }
details[open] > .gd-faq-summary .gd-faq-icon { transform: rotate(180deg); background: var(--green); border-color: var(--green); color: #fff; }
.gd-faq-body { padding: 0 0 24px; }
.gd-faq-body p { font-size: 15px; color: var(--text-body); line-height: 1.8; margin: 0; }

/* === GALLERY 페이지 === */
.gallery-count {
  font-size: 14px; color: var(--text-muted); margin-bottom: 32px;
}
.gallery-count strong { color: var(--green-dark); }

.cars-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
}

.car-card { background: var(--bg); overflow: hidden; }
.car-card-link {
  display: block; text-decoration: none; color: inherit;
  transition: var(--transition);
}
.car-card-link:hover { background: var(--bg-alt); }
.car-img-wrap {
  aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt);
}
.car-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.car-card-link:hover .car-img { transform: scale(1.04); }
.car-info { padding: 20px 24px 24px; }
.car-category {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: var(--green); text-transform: uppercase; margin-bottom: 8px;
}
.car-title {
  font-size: 16px; font-weight: 700; color: var(--text);
  margin-bottom: 6px; line-height: 1.35;
}
.car-type { font-size: 13px; color: var(--text-muted); margin-bottom: 2px; }
.car-customer { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.car-more {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700; color: var(--green);
}

.no-cars { text-align: center; padding: 80px 20px; }
.no-cars p { color: var(--text-muted); margin-bottom: 8px; }

.cta-section { background: var(--dark); }
.cta-title { color: #fff; text-align: center; margin-bottom: 12px; }
.cta-sub { color: rgba(255,255,255,.55); text-align: center; margin-bottom: 32px; font-size: 15px; }
.btn-cta {
  display: block; width: fit-content; margin: 0 auto;
  background: var(--green); color: #fff;
  font-size: 15px; font-weight: 700; padding: 14px 36px;
  border: 2px solid var(--green); transition: var(--transition);
}
.btn-cta:hover { background: var(--green-dark); border-color: var(--green-dark); }

@media (max-width: 900px) {
  .cars-grid-full { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cars-grid-full { grid-template-columns: 1fr; gap: 1px; }
}

/* === CAR DETAIL 페이지 === */
.cd-hero { padding-bottom: 0; }
.cd-cat-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(6,182,212,.15); color: var(--green-mid);
  border: 1px solid rgba(6,182,212,.3); padding: 5px 12px;
  margin-bottom: 16px;
}
.cd-hero h1 { color: #fff; margin-bottom: 8px; }
.cd-hero .hero-sub { margin-bottom: 0; }

/* ── 2. 썸네일 + 개요 ── */
.cd-overview-grid {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 64px; align-items: center;
}
.cd-thumb-wrap {
  background: var(--bg-alt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0;
}
.cd-thumb-img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.cd-overview-body { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.cd-overview-h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--text); }
.cd-overview-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  border: 1px solid var(--border); padding: 18px 20px; background: var(--bg-alt);
  width: 100%;
}
.cd-overview-list li { font-size: 14px; color: var(--text-body); padding-left: 14px; position: relative; }
.cd-overview-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; background: var(--green); border-radius: 50%;
}
.cd-overview-p  { font-size: 15px; color: var(--text-body); line-height: 1.85; margin: 0; }
.cd-cta-btn     { display: inline-flex; align-items: center; gap: 8px; }

/* ── 3. 핵심 특징 ── */
.cd-highlights {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
}
.cd-highlight-card {
  background: var(--bg); padding: 36px 28px;
  border-top: 3px solid transparent; transition: border-color .25s ease;
}
.cd-highlight-card:hover { border-top-color: var(--green); }
.cd-hl-num {
  display: block; font-size: 2.5rem; font-weight: 700;
  color: var(--green-pale); line-height: 1; margin-bottom: 18px;
  transition: color .25s ease;
}
.cd-highlight-card:hover .cd-hl-num { color: var(--green); }
.cd-highlight-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.cd-highlight-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ── 4. 가격표 ── */
.cd-price-wrap { overflow-x: auto; }
.cd-price-table {
  width: 100%; border-collapse: collapse; font-size: 15px; min-width: 520px;
}
.cd-price-table th {
  padding: 14px 20px; background: var(--dark); color: rgba(255,255,255,.8);
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-align: left;
}
.cd-price-table td {
  padding: 16px 20px; border-bottom: 1px solid var(--border); text-align: left;
}
.cd-price-table tbody tr:hover td { background: var(--bg-alt); }
.cd-price-table td:first-child { font-weight: 700; color: var(--text); }
.cd-price-hl td { background: rgba(6,182,212,.06); }
.cd-price-hl td:first-child { border-left: 3px solid var(--green); }
.cd-price-val { font-size: 17px; font-weight: 700; color: var(--green); }
.cd-price-note {
  font-size: 13px; color: var(--text-muted); margin-top: 14px;
  padding-left: 14px; border-left: 3px solid var(--border); line-height: 1.65;
}

/* ── 5. 추천 고객 ── */
.cd-audience {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
}
.cd-audience-card {
  background: var(--bg); padding: 32px 28px;
  position: relative; overflow: hidden;
}
.cd-audience-card::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--border); transition: background .25s ease;
}
.cd-audience-card:hover::after { background: var(--green); }
.cd-aud-case {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .14em;
  color: var(--green); text-transform: uppercase; margin-bottom: 14px;
}
.cd-audience-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.cd-audience-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ── 8. 연관 차종 ── */
.cd-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
}
.cd-related-card {
  display: flex; flex-direction: column;
  background: var(--bg); text-decoration: none; color: inherit;
  transition: var(--transition);
}
.cd-related-card:hover { background: var(--bg-alt); }
.cd-related-thumb {
  aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt);
}
.cd-related-thumb img {
  width: 100%; height: 100%; object-fit: contain; padding: 10px;
  transition: transform .35s ease;
}
.cd-related-card:hover .cd-related-thumb img { transform: scale(1.04); }
.cd-related-body {
  padding: 18px 20px; display: flex; flex-direction: column; gap: 5px;
}
.cd-related-cat  { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: .08em; }
.cd-related-title{ font-size: 15px; font-weight: 700; color: var(--text); }
.cd-related-type { font-size: 13px; color: var(--text-muted); }
.cd-related-more {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700; color: var(--green); margin-top: 8px;
}

/* ── 이전/다음 차량 네비 ── */
.car-nav { border-top: 1px solid var(--border); padding: 0; }
.car-nav-inner { display: flex; align-items: stretch; min-height: 72px; }
.car-nav-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 0; font-size: 14px; font-weight: 700; color: var(--text);
  text-decoration: none; transition: color .2s ease; flex: 1;
}
.car-nav-btn:hover { color: var(--green); }
.car-nav-prev { justify-content: flex-start; }
.car-nav-next { justify-content: flex-end; }
.car-nav-disabled { flex: 1; }
.car-nav-all {
  display: flex; align-items: center; justify-content: center;
  padding: 20px 32px; font-size: 13px; font-weight: 700;
  color: var(--text-muted); text-decoration: none;
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  transition: color .2s ease; white-space: nowrap;
}
.car-nav-all:hover { color: var(--green); }

@media (max-width: 1024px) {
  .cd-overview-grid { grid-template-columns: 360px 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .cd-overview-grid { grid-template-columns: 1fr; gap: 32px; }
  .cd-thumb-wrap { max-width: 480px; }
  .cd-highlights  { grid-template-columns: 1fr; }
  .cd-audience    { grid-template-columns: 1fr; }
  .cd-related-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .car-nav-btn span { display: none; }
  .car-nav-btn  { flex: 0 0 auto; }
  .car-nav-inner{ justify-content: space-between; }
  .cd-related-grid { grid-template-columns: 1fr; }
}

/* === 반응형 768px === */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  .header-inner { padding: 0 20px; }

  .hero-center { padding: calc(var(--nav-h) + 56px) 24px 56px; min-height: 90svh; }
  .hero-center-h1 { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .hero-center-overline { gap: 12px; }
  .hco-line { width: 28px; }
  .hero-center-btns { flex-direction: column; align-items: center; }
  .hero-center-btns .btn-lg { width: 100%; max-width: 320px; }
  .hero-center-trust { flex-wrap: wrap; justify-content: center; gap: 6px 8px; }
  .trust-dot { display: none; }

  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item     { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }

  .services-grid-6  { grid-template-columns: 1fr; }
  .process-grid     { grid-template-columns: repeat(2, 1fr); }
  .regions-list     { grid-template-columns: 1fr; }
  .scenario-grid    { grid-template-columns: 1fr; }
  .related-row      { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .why-ltr-compare { grid-template-columns: 1fr; }
  .wlc-vs { writing-mode: horizontal-tb; padding: 10px 0; }
  .wlc-lcc { border-right: none; border-bottom: 1px solid var(--border); }

  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }

  .page-hero-content { padding: 0 20px; }

  /* 가이드 v1 반응형 */
  .guide-def-grid { grid-template-columns: 1fr; }
  .guide-info-box { position: static; }
  .guide-cost-grid { grid-template-columns: 1fr; }
  .guide-criteria-wrap { grid-template-columns: 1fr; }
  .guide-car-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-checklist-grid { grid-template-columns: 1fr; }
  .guide-toc-pills { gap: 6px; }
  .toc-pill { font-size: 12px; padding: 6px 12px; }

  /* 가이드 v2 반응형 */
  .gd-sec { padding: 64px 0; }
  .gd-tldr-grid { grid-template-columns: 1fr; }
  .gd-crit-wrap { grid-template-columns: 1fr; }
  .gd-car-grid  { grid-template-columns: repeat(2, 1fr); }
  .gd-cl-grid   { grid-template-columns: 1fr; }
  .gd-toc-links { gap: 6px; }
  .gd-toc-link  { font-size: 12px; padding: 6px 12px; }
  .gd-hero-h1   { font-size: clamp(2rem, 7vw, 2.8rem); }
  .gd-timeline  { max-width: 100%; }

  .spec-strip { grid-template-columns: repeat(2, 1fr); }
  .spec-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .spec-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }

  .cta-band { padding: 64px 0; }
  .cta-btns { flex-direction: column; align-items: center; }

  .floating-wrap { bottom: 20px; right: 16px; }

  .overlay-head  { padding: 0 20px; }
  .overlay-nav   { padding: 40px 24px; }
  .overlay-info  { display: none; }

  .footer-cta-top { padding: 64px 0 48px; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; }
  .footer-legal   { padding: 16px 0 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-center { padding: calc(var(--nav-h) + 48px) 16px 48px; }
  .hero-center-h1 { font-size: clamp(2.0rem, 8vw, 2.8rem); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 24px; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .cmp-table th, .cmp-table td { padding: 10px 12px; font-size: 13px; }
  .footer-cta-heading { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .why-ltr-note { flex-direction: column; gap: 16px; }
  .guide-car-grid { grid-template-columns: 1fr; }
  .gd-car-grid    { grid-template-columns: 1fr; }
  .gd-tldr-card   { padding: 28px 24px; }
  .gd-hero-h1     { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}
