/* ===========================================================
   자신만만렌터카 — 사업자장기렌트 디자인 시스템
   Dark Wine & Cyan — PRC 기법(켄번즈/펄스링/마퀴/리빌) 이식, 컬러·섹션순서 차별화
   =========================================================== */

:root {
  --ink: #1B0F14;              /* 메인 다크 배경 (PRC의 --dark-bg 자리, 톤만 와인블랙) */
  --ink-2: #2E1B28;             /* 서피스(카드) 배경 */
  --paper: #F3DEE7;             /* 메인 텍스트(밝은 색, 다크 배경 위) */
  --paper-alt: #241620;         /* 보조 다크 섹션 배경 */
  --gold: #3FC7DD;              /* 액센트 — PRC는 골드, 여기는 시안 */
  --gold-light: #8FE3EF;
  --gold-dim: rgba(63, 199, 221, .14);
  --white: #2E1B28;             /* 카드 표면색 (다크 테마이므로 화이트 대신 서피스톤) */
  --muted: #B08A98;
  --line: rgba(243, 222, 231, .08);

  --radius: 2px;                /* PRC와 동일 — 각진 미니멀 */
  --radius-sm: 2px;
  --radius-lg: 2px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .35);
  --shadow-md: 0 12px 48px rgba(0, 0, 0, .45);
  --shadow-gold: 0 2px 12px rgba(63, 199, 221, .28);

  --font-display: 'Playfair Display', 'Pretendard Variable', serif;
  --font-body: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; word-break: keep-all; overflow-wrap: break-word; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--paper);
  background: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.28; margin: 0 0 14px; color: var(--paper); }
p { margin: 0 0 14px; color: var(--muted); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── 버튼 ─────────────────────────────────────────────── */
.btn-gold, .btn-outline, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-weight: 600;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(63,199,221,.40); }
.btn-outline { border: 1.5px solid var(--paper); color: var(--paper); }
.btn-outline:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--paper); background: rgba(243,222,231,.04); }
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }

/* ── 헤더 ─────────────────────────────────────────────── */
#site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(27, 15, 20, .88);
  backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 38px; height: 38px; border-radius: 50%; }
.logo-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-en { font-size: .62rem; letter-spacing: .14em; color: var(--gold); font-weight: 700; }
.logo-name { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--paper); }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a:not(.nav-cta) { position: relative; font-weight: 500; font-size: .94rem; padding: 4px 0; color: var(--paper); }
.header-nav a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold);
  transition: width .3s cubic-bezier(.4,0,.2,1);
}
.header-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: var(--ink);
  padding: 11px 20px; border-radius: var(--radius-sm); font-weight: 600; font-size: .9rem;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--paper); transition: transform .3s ease, opacity .3s ease; }

.overlay-menu {
  position: fixed; inset: 0; background: var(--ink); color: var(--paper); z-index: 200;
  display: flex; flex-direction: column; padding: 26px 24px;
  transform: translateY(-100%); transition: transform .5s cubic-bezier(.77,0,.175,1);
}
.overlay-menu.open { transform: translateY(0); }
.overlay-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.overlay-close { background: none; border: 0; color: var(--paper); cursor: pointer; }
.overlay-nav { display: flex; flex-direction: column; gap: 4px; }
.overlay-nav a { font-family: var(--font-display); font-size: 1.7rem; padding: 14px 0; border-bottom: 1px solid var(--line); transition: color .25s ease, padding-left .25s ease; }
.overlay-nav a:hover { color: var(--gold-light); padding-left: 10px; }
.overlay-cta { margin-top: auto; }

/* ── PG-HERO (PRC 기법: 풀스크린+패럴랙스+아웃라인텍스트+배지펄스) ── */
.pg-hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.pg-hero-bg { position: absolute; inset: -8% -8% -8% -8%; z-index: 0; will-change: transform; }
.pg-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.06); }
.pg-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(108deg, rgba(27,15,20,.94) 0%, rgba(27,15,20,.55) 55%, rgba(27,15,20,.30) 100%); }
.pg-hero-inner { position: relative; z-index: 2; padding: 0 24px 64px; max-width: var(--container); margin: 0 auto; width: 100%; }
.pg-hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700; letter-spacing: .1em; color: var(--gold-light); margin-bottom: 22px; }
.pg-hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: badgePulse 2.4s ease-in-out infinite; }
@keyframes badgePulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .3; transform: scale(.6); } }
.pg-hero h1 { font-size: clamp(2.6rem, 9vw, 6.4rem); margin-bottom: 20px; letter-spacing: -.01em; }
.pg-hero h1 .outline { color: var(--gold-light); }
.pg-hero-sub { color: rgba(243,222,231,.72); max-width: 52ch; font-size: 1.08rem; margin-bottom: 34px; }
.pg-hero-foot { display: flex; flex-direction: column; gap: 24px; }
.pg-hero-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.pg-hero-stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--paper); }
.pg-hero-stat span { font-size: .8rem; color: var(--muted); }
.pg-scroll-hint { position: absolute; right: 28px; bottom: 28px; z-index: 2; width: 1px; height: 60px; background: var(--line); overflow: hidden; opacity: 0; animation: scrollAppear 1s ease 1.8s forwards; }
.pg-scroll-hint::after { content: ''; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: var(--gold); animation: scrollRun 2s ease-in-out 2s infinite; }
@keyframes scrollAppear { to { opacity: 1; } }
@keyframes scrollRun { 0% { top: -100%; } 100% { top: 100%; } }

/* ── PG-TRUST (세리프 고스트넘버 + 마퀴바) ─────────────── */
.pg-trust { padding: 84px 0 0; text-align: center; }
.pg-trust-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 70px; }
.pg-trust-item { position: relative; }
.pg-trust-num { font-family: Georgia, serif; font-size: 5.5rem; color: rgba(63,199,221,.16); line-height: 1; margin-bottom: -20px; }
.pg-trust-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.pg-trust-item p { font-size: .92rem; max-width: 34ch; margin: 0 auto; }
.pg-marquee-bar { height: 3.5rem; background: var(--gold); overflow: hidden; display: flex; align-items: center; }
.pg-marquee-track { display: flex; width: max-content; gap: 40px; animation: pgMarquee 22s linear infinite; }
@keyframes pgMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pg-marquee-track span { color: var(--ink); font-weight: 700; font-size: .95rem; white-space: nowrap; }

/* ── PG-SERVICES (리스트 로우형) ────────────────────────── */
.pg-services { padding: 84px 0; }
.pg-svc-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.pg-svc-row { display: flex; flex-direction: column; gap: 6px; padding: 26px 4px; border-bottom: 1px solid var(--line); transition: background .2s ease, padding-left .2s ease; }
.pg-svc-row:hover { background: rgba(63,199,221,.06); padding-left: 14px; }
.pg-svc-row-top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.pg-svc-row h3 { margin: 0; font-size: 1.3rem; }
.pg-svc-row .pg-svc-num { font-family: var(--font-display); color: var(--gold); font-size: .9rem; }
.pg-svc-row p { margin: 0; max-width: 60ch; }

/* ── PG-CARS (그리드 갤러리) ────────────────────────────── */
.pg-cars { padding: 84px 0; }
.pg-car-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.pg-car-item { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.pg-car-item img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: all .5s ease; }
.pg-car-item:hover img { opacity: 1; transform: scale(1.08); }
.pg-car-cap { position: absolute; left: 0; bottom: 0; right: 0; padding: 14px 16px; background: linear-gradient(0deg, rgba(27,15,20,.85), transparent); font-size: .82rem; color: var(--paper); }
.pg-car-more { display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); font-weight: 600; transition: all .2s ease; }
.pg-car-more:hover { border-color: var(--gold); background: rgba(63,199,221,.08); }

/* ── PG-ABOUT (스플릿 + 슬라이드쇼) ─────────────────────── */
.pg-about { padding: 84px 0; }
.pg-about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.pg-about-slides { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pg-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease; }
.pg-slide.active { opacity: 1; }
.pg-slide img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) saturate(.85); }

/* ── PG-REGIONS (촘촘한 그리드) ─────────────────────────── */
.pg-regions { padding: 84px 0; }
.pg-region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.pg-region-chip { display: flex; align-items: center; justify-content: center; padding: 20px 10px; border: 1px solid var(--line); text-align: center; font-size: .9rem; font-weight: 600; transition: all .2s ease; }
.pg-region-chip:hover { border-color: var(--gold); background: rgba(63,199,221,.08); color: var(--gold-light); }
.pg-region-chip-more { border-color: var(--gold); color: var(--gold); border-style: dashed; }

/* ── PG-FAQ, PG-CTA ─────────────────────────────────────── */
.pg-faq { padding: 84px 0; }
.pg-cta { padding: 90px 0; }
.pg-cta-panel {
  position: relative; overflow: hidden; text-align: center;
  background: var(--ink-2); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: 12px;
  padding: 76px 32px; box-shadow: var(--shadow-md);
}
.pg-cta-kicker { position: relative; z-index: 1; color: var(--gold); font-weight: 700; font-size: .8rem; letter-spacing: .12em; margin-bottom: 18px; }
.pg-cta-heading { position: relative; z-index: 1; font-size: clamp(1.9rem, 4vw, 3.1rem); margin-bottom: 20px; }
.pg-cta-heading .gold { color: var(--gold-light); }
.pg-cta-desc { position: relative; z-index: 1; max-width: 520px; margin: 0 auto 38px; color: rgba(243,222,231,.7); }
.pg-cta-btn-row { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pg-cta-badges { position: relative; z-index: 1; display: flex; gap: 40px; justify-content: center; margin-top: 46px; padding-top: 38px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.pg-cta-badges b { display: block; font-family: var(--font-display); color: var(--gold); font-size: 1.6rem; }
.pg-cta-badges span { display: block; font-size: .78rem; color: var(--muted); margin-top: 4px; }
.pg-cta-info { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 8px; margin-top: 26px; color: var(--muted); font-size: .84rem; }

/* ── 히어로(서비스 데이터형, 구 .hero) — 홈에서는 미사용, 하위호환 ── */
.hero { padding: 76px 0 60px; min-height: 86svh; position: relative; display: flex; align-items: center; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; width: 100%; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 700; font-size: .8rem; letter-spacing: .1em; margin-bottom: 18px; }
.hero-kicker::before { content: ''; width: 26px; height: 1.5px; background: var(--gold); }
.hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.9rem); }
.hero-sub { font-size: 1.08rem; color: var(--muted); max-width: 46ch; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-stats { display: flex; gap: 34px; margin-top: 44px; }
.hero-stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--paper); }
.hero-stat span { font-size: .82rem; color: var(--muted); }
.hero-visual { position: relative; }
.hero-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); aspect-ratio: 4/5; }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform 8s cubic-bezier(.4,0,.2,1); }
.hero.reveal-in .hero-frame img { transform: scale(1.07); }
.hero-badge { position: absolute; bottom: -22px; left: -22px; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; animation: floatY 5s ease-in-out infinite; }
.hero-badge b { font-family: var(--font-display); color: var(--gold); font-size: 1.3rem; }
@keyframes floatY { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }

/* ── 서브페이지 히어로 (서비스/지역/가이드 공통) ─────────── */
.page-hero { position: relative; padding: 64px 0 0; background: var(--ink); color: var(--paper); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(27,15,20,.94), rgba(27,15,20,.72)); z-index: 1; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.page-hero-inner { position: relative; z-index: 2; padding-bottom: 54px; }
.page-hero .breadcrumb a, .page-hero .breadcrumb span { color: rgba(243,222,231,.6); }
.page-hero .breadcrumb [aria-current] { color: var(--paper); }
.page-hero h1 { color: var(--paper); font-size: clamp(2.1rem, 4vw, 3.2rem); }
.page-hero-sub { color: rgba(243,222,231,.7); max-width: 54ch; font-size: 1.04rem; }
.page-hero .spec-strip { border-top-color: var(--line); }
.page-hero .spec-item { border-right-color: var(--line); }
.page-hero .spec-label { color: rgba(243,222,231,.55); }

/* ── 마퀴(서브페이지) ───────────────────────────────────── */
.marquee-wrap { overflow: hidden; background: var(--paper-alt); padding: 16px 0; }
.marquee-track { display: flex; width: max-content; gap: 34px; animation: marqueeScroll 28s linear infinite; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.m-item { color: var(--paper); font-weight: 600; font-size: .92rem; white-space: nowrap; }
.m-sep { color: var(--gold); }

/* ── 섹션 공통 ────────────────────────────────────────── */
.section { padding: 84px 0; }
.section-sm { padding: 52px 0; }
.bg-alt { background: var(--paper-alt); }
.bg-dark { background: var(--ink-2); color: var(--paper); }
.bg-dark h2, .bg-dark p { color: var(--paper); }
.bg-dark .sec-label { color: var(--gold-light); }
.sec-header { max-width: 640px; margin: 0 0 44px; }
.sec-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.sec-label { color: var(--gold); font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.sec-header h2 { font-size: clamp(1.7rem, 2.6vw, 2.5rem); }

/* reveal-on-scroll (PRC .gs 동일 동작: threshold .12 / translateY 28px / .7s ease) */
.reveal, .stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in, .stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger > *:nth-child(1) { transition-delay: .08s; }
.stagger > *:nth-child(2) { transition-delay: .16s; }
.stagger > *:nth-child(3) { transition-delay: .24s; }
.stagger > *:nth-child(4) { transition-delay: .32s; }
.stagger > *:nth-child(5) { transition-delay: .40s; }
.stagger > *:nth-child(6) { transition-delay: .48s; }

/* ── 카드 그리드 ──────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); transition: all .3s cubic-bezier(.4,0,.2,1); }
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); margin-bottom: 10px; }
.bg-dark .card { background: var(--paper-alt); box-shadow: none; }
.card ul { list-style: none; padding: 0; margin: 10px 0 0; }
.card ul li { padding: 5px 0 5px 20px; position: relative; font-size: .92rem; color: var(--muted); }
.card ul li::before { content: '+'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.card .cons-label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 14px; display: block; }
.card .cons-label ~ ul li::before { content: '−'; color: var(--muted); }

/* ── 프로세스 ─────────────────────────────────────────── */
.proc-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.proc-step { position: relative; padding: 26px 18px; border-radius: var(--radius); background: var(--paper-alt); border: 1px solid var(--line); }
.proc-step .ps-num { font-family: var(--font-display); color: var(--gold-light); font-size: 1.6rem; }
.proc-step h3 { font-size: 1.02rem; color: var(--paper); margin: 10px 0 8px; }
.proc-step p { color: rgba(243,222,231,.65); font-size: .9rem; margin: 0; }

/* ── 갤러리 ───────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--ink-2); border: 1px solid var(--line); }
.gallery-item img { aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-cap { padding: 12px 16px; font-size: .88rem; color: var(--muted); }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-2); overflow: hidden; transition: box-shadow .2s ease; }
.faq-item.open { box-shadow: var(--shadow); }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; background: none; border: 0; text-align: left; font-weight: 600; font-size: 1rem; cursor: pointer; color: var(--paper); }
.faq-icon { font-family: var(--font-display); color: var(--gold); font-size: 1.3rem; transition: transform .3s ease, background .2s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 340px; }
.faq-a p { padding: 0 24px 20px; margin: 0; color: var(--muted); }

/* ── 관련링크 ─────────────────────────────────────────── */
.related-row { display: flex; gap: 14px; flex-wrap: wrap; }
.related-link { display: inline-flex; align-items: center; gap: 8px; background: var(--ink-2); border: 1px solid var(--line); border-radius: 999px; padding: 12px 22px; font-weight: 600; transition: all .25s ease; }
.related-link:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-2px); }

/* ── 푸터 ─────────────────────────────────────────────── */
#site-footer { background: var(--paper-alt); color: rgba(243,222,231,.82); border-top: 1px solid var(--line); }
.footer-col h4 { color: var(--paper); font-family: var(--font-body); font-size: .92rem; margin-bottom: 14px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .9rem; opacity: .82; transition: opacity .2s ease, color .2s ease; }
.footer-col a:hover { opacity: 1; color: var(--gold-light); }
.footer-quicklinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 320px; }
.footer-quicklinks li { margin-bottom: 0; }
.footer-quicklinks a { font-size: .9rem; opacity: .82; transition: opacity .2s ease, color .2s ease; }
.footer-quicklinks a:hover { opacity: 1; color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--line); padding: 24px 0; font-size: .82rem; opacity: .68; display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer-legal { padding: 18px 0 40px; font-size: .78rem; opacity: .5; line-height: 1.7; }

/* ── 플로팅 CTA ───────────────────────────────────────── */
.floating-cta { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 10px; }
.float-btn { position: relative; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); background: var(--ink-2); border: 1px solid var(--line); color: var(--paper); cursor: pointer; transition: transform .25s ease; }
.float-btn.primary { background: var(--gold); color: var(--ink); border: 0; box-shadow: 0 4px 20px rgba(63,199,221,.45); }
.float-btn.primary:hover { box-shadow: 0 8px 28px rgba(63,199,221,.55); }
.float-btn:hover { transform: scale(1.08); }
.float-btn.primary::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 1.5px solid var(--gold); animation: pulseRing 2.4s ease-out infinite; }
@keyframes pulseRing { 0% { transform: scale(.9); opacity: .6; } 80%,100% { transform: scale(1.4); opacity: 0; } }

/* ── 지역/AEO 페이지 보조 ────────────────────────────── */
.spec-strip { display: flex; gap: 0; margin-top: 40px; border-top: 1px solid var(--line); }
.spec-item { flex: 1; padding: 18px 0; border-right: 1px solid var(--line); text-align: center; }
.spec-item:last-child { border-right: 0; }
.spec-label { display: block; font-size: .76rem; color: var(--muted); margin-bottom: 4px; }
.spec-val { font-family: var(--font-display); font-weight: 700; color: var(--gold); }

.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin-top: 56px; display: flex; align-items: center; gap: 14px; }
.article-body h3 { margin-top: 26px; font-size: 1.2rem; }
.article-body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.article-body li { margin-bottom: 6px; color: var(--muted); }
.g-num { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--gold-dim); color: var(--gold); font-family: var(--font-display); font-size: .95rem; font-weight: 700; }

/* 핵심 요약 박스 */
.tldr-box { position: relative; background: var(--ink-2); border: 1px solid var(--gold); border-radius: var(--radius); padding: 28px 30px; margin-bottom: 40px; }
.tldr-box h2 { margin-top: 0 !important; font-size: 1.15rem; }
.tldr-box ul { list-style: none; padding: 0; margin: 0; }
.tldr-box li { position: relative; padding: 8px 0 8px 28px; color: var(--paper); border-bottom: 1px dashed var(--line); }
.tldr-box li:last-child { border-bottom: 0; }
.tldr-box li::before { content: '✓'; position: absolute; left: 0; top: 8px; color: var(--gold); font-weight: 700; }

/* 비교표 */
.table-scroll { overflow-x: auto; margin: 20px 0 24px; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: .92rem; }
.compare-table th, .compare-table td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; }
.compare-table th { background: var(--paper-alt); color: var(--gold); font-weight: 700; }
.compare-table td { color: var(--muted); }
.compare-table tr.highlight td { background: rgba(63,199,221,.06); color: var(--paper); }
.compare-table tr.highlight td:first-child { color: var(--gold); font-weight: 700; }

/* 체크리스트 */
.check-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 24px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 18px; }
.check-item .box { flex-shrink: 0; width: 20px; height: 20px; border: 1.5px solid var(--gold); border-radius: 4px; margin-top: 2px; }
.check-item p { margin: 0; color: var(--paper); font-size: .92rem; }

/* 인라인 배너 */
.inline-banner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: var(--paper-alt); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 26px 30px; margin: 40px 0; }
.inline-banner p { margin: 0; color: var(--paper); font-weight: 600; }
.inline-banner .btn-gold { flex-shrink: 0; }
.toc { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow); margin-bottom: 40px; }
.toc h2 { font-size: 1.05rem; margin-bottom: 12px; }
.toc a { display: block; padding: 6px 0; color: var(--muted); border-bottom: 1px dashed var(--line); font-size: .93rem; }
.toc a:hover { color: var(--gold); }

/* ── 가이드(AEO/GEO) 페이지 전용 ─────────────────────── */
.read-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); width: 0; z-index: 300; transition: width .1s linear; }
.guide-stat-row { display: flex; gap: 26px; flex-wrap: wrap; margin: 30px 0 0; }
.guide-stat { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 24px; box-shadow: var(--shadow); flex: 1; min-width: 150px; text-align: center; }
.guide-stat b { display: block; font-family: var(--font-display); color: var(--gold); font-size: 1.7rem; }
.guide-stat span { font-size: .8rem; color: var(--muted); }
.article-body blockquote { border-left: 3px solid var(--gold); padding: 4px 20px; margin: 24px 0; color: var(--muted); font-style: italic; background: var(--paper-alt); border-radius: 0 var(--radius) var(--radius) 0; }
.qa-block { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow); margin-bottom: 16px; }
.qa-block h3 { font-size: 1.05rem; color: var(--gold); margin-bottom: 8px; }
.qa-block p { margin: 0; }

.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .84rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current] { color: var(--paper); font-weight: 600; }

.noise { position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .03; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 3px 3px; }

/* ── 반응형 ───────────────────────────────────────────── */
@media (min-width: 768px) {
  .pg-hero-foot { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .pg-trust-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 640px) {
  .pg-svc-row { flex-direction: row; align-items: baseline; justify-content: space-between; }
}
@media (min-width: 480px) {
  .pg-region-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .pg-car-grid { grid-template-columns: repeat(4, 1fr); }
  .pg-about-grid { grid-template-columns: 5fr 7fr; }
}
@media (min-width: 768px) {
  .pg-region-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 1120px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .proc-steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 40px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .grid-3, .grid-2, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .grid-3, .grid-2, .gallery-grid, .proc-steps { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  .pg-car-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
