/* =====================================================
   자신만만렌터카 — 자동차 단기렌트 | style.css
   ===================================================== */

/* === CSS 변수 === */
:root {
  --bg:            #FDFAF4;
  --bg-alt:        #F0EAD8;
  --bg-warm:       #EDE8DA;
  --dark:          #0E0A05;
  --dark-2:        #1C1409;
  --cream:         #E8E0CE;
  --primary:       #E82520;
  --primary-dark:  #BF1A16;
  --primary-light: #FEF0EF;
  --primary-pale:  #FDDCDA;
  --sky:           #0369A1;
  --amber:         #F59E0B;
  --border:        #DDD5C4;
  --border-dark:   #C8BDA9;
  --text:          #180E05;
  --text-body:     #3A2D1C;
  --text-muted:    #7D6647;
  --white:         #FFFFFF;
  --radius:        8px;
  --radius-sm:     4px;
  --radius-lg:     16px;
  --shadow:        0 1px 4px rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.07);
  --shadow-md:     0 4px 20px rgba(0,0,0,.12), 0 10px 40px rgba(0,0,0,.09);
  --shadow-orange: 0 4px 24px rgba(232,37,32,.36);
  --transition:    all .25s 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 48px; }
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.bg-alt  { background: var(--bg-alt); }
.bg-dark { background: var(--dark); }

/* === 섹션 헤더 === */
.sec-header { margin-bottom: 56px; padding-left: 20px; border-left: 4px solid var(--primary); }
.sec-header.centered { text-align: center; padding-left: 0; border-left: none; }
.sec-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.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; }

/* === 섹션 스플릿 헤더 (홈 서비스 전용) === */
.sec-split-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 48px;
}
.sec-split-header .sec-split-left .sec-label { display: block; margin-bottom: 12px; }
.sec-split-header .sec-split-left h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; color: var(--text); }
.sec-split-header .sec-split-right p  { font-size: 16px; color: var(--text-muted); line-height: 1.8; }

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

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--primary);
  font-size: 15px; font-weight: 700; padding: 13px 31px;
  border: 2px solid var(--primary); border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap;
}
.btn-outline:hover { background: var(--primary); 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); border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; font-size: 15px; font-weight: 700; padding: 14px 32px; border: 2px solid var(--primary); border-radius: var(--radius-sm); transition: var(--transition); }
.btn-primary:hover { background: var(--primary-dark); }

/* === 헤더 — 히어로 위 투명 / 스크롤시 화이트 === */
#site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 999; height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
#site-header.scrolled {
  background: #fff;
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); max-width: 1240px; margin: 0 auto; padding: 0 48px;
}
.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(--primary); line-height: 1.2; }
.logo-text { font-size: 1.05rem; font-weight: 700; color: var(--cream); white-space: nowrap; line-height: 1.2; transition: color .35s ease; }
#site-header.scrolled .logo-text { color: var(--dark); }

.header-nav { display: flex; align-items: center; gap: 24px; }
.header-nav a { font-size: 14px; font-weight: 600; color: rgba(232,224,206,.8); transition: color .2s ease; white-space: nowrap; }
.header-nav a:hover { color: var(--cream); }
#site-header.scrolled .header-nav a { color: var(--text-muted); }
#site-header.scrolled .header-nav a:hover { color: var(--primary); }

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

/* 햄버거 */
.hamburger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: rgba(232,224,206,.9); transition: var(--transition); }
#site-header.scrolled .hamburger span { background: var(--dark); }

/* 오버레이 메뉴 */
.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 48px;
  border-bottom: 1px solid rgba(255,255,255,.07); flex-shrink: 0;
}
.overlay-head .logo-text { color: var(--cream); }
.overlay-head .logo-en   { color: var(--primary); }
.overlay-close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: rgba(232,224,206,.6); transition: color .2s ease; }
.overlay-close:hover { color: var(--cream); }
.overlay-body { display: flex; flex: 1; overflow-y: auto; }
.overlay-nav {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 48px 72px;
}
.overlay-nav a {
  font-size: clamp(1.5rem, 4vw, 2.8rem); font-weight: 700;
  color: rgba(232,224,206,.5); line-height: 1.25;
  padding: 12px 0; border-bottom: 1px solid rgba(232,224,206,.08);
  transition: color .2s ease, padding-left .2s ease;
}
.overlay-nav a:first-child { border-top: 1px solid rgba(232,224,206,.08); }
.overlay-nav a:hover { color: var(--primary); padding-left: 12px; }
.overlay-cta-link { color: var(--primary) !important; }
.overlay-cta-link:hover { color: var(--amber) !important; }

/* =====================================================
   HERO PANELS — 확장형 세로 패널 히어로
   ===================================================== */
.hero-panels {
  position: relative; height: 100svh;
  display: flex; overflow: hidden;
  background: var(--dark); user-select: none;
}
/* 각 패널 */
.hp-panel {
  position: relative; overflow: hidden;
  flex: 1;
  transition: flex .85s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.hp-panel.active { flex: 3.5; }

/* 이미지 */
.hp-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block; object-position: center;
  will-change: transform;
  transform: scale(1.06);
  transition: transform .85s cubic-bezier(.4,0,.2,1);
}
.hp-panel.active .hp-img {
  transform: scale(1);
  animation: hpKenBurns 9s ease-out forwards;
}
@keyframes hpKenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.055); }
}

/* 비활성 패널 어둡게 */
.hp-veil {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.38) 0%, transparent 35%, rgba(0,0,0,.5) 100%);
  transition: background .85s ease;
}
.hp-panel:not(.active) .hp-veil {
  background: rgba(0,0,0,.55);
}

/* 패널 사이 세로 구분선 */
.hp-panel + .hp-panel::before {
  content: '';
  position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px; background: rgba(255,255,255,.18); z-index: 2;
  transition: opacity .85s ease;
}
.hp-panel.active + .hp-panel::before,
.hp-panel + .hp-panel.active::before { opacity: 0; }

/* 비활성 패널 번호 레이블 */
.hp-label {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
  z-index: 3; white-space: nowrap;
  font-size: 10px; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  transition: opacity .5s ease;
}
.hp-panel.active .hp-label { opacity: 0; }

/* 하단 도트 (공통) */
.hp-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 4;
  display: flex; gap: 10px; align-items: center;
}
.hp-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: rgba(255,255,255,.32);
  cursor: pointer; flex-shrink: 0;
  transition: all .35s ease;
}
.hp-dot.active { background: #fff; width: 28px; border-radius: 4px; }

/* 모바일 — 2+1 모자이크 그리드 */
@media (max-width: 767px) {
  .hero-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 62svh 33svh;
    height: 95svh;
    gap: 3px;
    flex: none;
  }
  .hp-panel {
    flex: none; position: relative;
    overflow: hidden; cursor: default;
    transition: none;
  }
  /* 첫 번째 패널 — 상단 전체 너비 */
  .hp-panel:first-child {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  /* 두 번째, 세 번째 — 하단 절반씩 */
  .hp-panel:nth-child(2) { grid-column: 1; grid-row: 2; }
  .hp-panel:nth-child(3) { grid-column: 2; grid-row: 2; }
  /* 도트 숨김 — 그리드에서 불필요 */
  .hp-dots { display: none; }
  /* 이미지 채우기 */
  .hp-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1) !important;
    transition: none !important;
    animation: none !important;
  }
  /* 비활성 패널 오버레이 제거 — 모두 보이게 */
  .hp-panel:not(.active) .hp-veil {
    background:
      linear-gradient(to bottom, rgba(0,0,0,.28) 0%, transparent 40%, rgba(0,0,0,.35) 100%);
  }
  .hp-panel + .hp-panel::before { display: none; }
  .hp-label { display: none; }
}

/* =====================================================
   INTRO REVEAL — 스크롤 리빌 H1 섹션
   ===================================================== */
.intro-reveal { padding: 88px 0 80px; }
.intro-top { max-width: 760px; margin-bottom: 56px; }

.intro-overline {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 28px;
}
.io-dot {
  width: 8px; height: 8px; background: var(--primary);
  border-radius: 50%; flex-shrink: 0;
}
.intro-h1 {
  font-size: clamp(3.8rem, 8vw, 7.5rem); font-weight: 700;
  line-height: 1.0; letter-spacing: -.03em; color: var(--text); margin-bottom: 28px;
}
.intro-h1 em { font-style: normal; color: var(--primary); }
.intro-desc {
  font-size: 17px; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 40px; max-width: 500px;
}
.intro-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* 스탯 */
.intro-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border); padding-top: 44px; gap: 0;
}
.ist-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 32px; border-right: 1px solid var(--border);
}
.ist-item:first-child { padding-left: 0; }
.ist-item:last-child  { border-right: none; }
.ist-item strong { font-size: 1.9rem; font-weight: 700; color: var(--primary); line-height: 1; display: block; }
.ist-item span   { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* 리빌 딜레이 클래스 */
.reveal-d1 { transition-delay: .18s !important; }
.reveal-d2 { transition-delay: .34s !important; }
.reveal-d3 { transition-delay: .50s !important; }
.reveal-d4 { transition-delay: .66s !important; }

/* === INTRO — DARK EDITORIAL === */
.intro-reveal { background: var(--dark); }
.intro-h1     { color: var(--cream); }
.intro-h1 em  { color: var(--primary); }
.intro-desc   { color: rgba(232,224,206,.5); }
.intro-stats  { border-top-color: rgba(232,224,206,.1); }
.ist-item     { border-right-color: rgba(232,224,206,.1); }
.ist-item span { color: rgba(232,224,206,.42); }

/* === MARQUEE — 오렌지 스트립 === */
.marquee-wrap { background: var(--primary); overflow: hidden; padding: 13px 0; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee-scroll 30s 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: 600; letter-spacing: .04em; color: rgba(255,255,255,.85); }
.marquee-item .m-sep { color: rgba(255,255,255,.3); font-size: 10px; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === 서비스 에디토리얼 리스트 === */
.svc-ed-list { display: flex; flex-direction: column; margin-bottom: 36px; }
.svc-ed-item {
  display: flex; align-items: center; gap: 32px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit;
  transition: padding-left .25s ease;
  position: relative; overflow: hidden;
}
.svc-ed-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--primary);
  transform: scaleY(0); transform-origin: center;
  transition: transform .25s ease;
}
.svc-ed-item:first-child { border-top: 1px solid var(--border); }
.svc-ed-item:hover { padding-left: 20px; }
.svc-ed-item:hover::before { transform: scaleY(1); }
.svc-ed-item:hover .svc-ed-num { color: var(--primary); }
.svc-ed-item:hover .svc-ed-arrow { transform: translateX(8px); color: var(--primary); }
.svc-ed-num {
  font-size: 13px; font-weight: 700; color: var(--border-dark);
  min-width: 36px; transition: color .2s ease;
  letter-spacing: .06em; font-variant-numeric: tabular-nums;
}
.svc-ed-body { flex: 1; }
.svc-ed-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.svc-ed-body p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.svc-ed-badge {
  font-size: 12px; font-weight: 700; color: var(--primary);
  background: var(--primary-pale); padding: 4px 14px;
  border-radius: 999px; white-space: nowrap; flex-shrink: 0;
}
.svc-ed-arrow { font-size: 18px; color: var(--border-dark); transition: transform .25s ease, color .2s ease; flex-shrink: 0; }
.svc-ed-cta { text-align: right; }

/* === EDITORIAL ROWS — Dashburger 스타일 === */
.ed-rows { background: var(--dark); }
.ed-rows-hd {
  max-width: 1240px; margin: 0 auto; padding: 80px 48px 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ed-rows-hd .sec-label { color: var(--primary); }
.ed-rows-hd h2 { color: var(--cream); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; letter-spacing: -.03em; margin-top: 10px; }
.ed-rows-hd p  { color: rgba(232,224,206,.42); font-size: 16px; margin-top: 12px; }

.ed-row {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 58vh;
  border-bottom: 1px solid rgba(232,224,206,.07);
}
.ed-row.rev { direction: rtl; }
.ed-row.rev > * { direction: ltr; }

.ed-row-img { overflow: hidden; position: relative; }
.ed-row-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.ed-row:hover .ed-row-img img { transform: scale(1.06); }

.ed-row-txt {
  background: var(--dark-2);
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 68px;
  border-left: 1px solid rgba(232,224,206,.07);
}
.ed-row.rev .ed-row-txt { border-left: none; border-right: 1px solid rgba(232,224,206,.07); }

.ed-num-tag {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 18px;
}
.ed-row-txt h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 800;
  color: var(--cream); line-height: 1.1; letter-spacing: -.025em;
  margin-bottom: 18px;
}
.ed-row-txt p {
  font-size: 15px; color: rgba(232,224,206,.45);
  line-height: 1.85; max-width: 400px; margin-bottom: 38px;
}
.ed-link {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--primary);
  transition: gap .25s ease;
}
.ed-link:hover { gap: 24px; }
.ed-rows-foot {
  max-width: 1240px; margin: 0 auto; padding: 48px 48px;
  text-align: center; border-top: 1px solid rgba(232,224,206,.08);
}

/* === PROCESS — DARK === */
.proc-dark .sec-label { color: var(--primary); }
.proc-dark .sec-header.centered h2 { color: var(--cream); }
.proc-dark .sec-header.centered p  { color: rgba(232,224,206,.42); }
.proc-dark .proc-st-content h3 { color: var(--cream); }
.proc-dark .proc-st-content p  { color: rgba(232,224,206,.4); }
.proc-dark .proc-st-dot { box-shadow: 0 0 0 8px rgba(232,37,32,.14); }
@media (max-width: 900px) {
  .proc-dark .proc-st-item { border-bottom-color: rgba(232,224,206,.08); }
}

/* === FAQ — DARK === */
.faq-dark .faq-split-left .sec-label { color: var(--primary); }
.faq-dark .faq-split-left h2 { color: var(--cream); }
.faq-dark .faq-split-left p  { color: rgba(232,224,206,.42); }
.faq-dark .faq-q-btn { color: rgba(232,224,206,.72); border-bottom-color: rgba(232,224,206,.1); }
.faq-dark .faq-row:first-child .faq-q-btn { border-top-color: rgba(232,224,206,.1); }
.faq-dark .faq-q-btn:hover, .faq-dark .faq-q-btn[aria-expanded="true"] { color: var(--cream); }
.faq-dark .faq-body-inner { color: rgba(232,224,206,.48); }
.faq-dark .faq-row { border-bottom-color: rgba(232,224,206,.1); }

/* === CAR SCROLL === */
.car-scroll-outer { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, 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); border-radius: var(--radius); overflow: hidden; transition: var(--transition); text-decoration: none; color: inherit; }
.car-scroll-card:hover { border-color: var(--primary); box-shadow: var(--shadow-orange); 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(--primary); letter-spacing: .08em; margin-bottom: 6px; opacity: .8; display: block; }
.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(--primary); margin-top: 12px; }
.car-cta-full { display: flex; justify-content: center; margin-top: 36px; }

/* === 프로세스 연결 스텝퍼 (홈 전용) === */
.proc-stepper {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
}
.proc-st-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
.proc-st-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
  box-shadow: 0 0 0 8px var(--primary-pale);
  transition: var(--transition);
}
.proc-st-item:hover .proc-st-dot { background: var(--primary-dark); transform: scale(1.08); }
.proc-st-content h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.proc-st-content p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.proc-st-connector {
  align-self: flex-start; margin-top: 27px;
  width: 48px; height: 2px;
  background: linear-gradient(to right, var(--primary), var(--primary-pale));
  flex-shrink: 0; position: relative;
}
.proc-st-connector::after {
  content: ''; position: absolute; right: -5px; top: -4px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--primary-pale);
}

/* === FAQ 2컬럼 (홈 전용) === */
.faq-split { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }
.faq-split-left .sec-label { display: block; margin-bottom: 16px; }
.faq-split-left h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.1; margin-bottom: 16px; }
.faq-split-left p  { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }

/* FAQ 아코디언 공용 */
.faq-wrap { max-width: none; }
.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(--primary); }
.faq-icon-wrap {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.faq-row.open .faq-icon-wrap { background: var(--primary); }
.faq-icon-sym { font-size: 16px; font-weight: 700; color: var(--primary); 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; }

/* 서비스 페이지 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(--primary); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--primary); transition: var(--transition); line-height: 1; }
.faq-item.open .faq-icon { background: var(--primary); 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; }

/* === 지역 필 태그 (홈 전용) === */
/* === 서비스 지역 카드 그리드 === */
.region-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.region-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 32px 24px 28px;
  background: var(--bg);
  text-decoration: none; color: inherit;
  transition: background .28s ease, color .28s ease;
  overflow: hidden;
}
.region-card::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--primary);
  transition: height .3s ease;
}
.region-card:hover::before { height: 100%; }
.region-card:hover { background: var(--dark); }
.rc-num {
  font-size: 11px; font-weight: 700;
  color: var(--border); letter-spacing: .14em;
  margin-bottom: 28px; transition: color .28s ease;
}
.region-card:hover .rc-num { color: rgba(255,255,255,.2); }
.rc-name {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1;
  color: var(--text);
  margin-bottom: 10px;
  transition: color .28s ease;
}
.region-card:hover .rc-name { color: #fff; }
.rc-svc {
  font-size: 12px; color: var(--text-muted);
  font-weight: 500; line-height: 1.5;
  flex: 1;
  transition: color .28s ease;
}
.region-card:hover .rc-svc { color: var(--primary); }
.rc-arrow {
  display: block;
  margin-top: 24px;
  font-size: 20px;
  color: var(--border);
  transition: color .28s ease, transform .28s ease;
}
.region-card:hover .rc-arrow { color: var(--primary); transform: translateX(5px); }

/* === 지역 리스트 (서비스 페이지용) === */
.regions-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.region-row { display: flex; align-items: center; gap: 20px; padding: 20px 24px; background: var(--bg); text-decoration: none; color: inherit; border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.region-row:hover { background: var(--primary); border-color: var(--primary); }
.region-row:hover .r-num, .region-row:hover .r-name { color: #fff; }
.region-row:hover .r-tag  { background: rgba(255,255,255,.15); color: rgba(255,255,255,.7); }
.region-row:hover .r-arrow { color: rgba(255,255,255,.7); }
.r-num  { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: .1em; min-width: 28px; transition: color .2s; }
.r-name { font-size: 15px; font-weight: 700; color: var(--text); flex: 1; transition: color .2s; }
.r-tag  { font-size: 12px; color: var(--text-muted); background: var(--bg-alt); padding: 3px 10px; border-radius: 20px; white-space: nowrap; transition: var(--transition); }
.r-arrow { font-size: 16px; color: var(--border-dark); transition: var(--transition); }

/* === CTA 밴드 — 오렌지 === */
.cta-band { background: var(--primary); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; background: rgba(255,255,255,.05); border-radius: 50%; }
.cta-band::after  { content: ''; position: absolute; bottom: -100px; left: -60px; width: 280px; height: 280px; background: rgba(255,255,255,.04); border-radius: 50%; }
.cta-band h2 { color: var(--cream); font-size: clamp(1.5rem,3vw,2.2rem); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-band p  { color: rgba(232,224,206,.82); 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; }

/* === PAGE HERO (서비스/지역 페이지) === */
.page-hero {
  position: relative; background: var(--dark);
  background-size: cover; background-position: center 40%;
  background-attachment: fixed;
  padding: calc(var(--nav-h) + 64px) 0 0; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to bottom, rgba(15,23,42,.85) 0%, rgba(15,23,42,.60) 45%, rgba(15,23,42,.90) 100%); }
.page-hero::after  { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%; z-index: 1; background: linear-gradient(135deg, rgba(232,37,32,.15) 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(232,224,206,.45); margin-bottom: 20px; }
.page-hero .breadcrumb a { color: rgba(232,224,206,.45); transition: color .2s ease; }
.page-hero .breadcrumb a:hover { color: var(--primary); }
.page-hero h1 { color: var(--cream); margin-bottom: 14px; }
.page-hero .hero-sub { font-size: 16px; color: rgba(232,224,206,.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; position: relative; z-index: 2; }
.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(--primary); margin-bottom: 6px; display: block; text-transform: uppercase; }
.spec-val   { font-size: 1.1rem; font-weight: 700; color: var(--cream); }

/* === 서비스 페이지 컴포넌트 === */
.kicker { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--primary); background: var(--primary-pale); border: 1px solid rgba(232,37,32,.25); padding: 5px 14px; border-radius: var(--radius-sm); margin-bottom: 16px; }

.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.feat-card { background: var(--bg); padding: 32px 28px; border-radius: var(--radius); border: 1px solid var(--border); border-top: 3px solid var(--border); box-shadow: var(--shadow); transition: border-color .3s ease, box-shadow .3s ease; }
.feat-card:hover { border-top-color: var(--primary); box-shadow: var(--shadow-orange); }
.feat-num  { font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--primary); margin-bottom: 14px; display: block; opacity: .7; }
.feat-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feat-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.symp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.symp-card { background: var(--bg); padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); position: relative; overflow: hidden; transition: var(--transition); }
.symp-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--border); transition: background .3s ease; }
.symp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-orange); }
.symp-card:hover::before { background: var(--primary); }
.symp-num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; margin-bottom: 14px; flex-shrink: 0; border-radius: var(--radius-sm); }
.symp-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.symp-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.proc-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.proc-step  { background: var(--bg); padding: 28px 20px; text-align: center; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); transition: var(--transition); }
.proc-step:hover { border-color: var(--primary); box-shadow: var(--shadow-orange); transform: translateY(-3px); }
.ps-num { font-size: 2.2rem; font-weight: 700; color: var(--primary-pale); margin-bottom: 14px; display: block; transition: color .3s ease; }
.proc-step:hover .ps-num { color: var(--primary); }
.proc-step h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.proc-step p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.method-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.method-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); }
.method-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); }
.method-pros, .method-cons { margin-bottom: 14px; }
.method-pros li, .method-cons li { font-size: 14px; color: var(--text-body); padding-left: 16px; position: relative; line-height: 1.6; margin-bottom: 6px; }
.method-pros li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; background: var(--primary); border-radius: 50%; }
.method-cons-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 8px; }
.method-cons li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; background: var(--text-muted); border-radius: 50%; }

.svc-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.svc-gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); }
.svc-gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .35s ease; }
.svc-gallery-item:hover img { transform: scale(1.04); }
.svc-gallery-caption { padding: 10px 0 0; font-size: 13px; color: var(--text-muted); }
.svc-gallery-more { display: flex; justify-content: center; margin-top: 28px; }

.related-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.related-link-card { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; background: var(--bg); text-decoration: none; color: inherit; border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); font-size: 14px; font-weight: 700; color: var(--text); }
.related-link-card:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.related-link-card:hover .rl-arrow { color: rgba(255,255,255,.7); }
.rl-arrow { font-size: 16px; color: var(--border-dark); transition: var(--transition); }

/* === 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(--primary) !important; color: #fff !important; }
.cmp-table td.hl { background: rgba(232,37,32,.06); color: var(--primary); font-weight: 700; }
.cmp-table tbody tr:hover td { background: var(--bg-warm); }

/* === GALLERY === */
.gallery-count { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.gallery-count strong { color: var(--primary); font-weight: 700; }
.cars-grid-full { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.car-card { background: var(--bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.car-card-link { display: block; text-decoration: none; color: inherit; transition: var(--transition); }
.car-card-link:hover { box-shadow: var(--shadow-orange); }
.car-img-wrap { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.car-img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.car-card-link:hover .car-img { transform: scale(1.04); }
.car-info { padding: 16px 18px 20px; }
.car-category { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: .08em; margin-bottom: 6px; display: block; opacity: .8; }
.car-title    { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.car-type     { font-size: 13px; color: var(--text-muted); margin-bottom: 2px; }
.car-customer { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.car-more     { font-size: 12px; font-weight: 700; color: var(--primary); }
.no-cars { text-align: center; padding: 80px 0; }
.no-cars p { font-size: 15px; color: var(--text-muted); margin-bottom: 8px; }

/* === CAR DETAIL === */
.cd-hero { min-height: 60vh; display: flex; align-items: flex-end; padding-bottom: 0; }
.cd-cat-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--primary-pale); color: var(--primary); border: 1px solid rgba(232,37,32,.25); border-radius: var(--radius-sm); padding: 5px 12px; margin-bottom: 14px; }
.cd-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cd-thumb-img { width: 100%; border-radius: var(--radius); }
.cd-overview-h2 { font-size: clamp(1.4rem,3vw,2rem); margin: 12px 0 20px; }
.cd-overview-list { margin-bottom: 20px; }
.cd-overview-list li { font-size: 14px; color: var(--text-body); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; }
.cd-overview-p { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 28px; }
.cd-overview-section { padding-top: 64px; }
.cd-highlights { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.cd-highlight-card { background: var(--bg); padding: 32px 28px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.cd-hl-num { font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--primary); margin-bottom: 14px; display: block; opacity: .7; }
.cd-highlight-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.cd-highlight-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.cd-audience { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.cd-audience-card { background: var(--bg); padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.cd-aud-case { font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--primary); margin-bottom: 10px; display: block; opacity: .7; }
.cd-audience-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.cd-audience-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.cd-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.cd-related-card { display: block; background: var(--bg); text-decoration: none; color: inherit; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.cd-related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-orange); border-color: var(--primary); }
.cd-related-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.cd-related-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.cd-related-card:hover .cd-related-thumb img { transform: scale(1.04); }
.cd-related-body { padding: 16px 18px 20px; }
.cd-related-cat   { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: .08em; margin-bottom: 6px; display: block; opacity: .8; }
.cd-related-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; display: block; }
.cd-related-type  { font-size: 13px; color: var(--text-muted); display: block; margin-bottom: 8px; }
.cd-related-more  { font-size: 12px; font-weight: 700; color: var(--primary); }
.car-nav { border-top: 1px solid var(--border); }
.car-nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.car-nav-btn { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; color: var(--text); text-decoration: none; transition: color .2s ease; }
.car-nav-btn:hover { color: var(--primary); }
.car-nav-all { font-size: 13px; font-weight: 600; color: var(--text-muted); text-decoration: none; transition: color .2s ease; }
.car-nav-all:hover { color: var(--primary); }
.car-nav-disabled { visibility: hidden; }

/* === CONSULTATION === */
.consult-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 32px; }
.consult-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow); }
.consult-card-icon { color: var(--primary); margin-bottom: 20px; }
.consult-card-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.consult-phone-link { display: block; font-size: 1.6rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.consult-phone-link:hover { color: var(--primary-dark); }
.consult-sms-link { display: inline-block; font-size: 1rem; font-weight: 700; color: #fff; background: var(--primary); padding: 12px 28px; margin-bottom: 12px; border-radius: var(--radius-sm); transition: var(--transition); }
.consult-sms-link:hover { background: var(--primary-dark); }
.consult-card-desc { font-size: 14px; color: var(--text-muted); }
.consult-sms-template { margin-top: 16px; border-top: 1px solid var(--border); padding-top: 16px; }
.sms-template-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 8px; }
.sms-template-pre { font-size: 13px; color: var(--text-body); line-height: 1.75; font-family: inherit; white-space: pre-wrap; }
.consult-notice { font-size: 13px; color: var(--text-muted); line-height: 1.75; padding: 16px 20px; background: var(--bg-warm); border-left: 3px solid var(--primary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.consult-phone-placeholder { font-size: 15px; color: var(--text-muted); }
.biz-info-list { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.biz-info-row { display: flex; padding: 16px 24px; border-bottom: 1px solid var(--border); }
.biz-info-row:last-child { border-bottom: none; }
.biz-info-row dt { font-size: 13px; font-weight: 700; color: var(--text-muted); min-width: 140px; }
.biz-info-row dd { font-size: 14px; color: var(--text-body); }

/* === 사이트맵 === */
.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(232,37,32,.12) 0%, transparent 60%); }
.page-hero-content { max-width: 1240px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 1; }
.page-hero-title { color: var(--cream); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 8px; }
.page-hero-sub   { color: rgba(232,224,206,.5); font-size: 14px; }
.page-hero-sub strong { color: var(--primary); }
.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); border-radius: 20px; transition: var(--transition); cursor: pointer; font-family: inherit; }
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.sitemap-search-wrap { margin-bottom: 32px; }
.sitemap-search { width: 100%; max-width: 400px; padding: 11px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; color: var(--text); background: var(--bg); outline: none; transition: border-color .2s; }
.sitemap-search:focus { border-color: var(--primary); }
.sitemap-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.sitemap-card { display: flex; flex-direction: column; gap: 6px; padding: 20px; background: var(--bg); text-decoration: none; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); }
.sitemap-card[hidden] { display: none !important; }
.sitemap-card:hover { border-color: var(--primary); box-shadow: var(--shadow-orange); transform: translateY(-2px); }
.sitemap-icon { color: var(--primary); 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; }

/* === 푸터 === */
#site-footer { background: var(--dark); }
.footer-cta-top { padding: 96px 0 72px; border-bottom: 1px solid rgba(232,224,206,.08); }
.footer-cta-en { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; }
.footer-cta-heading { font-size: clamp(2rem,5vw,3.5rem); font-weight: 700; color: var(--cream); line-height: 1.2; margin-bottom: 20px; }
.footer-cta-heading .hl-green { color: var(--primary); }
.footer-cta-desc { font-size: 15px; color: rgba(232,224,206,.5); line-height: 1.75; margin-bottom: 36px; }
.btn-footer-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: #fff; font-size: 15px; font-weight: 700; padding: 14px 32px; border-radius: var(--radius-sm); transition: var(--transition); white-space: nowrap; }
.btn-footer-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.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(--primary); margin-bottom: 4px; }
.footer-brand-name { font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 6px; }
.footer-brand-tag  { font-size: 11px; color: rgba(232,224,206,.3); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.footer-brand p    { font-size: 13px; color: rgba(232,224,206,.38); line-height: 1.75; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(232,224,206,.3); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(232,224,206,.5); transition: color .2s ease; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid rgba(232,224,206,.08); 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(232,224,206,.22); line-height: 1.8; }
.footer-copy { font-size: 12px; color: rgba(232,224,206,.15); white-space: nowrap; }
.footer-legal { padding: 20px 0 40px; border-top: 1px solid rgba(232,224,206,.06); }
.footer-legal p { font-size: 11px; color: rgba(232,224,206,.18); line-height: 1.75; word-break: keep-all; margin-bottom: 4px; }

/* === 플로팅 === */
.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; border-radius: 50%; transition: var(--transition); cursor: pointer; font-family: inherit; }
.float-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 20px rgba(232,37,32,.50); }
.float-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,37,32,.55); }
.float-top { background: rgba(14,10,5,.88); color: rgba(232,224,206,.8); border: 1px solid rgba(232,224,206,.12); }
.float-top:hover { background: var(--dark); border-color: var(--primary); color: var(--cream); }
.float-top[hidden] { opacity: 0; pointer-events: none; transform: translateY(8px); }

/* === 스크롤 리빌 === */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-48px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal-right { opacity: 0; transform: translateX( 48px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(32px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: .1s; }
.stagger.visible > *:nth-child(3) { transition-delay: .2s; }
.stagger.visible > *:nth-child(4) { transition-delay: .3s; }
.stagger.visible > *:nth-child(5) { transition-delay: .4s; }
.stagger.visible > *:nth-child(6) { transition-delay: .5s; }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* === 페이지 히어로 — 입장 애니메이션 (서비스/지역 페이지) === */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
.hero-anim {
  opacity: 0;
  animation: heroSlideUp .85s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-anim-0 { animation-delay: .06s; }
.hero-anim-1 { animation-delay: .22s; }
.hero-anim-2 { animation-delay: .38s; }
.hero-anim-3 { animation-delay: .54s; }
.hero-anim-4 { animation-delay: .70s; }

.spec-strip .spec-item {
  opacity: 0;
  animation: heroSlideUp .65s cubic-bezier(.2,.7,.2,1) forwards;
}
.spec-strip .spec-item:nth-child(1) { animation-delay: .76s; }
.spec-strip .spec-item:nth-child(2) { animation-delay: .88s; }
.spec-strip .spec-item:nth-child(3) { animation-delay: 1.00s; }
.spec-strip .spec-item:nth-child(4) { animation-delay: 1.12s; }

/* === proc-dark — proc-step (서비스/지역 5스텝 그리드) === */
.proc-dark .proc-step {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  box-shadow: none;
}
.proc-dark .proc-step:hover {
  background: rgba(232,37,32,.1);
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 8px 32px rgba(232,37,32,.2);
  transform: translateY(-4px);
}
.proc-dark .ps-num { color: rgba(232,37,32,.28); }
.proc-dark .proc-step:hover .ps-num { color: var(--primary); }
.proc-dark .proc-step h3 { color: rgba(255,255,255,.85); }
.proc-dark .proc-step p  { color: rgba(255,255,255,.4); }

/* stagger 아이템 7~8개 지원 */
.stagger.visible > *:nth-child(7) { transition-delay: .6s; }
.stagger.visible > *:nth-child(8) { transition-delay: .7s; }

/* === 차량 상세 페이지 — car-stat-strip === */
.car-stat-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 56px;
}
.car-stat {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.car-stat:last-child { border-right: none; }
.car-stat strong {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; color: var(--primary);
  letter-spacing: -.03em; line-height: 1; margin-bottom: 10px;
}
.car-stat span { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 500; }

/* feat-card 다크 변형 */
.feat-card-dk {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08); border-top-color: rgba(255,255,255,.08);
  box-shadow: none;
}
.feat-card-dk:hover {
  border-top-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 8px 32px rgba(232,37,32,.2);
}
.feat-card-dk .feat-num { color: rgba(232,37,32,.65); }
.feat-card-dk h3 { color: rgba(255,255,255,.88); }
.feat-card-dk p  { color: rgba(255,255,255,.42); }

/* 차량 오버뷰 2컬럼 */
.car-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.car-overview-img { overflow: hidden; border-radius: var(--radius-lg); }
.car-overview-img img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.car-overview-img:hover img { transform: scale(1.04); }
.car-overview-txt .car-kicker {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px;
}
.car-overview-txt h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px;
}
.car-overview-txt > p { font-size: 16px; line-height: 1.85; margin-bottom: 28px; max-width: 480px; }
.car-spec-list { border-top: 1px solid var(--border); margin-bottom: 32px; }
.car-spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14px;
}
.car-spec-key { color: var(--text-muted); }
.car-spec-val { font-weight: 700; color: var(--text); }

/* 차량 갤러리 스트립 */
.car-gallery-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.car-gallery-cell  { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.car-gallery-cell img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.car-gallery-cell:hover img { transform: scale(1.06); }

/* === 갤러리 목록 카드 (2+3 그리드) === */
.car-list { display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; }
.car-list-card:nth-child(-n+2) { grid-column: span 3; }
.car-list-card:nth-child(n+3)  { grid-column: span 2; }
.car-list-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition); background: var(--bg);
}
.car-list-card:hover { box-shadow: var(--shadow-orange); border-color: var(--primary); transform: translateY(-5px); }
.car-list-thumb { overflow: hidden; background: var(--bg-alt); }
.car-list-card:nth-child(-n+2) .car-list-thumb { aspect-ratio: 16/9; }
.car-list-card:nth-child(n+3)  .car-list-thumb { aspect-ratio: 4/3; }
.car-list-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.car-list-card:hover .car-list-thumb img { transform: scale(1.06); }
.car-list-body { padding: 22px 24px 28px; }
.car-list-type { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.car-list-name { font-size: clamp(1.1rem,2vw,1.4rem); font-weight: 800; color: var(--text); margin-bottom: 6px; line-height: 1.2; letter-spacing: -.02em; }
.car-list-sub  { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.6; }
.car-list-for  { display: block; font-size: 12px; color: var(--primary); font-weight: 600; margin-bottom: 16px; opacity: .8; }
.car-list-more { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--primary); letter-spacing: .08em; text-transform: uppercase; transition: gap .25s ease; }
.car-list-card:hover .car-list-more { gap: 16px; }

@media (max-width: 1100px) {
  .car-list { grid-template-columns: repeat(2,1fr); }
  .car-list-card:nth-child(-n+2), .car-list-card:nth-child(n+3) { grid-column: span 1; }
  .car-list-card .car-list-thumb { aspect-ratio: 4/3 !important; }
}
@media (max-width: 900px) {
  .car-overview { grid-template-columns: 1fr; gap: 36px; }
  .car-stat-strip { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .car-gallery-strip { grid-template-columns: 1fr 1fr; }
  .car-list { gap: 14px; }
}
@media (max-width: 480px) { .car-list { grid-template-columns: 1fr; } }

/* === 404 === */
.error-section { min-height: 70vh; display: flex; align-items: center; }
.error-container { text-align: center; padding: 80px 0; }
.error-code  { font-size: clamp(5rem,12vw,9rem); font-weight: 700; color: var(--primary-pale); line-height: 1; margin-bottom: 16px; }
.error-title { font-size: clamp(1.5rem,3vw,2rem); color: var(--text); margin-bottom: 12px; }
.error-desc  { font-size: 15px; color: var(--text-muted); margin-bottom: 36px; }
.error-nav   { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === 유틸 === */
.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; }
.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; }

/* === 반응형 === */
@media (max-width: 1100px) {
  .cars-grid-full { grid-template-columns: repeat(3,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .method-grid    { grid-template-columns: repeat(2,1fr); }
  .proc-steps     { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .proc-stepper { grid-template-columns: 1fr; gap: 0; }
  .proc-st-item {
    flex-direction: row; text-align: left; align-items: flex-start;
    padding: 24px 0; border-bottom: 1px solid var(--border); gap: 24px;
  }
  .proc-st-item:last-child { border-bottom: none; }
  .proc-st-dot { margin-bottom: 0; flex-shrink: 0; }
  .proc-st-connector { display: none; }
  .sec-split-header { grid-template-columns: 1fr; gap: 20px; }
  .faq-split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .container    { padding: 0 20px; }
  .section      { padding: 64px 0; }
  .header-inner { padding: 0 20px; }
  .header-nav   { display: none; }
  .hamburger    { display: flex; }
  .overlay-head { padding: 0 24px; }
  .overlay-nav  { padding: 40px 32px; }
  .hero-photo { height: 100svh; }
  .intro-reveal { padding: 60px 0 56px; }
  .intro-h1 { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .intro-stats { grid-template-columns: repeat(2,1fr); }
  .ist-item { padding: 0 16px; }
  .ist-item:nth-child(2) { border-right: none; }
  .ist-item:nth-child(3) { padding-left: 0; border-left: none; border-right: 1px solid var(--border); padding-top: 24px; }
  .ist-item:nth-child(4) { padding-top: 24px; border-right: none; }
  .cars-grid-full  { grid-template-columns: repeat(2,1fr); }
  .proc-steps      { grid-template-columns: repeat(2,1fr); }
  .feat-grid       { grid-template-columns: 1fr; }
  .symp-grid       { grid-template-columns: repeat(2,1fr); }
  .method-grid     { grid-template-columns: 1fr; }
  .svc-gallery     { grid-template-columns: repeat(2,1fr); }
  .related-row     { grid-template-columns: 1fr; }
  .regions-list    { grid-template-columns: 1fr; }
  .region-grid     { grid-template-columns: repeat(2,1fr); }
  .rc-name         { font-size: 1.5rem; }
  .consult-cards   { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 24px; }
  .cd-overview-grid { grid-template-columns: 1fr; gap: 32px; }
  .cd-highlights, .cd-audience, .cd-related-grid { grid-template-columns: 1fr; }
  .spec-strip      { grid-template-columns: repeat(2,1fr); }
  .sitemap-grid    { grid-template-columns: repeat(2,1fr); }
  .page-hero-content { padding: 0 20px; }
  .svc-ed-item  { gap: 16px; }
  .svc-ed-badge { display: none; }
  .svc-ed-cta   { text-align: center; }
}
@media (max-width: 480px) {
  .cars-grid-full { grid-template-columns: 1fr; }
  .symp-grid      { grid-template-columns: 1fr; }
  .proc-steps     { grid-template-columns: repeat(2,1fr); }
  .sitemap-grid   { grid-template-columns: 1fr; }
  .region-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  /* 에디토리얼 로우 — 모바일 시네마 포스터 */
  .ed-row {
    display: block;
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    direction: ltr !important;
    border-bottom: none;
    margin-bottom: 4px;
  }
  .ed-row-img {
    position: absolute; inset: 0;
    aspect-ratio: unset;
  }
  .ed-row-img img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .ed-row-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,.95) 0%,
      rgba(0,0,0,.55) 42%,
      rgba(0,0,0,.08) 100%
    );
    z-index: 1;
  }
  .ed-row-txt {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 0 28px 36px;
    background: transparent;
    border: none !important;
    justify-content: flex-end;
  }
  .ed-row-txt h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    margin-bottom: 14px;
  }
  .ed-row-txt p { display: none; }
  .ed-num-tag { margin-bottom: 10px; letter-spacing: .2em; }
  .ed-link { font-size: 11px; letter-spacing: .12em; }

  .ed-rows-hd { padding: 48px 20px 36px; }
  .ed-rows-hd h2 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .ed-rows-foot { padding: 32px 20px; }
  .ist-item:nth-child(3) { border-right-color: rgba(255,255,255,.08); }
}
@media (max-width: 768px) {
  .page-hero { background-attachment: scroll; }
  .ist-item:nth-child(3) { border-right-color: rgba(255,255,255,.08); }
}

/* =====================================================
   GUIDE PAGE — 단기렌트 완전가이드
   ===================================================== */
.guide-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 72px) 0 64px;
  position: relative; overflow: hidden;
}
.guide-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,37,32,.12) 0%, transparent 55%);
  pointer-events: none;
}
.guide-hero-inner { position: relative; z-index: 1; }
.guide-kicker {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 18px;
}
.guide-h1 {
  font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800;
  color: var(--cream); line-height: 1.1; letter-spacing: -.03em;
  margin-bottom: 18px;
}
.guide-h1 em { font-style: normal; color: var(--primary); }
.guide-hero-sub {
  font-size: 16px; color: rgba(232,224,206,.5);
  max-width: 600px; line-height: 1.75; margin-bottom: 36px;
}
.guide-hero-meta {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  font-size: 12px; color: rgba(232,224,206,.3);
  letter-spacing: .05em;
}
.guide-hero-meta span { display: flex; align-items: center; gap: 6px; }

/* 가이드 레이아웃 (사이드바 + 본문) */
.guide-wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 220px 1fr;
  gap: 64px; align-items: start;
  padding-top: 72px; padding-bottom: 96px;
}
.guide-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.guide-toc-title {
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 16px;
}
.guide-toc { display: flex; flex-direction: column; gap: 2px; }
.guide-toc a {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: var(--transition); text-decoration: none;
  border-left: 2px solid transparent;
}
.guide-toc a:hover { color: var(--primary); background: var(--primary-light); border-left-color: var(--primary); }
.guide-toc a.active { color: var(--primary); background: var(--primary-light); border-left-color: var(--primary); }
.guide-toc .toc-num { font-size: 10px; color: var(--primary); font-variant-numeric: tabular-nums; min-width: 18px; }
.guide-toc-divider { height: 1px; background: var(--border); margin: 12px 0; }
.guide-toc-cta { margin-top: 24px; }

/* 가이드 본문 */
.guide-main { min-width: 0; }
.guide-section { margin-bottom: 80px; scroll-margin-top: calc(var(--nav-h) + 16px); }
.guide-section:last-child { margin-bottom: 0; }

.guide-sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 14px;
}
.guide-sec-label span { font-size: 18px; font-weight: 800; letter-spacing: 0; }
.guide-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--text); letter-spacing: -.025em; line-height: 1.2;
  margin-bottom: 24px;
}
.guide-section > p {
  font-size: 15px; color: var(--text-muted); line-height: 1.85;
  max-width: 680px; margin-bottom: 32px;
}
.guide-divider { height: 1px; background: var(--border); margin: 80px 0; }

/* TL;DR 카드 */
.tldr-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
  margin-bottom: 36px;
}
.tldr-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  border-left: 3px solid var(--primary);
}
.tldr-card-num { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: .1em; margin-bottom: 8px; }
.tldr-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.tldr-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* 비교표 */
.guide-table-wrap { overflow-x: auto; margin-bottom: 24px; }
.guide-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.guide-table thead th {
  background: var(--dark); color: var(--cream);
  padding: 14px 20px; text-align: center;
  font-size: 13px; font-weight: 700; letter-spacing: .06em;
  border: 1px solid rgba(232,224,206,.08);
}
.guide-table thead th:first-child { text-align: left; }
.guide-table thead th.hl { background: var(--primary); color: #fff; }
.guide-table tbody td {
  padding: 13px 20px; border: 1px solid var(--border);
  color: var(--text-body); text-align: center;
  vertical-align: middle;
}
.guide-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--text); }
.guide-table tbody td.hl { background: var(--primary-light); color: var(--primary); font-weight: 700; }
.guide-table tbody tr:nth-child(even) td { background: var(--bg-alt); }
.guide-table tbody tr:nth-child(even) td.hl { background: var(--primary-pale); }
.guide-badge-o { color: var(--primary); font-weight: 700; }
.guide-badge-x { color: var(--text-muted); }

/* 비용 항목 리스트 */
.cost-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.cost-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: var(--bg-alt);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.cost-item-name { font-size: 14px; font-weight: 600; color: var(--text); }
.cost-item-desc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.cost-badge {
  font-size: 12px; font-weight: 700; padding: 4px 12px;
  border-radius: 999px; white-space: nowrap; flex-shrink: 0;
}
.cost-badge.inc { background: var(--primary-pale); color: var(--primary); }
.cost-badge.sep { background: var(--bg-warm); color: var(--text-muted); border: 1px solid var(--border); }

/* 절차 스텝 */
.guide-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.guide-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--border);
  position: relative;
}
.guide-step:last-child { border-bottom: none; }
.guide-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; flex-shrink: 0;
}
.guide-step-body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.guide-step-body p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* 차종 가이드 */
.cartype-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 32px; }
.cartype-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.cartype-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.cartype-img img { width: 100%; height: 100%; object-fit: cover; }
.cartype-body { padding: 20px; }
.cartype-tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.cartype-body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.cartype-body p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.cartype-models { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.cartype-model { font-size: 12px; background: var(--bg-warm); color: var(--text-muted); padding: 3px 10px; border-radius: 999px; border: 1px solid var(--border); }

/* 체크리스트 */
.checklist-group { margin-bottom: 32px; }
.checklist-group-title {
  font-size: 13px; font-weight: 700; color: var(--primary);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-pale);
}
.checklist-items { display: flex; flex-direction: column; gap: 0; }
.checklist-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-body); line-height: 1.6;
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item::before {
  content: '□'; color: var(--primary); font-size: 16px;
  flex-shrink: 0; line-height: 1.4;
}

/* FAQ */
.guide-faq { display: flex; flex-direction: column; gap: 0; }
.guide-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.guide-faq-item:first-child { border-top: 1px solid var(--border); }
.guide-faq-q {
  font-size: 15px; font-weight: 700; color: var(--text);
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; list-style: none; padding: 0;
  background: none; border: none; text-align: left;
  width: 100%; font-family: inherit; line-height: 1.5;
  transition: color .2s;
}
.guide-faq-q:hover { color: var(--primary); }
.guide-faq-q::before { content: 'Q.'; color: var(--primary); font-weight: 800; flex-shrink: 0; }
.guide-faq-a {
  font-size: 14px; color: var(--text-muted); line-height: 1.8;
  margin-top: 10px; padding-left: 28px;
}
.guide-faq-a::before { content: 'A. '; color: var(--primary); font-weight: 700; }

/* CTA 인라인 */
.guide-cta-inline {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  text-align: center; margin: 40px 0;
}
.guide-cta-inline p { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; }

/* 반응형 */
@media (max-width: 1024px) {
  .guide-wrap { grid-template-columns: 180px 1fr; gap: 40px; padding: 0 32px 80px; }
}
@media (max-width: 768px) {
  .guide-wrap { grid-template-columns: 1fr; padding: 0 20px 64px; padding-top: 40px; }
  .guide-sidebar { position: static; }
  .guide-toc { display: flex; flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .guide-toc a { font-size: 12px; padding: 6px 10px; border-left: none; border-bottom: 2px solid transparent; }
  .guide-toc a:hover, .guide-toc a.active { border-left: none; border-bottom-color: var(--primary); }
  .guide-toc .toc-num { display: none; }
  .tldr-grid { grid-template-columns: 1fr; }
  .cartype-grid { grid-template-columns: 1fr; }
  .guide-hero { padding: calc(var(--nav-h) + 48px) 0 48px; }
}
