/* ============================================================
   ULR — 자신만만 렌터카연구소 | 중고차장기렌트
   TrustDrive Premium — 딥 네이비 #1a2e3b + 앰버 골드 #f0a500
   v2.0 — LCC-level editorial rebuild
============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; word-break: keep-all; overflow-wrap: break-word; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Pretendard Variable','Pretendard',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size: 16px; font-weight: 400;
  background: #fff; color: #0f1923;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }
::selection { background: #f0a500; color: #fff; }
::-webkit-scrollbar { width: 0; }

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --navy:    #1a2e3b;
  --navy-d:  #0e1c26;
  --navy-m:  #152330;
  --amber:   #f0a500;
  --amber-d: #d4920a;
  --cream:   #FAF9F5;
  --soft:    #f0f7fb;
  --ink:     #0f1923;
  --ink-mid: #3d5166;
  --ink-low: #7a96aa;
  --line:    rgba(26,46,59,0.12);
  --line-lt: rgba(26,46,59,0.06);
  --radius:  32px;
  --ease:    cubic-bezier(.22,1,.36,1);
}

/* ── UTILITY ──────────────────────────────────────────────── */
.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; }
.ulr-container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px,5vw,80px); }

/* ── GSAP REVEAL BASE ─────────────────────────────────────── */
.gs_reveal { opacity: 0; will-change: transform, opacity; }
.gs_reveal.is-visible { opacity: 1; }
.gs_stagger .gs_stagger_item { opacity: 0; will-change: transform, opacity; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.ulr-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: 15px; font-weight: 600;
  border-radius: 999px; transition: all .25s var(--ease);
  letter-spacing: -.01em; white-space: nowrap;
}
.ulr-btn--amber { background: var(--amber); color: #fff; }
.ulr-btn--amber:hover { background: var(--amber-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,165,0,.35); }
.ulr-btn--navy { background: var(--navy); color: #fff; }
.ulr-btn--navy:hover { background: var(--navy-d); }
.ulr-btn--ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.ulr-btn--ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.ulr-btn--ghost-light { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.ulr-btn--ghost-light:hover { border-color: var(--navy); }
.ulr-btn--lg { padding: 18px 36px; font-size: 16px; }

/* ── NAV (Floating Capsule) ───────────────────────────────── */
.site-nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: min(720px, calc(100% - 40px));
  background: var(--navy); border-radius: 999px;
  padding: 12px 20px; display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 4px 32px rgba(14,28,38,.3), 0 1px 0 rgba(255,255,255,.06);
  transition: box-shadow .3s;
}
.site-nav__logo { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: -.02em; white-space: nowrap; }
.site-nav__menu { display: flex; gap: 4px; }
.site-nav__menu a { font-size: 13px; color: rgba(255,255,255,.7); padding: 6px 12px; border-radius: 999px; transition: all .2s; }
.site-nav__menu a:hover { color: #fff; background: rgba(255,255,255,.1); }
.site-nav__cta { background: var(--amber); color: #fff !important; border-radius: 999px; }
.site-nav__cta:hover { background: var(--amber-d) !important; }
.site-nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 11px; cursor: pointer; } /* 44px touch target */
.site-nav__hamburger span { width: 22px; height: 1.5px; background: #fff; display: block; transition: all .3s; }
@media (max-width: 680px) {
  .site-nav__menu { display: none; }
  .site-nav__hamburger { display: flex; }
}
/* Mobile overlay */
.site-nav__overlay {
  position: fixed; inset: 0; z-index: 999;
  background: var(--navy-d); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  transform: translateY(-100%); transition: transform .6s var(--ease);
}
.site-nav__overlay.is-open { transform: translateY(0); }
.site-nav__overlay a { font-size: clamp(24px,6vw,40px); font-weight: 700; color: rgba(255,255,255,.8); }
.site-nav__overlay a:hover { color: var(--amber); }
.site-nav__overlay-close { position: absolute; top: 28px; right: 28px; font-size: 28px; color: #fff; }

/* ── HERO ─────────────────────────────────────────────────── */
.ulr-hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(48px,8vw,96px);
  padding-top: 120px; overflow: hidden;
}
.ulr-hero__watermark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; user-select: none; overflow: hidden;
  font-family: 'Manrope','Pretendard Variable',sans-serif;
  font-size: clamp(80px,18vw,260px); font-weight: 900;
  color: rgba(255,255,255,.04); letter-spacing: -.04em;
  line-height: 1; white-space: nowrap; z-index: 1;
}
.ulr-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.ulr-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.ulr-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,28,38,.92) 45%, rgba(14,28,38,.4) 100%);
}
.ulr-hero__inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; width: 100%;
  padding: 0 clamp(20px,5vw,80px);
}
.ulr-hero__badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px;
  font-family: 'Manrope',sans-serif; font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
}
.ulr-hero__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 10px var(--amber); animation: pulse-dot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot { 0%,100% { opacity:1;transform:scale(1); } 50% { opacity:.5;transform:scale(1.3); } }
.ulr-hero__h1 {
  font-family: 'Manrope','Pretendard Variable',sans-serif;
  font-size: clamp(52px,12vw,160px); font-weight: 900;
  line-height: 1; letter-spacing: -.04em; color: #fff;
  margin-bottom: 16px;
}
.ulr-hero__tagline {
  font-size: clamp(22px,4vw,52px); font-weight: 700;
  line-height: 1.2; letter-spacing: -.03em; color: rgba(255,255,255,.85);
  margin-bottom: clamp(32px,5vw,60px);
}
.ulr-hero__tagline em { font-style: normal; color: var(--amber); }
.ulr-hero__bottom {
  display: flex; flex-direction: column; gap: 24px;
  border-top: 1px solid rgba(255,255,255,.15); padding-top: clamp(20px,3vw,32px);
}
@media (min-width: 768px) {
  .ulr-hero__bottom { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.ulr-hero__sub { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 480px; }
.ulr-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ulr-hero__stats {
  display: flex; gap: clamp(24px,4vw,48px);
  margin-top: clamp(32px,4vw,48px); padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.ulr-hero__stat { display: flex; flex-direction: column; gap: 4px; }
.ulr-hero__stat-num {
  font-family: 'Manrope',sans-serif; font-size: clamp(20px,3.5vw,36px);
  font-weight: 800; color: var(--amber); line-height: 1; letter-spacing: -.03em;
}
.ulr-hero__stat-num small { font-size: .55em; }
.ulr-hero__stat-cap { font-size: 12px; color: rgba(255,255,255,.5); }

/* ── MARQUEE ──────────────────────────────────────────────── */
.ulr-marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--cream); padding: 18px 0;
}
.ulr-marquee-track {
  display: inline-flex; gap: 0; white-space: nowrap;
  animation: ulr-marquee 32s linear infinite;
  will-change: transform;
}
@keyframes ulr-marquee { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
.ulr-marquee-item {
  display: inline-block; padding: 0 32px;
  font-size: clamp(14px,2vw,20px); font-weight: 600;
  color: var(--ink-mid); letter-spacing: -.01em;
}
.ulr-marquee-sep { color: var(--amber); font-size: 14px; line-height: 1; display: inline-flex; align-items: center; }

/* ── SECTIONS ─────────────────────────────────────────────── */
.ulr-section { padding: clamp(64px,10vw,140px) 0; }
.ulr-section--light { background: #fff; }
.ulr-section--soft  { background: var(--cream); }
.ulr-section--dark  { background: var(--navy); color: #fff; }

.ulr-section-head { margin-bottom: clamp(40px,6vw,80px); }
.ulr-section-label {
  font-family: 'Manrope',sans-serif; font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ink-low); margin-bottom: 16px;
}
.ulr-section--dark .ulr-section-label { color: rgba(255,255,255,.4); }
.ulr-section-title {
  font-family: 'Manrope','Pretendard Variable',sans-serif;
  font-size: clamp(32px,6vw,80px); font-weight: 800;
  line-height: 1.1; letter-spacing: -.04em; color: var(--ink);
  margin-bottom: 20px;
}
.ulr-section--dark .ulr-section-title { color: #fff; }
.ulr-section-title em { font-style: normal; color: var(--amber); }
.ulr-section-sub { font-size: 16px; color: var(--ink-low); line-height: 1.7; }
.ulr-section--dark .ulr-section-sub { color: rgba(255,255,255,.5); }

/* ── BIG COPY ─────────────────────────────────────────────── */
.ulr-big-copy {
  font-size: clamp(22px,4vw,52px); font-weight: 700;
  line-height: 1.35; letter-spacing: -.03em; color: var(--ink);
  max-width: 720px; margin-bottom: clamp(48px,7vw,96px);
}
.ulr-big-copy em { font-style: normal; color: var(--amber); }

/* ── VALUE CARDS ──────────────────────────────────────────── */
.ulr-value-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 0; border-top: 1px solid var(--line);
  margin-bottom: clamp(48px,7vw,96px);
}
@media (min-width: 768px) { .ulr-value-grid { grid-template-columns: repeat(3,1fr); } }
.ulr-value-card {
  padding: clamp(28px,4vw,48px) 0; border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .ulr-value-card { padding: clamp(28px,4vw,48px) clamp(24px,3vw,40px); border-bottom: none; border-right: 1px solid var(--line); }
  .ulr-value-card:last-child { border-right: none; }
}
.ulr-value-card__num {
  font-family: 'Manrope',sans-serif; font-size: clamp(36px,5vw,56px);
  font-weight: 900; color: var(--amber); letter-spacing: -.04em;
  line-height: 1; margin-bottom: 20px;
}
.ulr-value-card__title {
  font-size: clamp(18px,2.5vw,24px); font-weight: 700;
  line-height: 1.3; color: var(--ink); margin-bottom: 12px;
}
.ulr-value-card__desc { font-size: 14px; color: var(--ink-low); line-height: 1.7; }

/* ── AUTHORITY ────────────────────────────────────────────── */
.ulr-authority {
  background: var(--navy); color: #fff;
  padding: clamp(32px,5vw,60px) clamp(28px,5vw,60px);
}
.ulr-authority__label {
  font-family: 'Manrope',sans-serif; font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px;
}
.ulr-authority__quote {
  font-size: clamp(16px,2.5vw,26px); font-weight: 600;
  line-height: 1.6; max-width: 680px; margin-bottom: 24px;
}
.ulr-authority__quote strong { color: var(--amber); }
.ulr-authority__points {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  font-size: 13px; color: rgba(255,255,255,.5);
}

/* ── CAR MODEL CARD GRID ──────────────────────────────────── */
.ulr-car-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 0;
}
.ulr-car-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.ulr-car-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .ulr-car-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ulr-car-grid--3,
  .ulr-car-grid--2 { grid-template-columns: 1fr; }
}

.ulr-car-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: calc(var(--radius) * 1.2);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.ulr-car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  border-color: rgba(240,165,0,.35);
}

/* 이미지 영역 */
.ulr-car-card__img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: rgba(255,255,255,.03);
}
.ulr-car-card__img--slim {
  aspect-ratio: 16/9;
}
.ulr-car-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.ulr-car-card:hover .ulr-car-card__img img {
  transform: scale(1.06);
}
.ulr-car-card__tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  color: rgba(255,255,255,.75); font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
}

/* 텍스트/가격 영역 */
.ulr-car-card__body {
  padding: 20px 22px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.ulr-car-card__en {
  font-family: 'Manrope', sans-serif;
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--amber); display: block; margin-bottom: 4px;
}
.ulr-car-card__name {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 22px; font-weight: 800; color: #fff;
  margin: 0 0 14px; letter-spacing: -.02em;
}
.ulr-car-card--slim .ulr-car-card__name {
  font-size: 20px;
}
.ulr-car-card__price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ulr-car-card__price-label {
  font-size: 12px; color: rgba(255,255,255,.45); white-space: nowrap;
}
.ulr-car-card__price {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 900; color: var(--amber);
  letter-spacing: -.04em; line-height: 1;
}
.ulr-car-card__desc {
  font-size: 13px; color: rgba(255,255,255,.55);
  line-height: 1.65; margin-bottom: 18px; flex: 1;
}
.ulr-btn--full { width: 100%; justify-content: center; }

.ulr-cars-more { margin-top: 40px; text-align: center; }

/* 기존 탭 CSS (하위 호환) */
.ulr-car-tabs { display:none; }
.ulr-car-panels .ulr-car-panel { display: none; }
.ulr-car-panels .ulr-car-panel.is-active { display: grid; }

/* ── COMPARE TABLE ────────────────────────────────────────── */
.ulr-compare { border: 1px solid var(--line); margin-bottom: 32px; }
.ulr-compare__head {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  background: var(--cream); border-bottom: 1px solid var(--line);
  padding: 0;
}
@media (max-width: 600px) { .ulr-compare__head { display: none; } }
.ulr-compare__col {
  padding: 16px 20px; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mid);
}
.ulr-compare__col--used { color: var(--navy); border-left: 2px solid var(--amber); }
.ulr-compare__row {
  display: grid; grid-template-columns: 1fr;
  border-bottom: 1px solid var(--line-lt);
}
@media (min-width: 600px) { .ulr-compare__row { grid-template-columns: 1.2fr 1fr 1fr; } }
.ulr-compare__item {
  padding: clamp(14px,2vw,20px) clamp(16px,2vw,24px);
  font-size: 14px; line-height: 1.5;
}
.ulr-compare__item--label {
  font-weight: 700; color: var(--ink); border-right: 1px solid var(--line-lt);
}
.ulr-compare__item--new { color: var(--ink-low); }
.ulr-compare__item--used {
  color: var(--navy); font-weight: 600;
  border-left: 2px solid var(--amber); background: rgba(240,165,0,.04);
}
@media (max-width: 600px) {
  .ulr-compare__item--label::before { content: '구분: '; font-weight: 400; color: var(--ink-low); }
  .ulr-compare__item--new::before { content: '신차: '; font-size: 11px; color: var(--ink-low); }
  .ulr-compare__item--used::before { content: '✓ 중고차: '; font-size: 11px; color: var(--amber); }
}
.ulr-badge-rec {
  display: inline-block; margin-left: 8px; padding: 2px 8px;
  background: var(--amber); color: #fff; font-size: 11px; border-radius: 4px;
}
.ulr-compare__cta { text-align: center; }

/* ── IMAGE MARQUEE ────────────────────────────────────────── */
.ulr-img-marquee-wrap { overflow: hidden; }
.ulr-img-marquee-track {
  display: flex; gap: 16px;
  animation: ulr-img-marquee 40s linear infinite;
  will-change: transform;
}
@keyframes ulr-img-marquee { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
.ulr-img-marquee-item { flex-shrink: 0; width: clamp(220px,28vw,360px); height: clamp(146px,19vw,240px); overflow: hidden; }
.ulr-img-marquee-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ulr-img-marquee-item:hover img { transform: scale(1.06); }

/* ── CTA SPLIT ────────────────────────────────────────────── */
.ulr-cta-split {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(48px,7vw,96px);
}
@media (min-width: 900px) {
  .ulr-cta-split { grid-template-columns: 1fr 1fr; align-items: start; }
  .ulr-cta-split__copy { position: sticky; top: 120px; }
}
.ulr-cta-split__title {
  font-family: 'Manrope','Pretendard Variable',sans-serif;
  font-size: clamp(28px,5vw,60px); font-weight: 800;
  line-height: 1.15; letter-spacing: -.04em; color: var(--ink);
  margin: 16px 0 20px;
}
.ulr-cta-split__sub { font-size: 16px; color: var(--ink-low); line-height: 1.7; margin-bottom: 32px; }
.ulr-cta-note {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 12px; color: var(--ink-low); margin-top: 14px; line-height: 1.5;
}
.ulr-cta-note svg { flex-shrink: 0; margin-top: 1px; }
.ulr-cta-split__list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.ulr-cta-point {
  display: flex; align-items: flex-start; gap: 16px;
  padding: clamp(20px,3vw,32px) 0; border-bottom: 1px solid var(--line-lt);
}
.ulr-cta-point svg { flex-shrink: 0; color: var(--ink-low); margin-top: 4px; transition: color .2s, transform .2s; }
.ulr-cta-point:hover svg { color: var(--amber); transform: translateX(4px); }
.ulr-cta-point__num {
  font-family: 'Manrope',sans-serif; font-size: 12px; font-weight: 600;
  color: var(--ink-low); min-width: 28px; flex-shrink: 0; margin-top: 3px;
}
.ulr-cta-point__body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.ulr-cta-point__body strong { font-size: 15px; font-weight: 700; color: var(--ink); }
.ulr-cta-point__body span { font-size: 13px; color: var(--ink-low); }

/* ── HUB GRID ─────────────────────────────────────────────── */
.ulr-hub-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .ulr-hub-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .ulr-hub-grid { grid-template-columns: repeat(3,1fr); } }
.ulr-hub-card {
  display: block; border: 1px solid var(--line); padding: clamp(24px,3vw,36px);
  transition: border-color .2s, transform .2s; position: relative;
}
.ulr-hub-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.ulr-hub-card__tag {
  font-family: 'Manrope',sans-serif; font-size: 10px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--ink-low); margin-bottom: 12px;
  transition: color .2s;
}
.ulr-hub-card:hover .ulr-hub-card__tag { color: var(--amber); }
.ulr-hub-card__title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.ulr-hub-card__desc { font-size: 13px; color: var(--ink-low); line-height: 1.6; margin-bottom: 24px; }
.ulr-hub-card__arrow {
  font-size: 18px; color: var(--ink-low); transition: transform .2s, color .2s;
  display: inline-block;
}
.ulr-hub-card:hover .ulr-hub-card__arrow { transform: translateX(6px); color: var(--amber); }

/* ── FAQ ──────────────────────────────────────────────────── */
.ulr-faq-list { border-top: 1px solid var(--line); }
.ulr-faq-item { border-bottom: 1px solid var(--line-lt); }
.ulr-faq-q {
  width: 100%; display: flex; align-items: flex-start; gap: 20px;
  padding: clamp(20px,3vw,28px) 0; text-align: left; cursor: pointer;
}
.ulr-faq-q:hover .ulr-faq-q__text { color: var(--amber); }
.ulr-faq-num {
  font-family: 'Manrope',sans-serif; font-size: 12px; font-weight: 600;
  color: var(--ink-low); min-width: 32px; margin-top: 2px; flex-shrink: 0;
}
.ulr-faq-q__text { flex: 1; font-size: clamp(15px,2vw,18px); font-weight: 600; color: var(--ink); line-height: 1.4; transition: color .2s; }
.ulr-faq-icon {
  font-size: 20px; color: var(--ink-low); line-height: 1; transition: transform .3s var(--ease);
  flex-shrink: 0; margin-top: 1px;
}
.ulr-faq-item.is-open .ulr-faq-icon { transform: rotate(45deg); color: var(--amber); }
.ulr-faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.ulr-faq-item.is-open .ulr-faq-a { max-height: 400px; }
.ulr-faq-a__inner {
  padding: 0 0 clamp(20px,3vw,28px) 52px;
  font-size: 14px; color: var(--ink-mid); line-height: 1.8;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-d); color: rgba(255,255,255,.6);
  border-radius: 40px 40px 0 0;
  padding: clamp(48px,7vw,80px) clamp(20px,5vw,80px) 0;
  margin-top: clamp(40px,6vw,80px);
}

/* ── 3-col grid ── */
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1.6fr 1fr;
    gap: 48px 48px;
    align-items: start;
  }
}

/* ── Brand column ── */
.footer-brand__logo { margin-bottom: 14px; }
.footer-brand__name {
  font-family: 'Manrope','Pretendard Variable',sans-serif;
  font-size: 17px; font-weight: 800; color: #fff;
  letter-spacing: -.02em;
  display: inline-flex; align-items: center; gap: 9px;
}
.footer-brand__name::before {
  content: '';
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 10px rgba(240,165,0,.7);
  flex-shrink: 0;
}
.footer-brand__desc {
  font-size: 13px; line-height: 1.85;
  color: rgba(255,255,255,.45);
  margin: 14px 0 22px;
}
.footer-brand .ulr-btn {
  font-size: 13px; padding: 10px 22px;
}

/* ── Business info column ── */
.footer-info__title,
.footer-nav__title {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(240,165,0,.2);
}
.footer-info__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-info__item {
  display: grid; grid-template-columns: 44px 1fr; gap: 8px;
  font-size: 12.5px; line-height: 1.7;
}
.footer-info__label {
  color: rgba(255,255,255,.32); font-size: 11.5px;
  padding-top: 1px;
}
.footer-info__val { color: rgba(255,255,255,.72); }

/* ── Nav column ── */
.footer-nav__links {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-nav__links a {
  font-size: 13px; color: rgba(255,255,255,.5);
  text-decoration: none; transition: color .2s, padding-left .2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-nav__links a::before {
  content: '→'; font-size: 11px; color: var(--amber);
  transition: transform .2s;
}
.footer-nav__links a:hover {
  color: #fff; padding-left: 4px;
}
.footer-nav__links a:hover::before { transform: translateX(2px); }

/* ── Bottom bar ── */
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 8px;
}
.footer-bottom__copy {
  font-size: 12px; color: rgba(255,255,255,.28);
}
.footer-bottom__legal {
  display: flex; gap: 16px;
  font-size: 11.5px; color: rgba(255,255,255,.22);
}

/* ── Disclaimer ── */
.footer-disclaimer {
  background: rgba(0,0,0,.2);
  margin: 0 calc(-1 * clamp(20px,5vw,80px));
  padding: 20px clamp(20px,5vw,80px) 28px;
  font-size: 11px; line-height: 1.8;
  color: rgba(255,255,255,.18);
}
.footer-disclaimer p { margin: 0; }

/* ── STICKY CTA ───────────────────────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  display: flex; gap: 0;
  transform: translateY(100%); transition: transform .4s var(--ease);
  pointer-events: none;
}
.sticky-cta.is-visible { transform: translateY(0); pointer-events: all; }
.sticky-cta__btn {
  flex: 1; padding: 18px 16px; font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #fff; text-align: center;
}
.sticky-cta__btn--primary { background: var(--amber); }
.sticky-cta__btn--secondary { background: var(--navy); }
@media (min-width: 768px) {
  .sticky-cta { display: none; }
  /* 데스크탑 플로팅 pill */
  .floating-pill {
    position: fixed; bottom: 32px; right: 32px; z-index: 900;
    opacity: 0; transform: translateY(20px);
    transition: opacity .4s, transform .4s var(--ease);
    pointer-events: none;
  }
  .floating-pill.is-visible { opacity: 1; transform: translateY(0); pointer-events: all; }
  .floating-pill__btn {
    display: flex; align-items: center; gap: 10px;
    background: var(--amber); color: #fff;
    padding: 14px 24px; border-radius: 999px;
    font-size: 14px; font-weight: 700;
    box-shadow: 0 8px 32px rgba(240,165,0,.4);
    transition: transform .2s, box-shadow .2s;
  }
  .floating-pill__btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(240,165,0,.5); }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .ulr-hero__h1 { font-size: clamp(44px,14vw,88px); }
  .ulr-hero__stats { gap: 20px; }
}

/* ============================================================
   SUB-PAGE STYLES
============================================================ */

/* ── Page Hero (서브페이지 공통 헤더) ─────────────────────── */
.ulr-page-hero {
  background: var(--navy); color: #fff;
  padding: 160px clamp(20px,5vw,80px) clamp(48px,7vw,80px);
  position: relative; overflow: hidden;
}
.ulr-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(240,165,0,.06), transparent);
  pointer-events: none;
}
.ulr-page-hero__inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
.ulr-page-hero__crumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 28px;
}
.ulr-page-hero__crumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.ulr-page-hero__crumb a:hover { color: var(--amber); }
.ulr-page-hero__crumb-sep { color: rgba(255,255,255,.2); }
.ulr-page-hero__label {
  font-family: 'Manrope',sans-serif; font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 16px; display: block;
}
.ulr-page-hero__h1 {
  font-family: 'Manrope','Pretendard Variable',sans-serif;
  font-size: clamp(32px,7vw,88px); font-weight: 900;
  line-height: 1.05; letter-spacing: -.04em; color: #fff;
  margin-bottom: 20px;
}
.ulr-page-hero__sub {
  font-size: clamp(15px,2vw,18px); color: rgba(255,255,255,.6);
  line-height: 1.7; max-width: 600px;
}
.ulr-page-hero__alert {
  margin-top: 24px; padding: 14px 20px;
  background: rgba(240,165,0,.12); border-left: 3px solid var(--amber);
  font-size: 14px; font-weight: 600; color: var(--amber);
  line-height: 1.5; max-width: 600px;
}

/* ── Stats Strip ──────────────────────────────────────────── */
.ulr-stats-strip {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.ulr-stats-strip__item {
  flex: 1; min-width: 160px;
  padding: clamp(20px,3vw,32px) clamp(20px,3vw,32px);
  border-right: 1px solid var(--line); text-align: center;
}
.ulr-stats-strip__item:last-child { border-right: none; }
.ulr-stats-strip__num {
  font-family: 'Manrope',sans-serif; font-size: clamp(28px,4vw,48px);
  font-weight: 900; color: var(--amber); letter-spacing: -.04em; line-height: 1;
  display: block; margin-bottom: 6px;
}
.ulr-stats-strip__cap { font-size: 13px; color: var(--ink-mid); }

/* ── Numbered List (01/02/03 스타일) ──────────────────────── */
.ulr-num-list { list-style: none; padding: 0; border-top: 1px solid var(--line); }
.ulr-num-item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 20px; padding: clamp(24px,3vw,36px) 0;
  border-bottom: 1px solid var(--line-lt); align-items: start;
}
.ulr-num-item__n {
  font-family: 'Manrope',sans-serif; font-size: clamp(28px,3.5vw,40px);
  font-weight: 900; color: var(--amber); letter-spacing: -.04em; line-height: 1;
}
.ulr-num-item__title { font-size: clamp(16px,2vw,20px); font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.ulr-num-item__desc { font-size: 14px; color: var(--ink-mid); line-height: 1.7; }

/* ── Process Steps ────────────────────────────────────────── */
.ulr-process { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 600px) { .ulr-process { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .ulr-process { grid-template-columns: repeat(4,1fr); } }
.ulr-process__step {
  padding: clamp(24px,3vw,36px); border-top: 1px solid var(--line);
  border-right: 1px solid var(--line-lt);
}
.ulr-process__step:last-child { border-right: none; }
.ulr-process__n {
  font-family: 'Manrope',sans-serif; font-size: clamp(36px,5vw,56px);
  font-weight: 900; color: var(--amber); letter-spacing: -.04em; line-height: 1;
  margin-bottom: 16px;
}
.ulr-process__title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.ulr-process__desc { font-size: 13px; color: var(--ink-mid); line-height: 1.7; }

/* ── Target Segments (고객 유형) ──────────────────────────── */
.ulr-target-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .ulr-target-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .ulr-target-grid { grid-template-columns: repeat(3,1fr); } }
.ulr-target-card {
  padding: clamp(24px,3vw,36px); border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.ulr-target-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.ulr-target-card__tag {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 12px; font-family: 'Manrope',sans-serif;
}
.ulr-target-card__title { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.ulr-target-card__desc { font-size: 13px; color: var(--ink-mid); line-height: 1.7; }

/* ── Car Model Cards ──────────────────────────────────────── */
.ulr-model-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 600px) { .ulr-model-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .ulr-model-grid { grid-template-columns: repeat(3,1fr); } }
.ulr-model-card { border: 1px solid var(--line); overflow: hidden; }
.ulr-model-card__img { aspect-ratio: 16/11; overflow: hidden; }
.ulr-model-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.ulr-model-card:hover .ulr-model-card__img img { transform: scale(1.05); }
.ulr-model-card__body { padding: 24px; }
.ulr-model-card__name { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.ulr-model-card__price { font-family: 'Manrope',sans-serif; font-size: 28px; font-weight: 900; color: var(--amber); letter-spacing: -.03em; margin-bottom: 10px; }
.ulr-model-card__desc { font-size: 13px; color: var(--ink-mid); line-height: 1.6; margin-bottom: 20px; }

/* ── Consult Cards ────────────────────────────────────────── */
.ulr-contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px;
}
@media (min-width: 700px) { .ulr-contact-grid { grid-template-columns: repeat(2,1fr); } }
.ulr-contact-card {
  padding: clamp(28px,4vw,48px); background: var(--cream);
  border: 1px solid var(--line); text-align: center;
}
.ulr-contact-card__icon { font-size: 40px; margin-bottom: 16px; }
.ulr-contact-card__title { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.ulr-contact-card__sub { font-size: 14px; color: var(--ink-mid); margin-bottom: 24px; line-height: 1.6; }
.ulr-contact-card__num {
  font-family: 'Manrope',sans-serif; font-size: 28px; font-weight: 900;
  color: var(--navy); letter-spacing: -.02em; margin-bottom: 20px; display: block;
}

/* ── Hours Info ───────────────────────────────────────────── */
.ulr-hours {
  background: var(--navy); color: rgba(255,255,255,.7);
  padding: clamp(24px,4vw,48px); max-width: 600px; margin: 0 auto;
}
.ulr-hours__title { font-size: 13px; font-family: 'Manrope',sans-serif; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.ulr-hours__row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px; }
.ulr-hours__row:last-child { border-bottom: none; }
.ulr-hours__row span:last-child { color: #fff; font-weight: 600; }

/* ── Sitemap ──────────────────────────────────────────────── */
.ulr-sitemap-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 600px) { .ulr-sitemap-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .ulr-sitemap-grid { grid-template-columns: repeat(3,1fr); } }
.ulr-sitemap-group__title {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px; font-family: 'Manrope',sans-serif;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.ulr-sitemap-group__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ulr-sitemap-group__list a {
  font-size: 14px; color: var(--ink-mid); transition: color .2s;
  display: flex; align-items: center; gap: 8px;
}
.ulr-sitemap-group__list a::before { content: '→'; color: var(--amber); font-size: 12px; }
.ulr-sitemap-group__list a:hover { color: var(--navy); }

/* ── Subpage auto-publish template ───────────────────────── */
.ulr-subpage-hero {
  background: var(--navy); color: #fff;
  padding: 140px clamp(20px,5vw,80px) clamp(40px,6vw,64px);
}
.ulr-subpage-hero__inner { max-width: 900px; margin: 0 auto; }
.ulr-subpage-body { max-width: 900px; margin: 0 auto; padding: 0 clamp(20px,5vw,80px); }

/* ── Bottom CTA Band ──────────────────────────────────────── */
.ulr-cta-band {
  background: var(--navy); color: #fff;
  padding: clamp(48px,7vw,80px) clamp(20px,5vw,80px);
  margin-top: clamp(40px,6vw,60px);
  display: flex; flex-direction: column; gap: 24px; align-items: flex-start;
}
@media (min-width: 768px) {
  .ulr-cta-band { flex-direction: row; align-items: center; justify-content: space-between; }
}
.ulr-cta-band__label { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 10px; font-family:'Manrope',sans-serif; }
.ulr-cta-band__title { font-family:'Manrope','Pretendard Variable',sans-serif; font-size: clamp(22px,4vw,40px); font-weight: 800; line-height: 1.2; letter-spacing: -.03em; }

/* ── Prose (subpage auto-publish body) ───────────────────── */
.ulr-prose { font-size: 15px; line-height: 1.8; color: var(--ink); }
.ulr-prose h2 { font-size: clamp(20px,3vw,26px); font-weight: 800; color: var(--navy); margin: 2em 0 .75em; letter-spacing: -.02em; }
.ulr-prose h3 { font-size: clamp(16px,2.5vw,20px); font-weight: 700; color: var(--navy); margin: 1.5em 0 .5em; }
.ulr-prose p  { margin-bottom: 1.25em; }
.ulr-prose ul, .ulr-prose ol { padding-left: 1.5em; margin-bottom: 1.25em; }
.ulr-prose li { margin-bottom: .5em; }
.ulr-prose strong { color: var(--navy); }
.ulr-prose a { color: var(--amber); text-decoration: underline; }

/* ══════════════════════════════════════════════════════════
   SUBPAGE CONTENT COMPONENTS — v2
   ══════════════════════════════════════════════════════════ */

/* Reading progress bar */
.ulr-read-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%; background: var(--amber);
  transition: width .1s linear;
}

/* ── Info box ── */
.ulr-info-box {
  background: linear-gradient(135deg,rgba(255,185,0,.08) 0%,rgba(255,185,0,.03) 100%);
  border-left: 4px solid var(--amber);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.ulr-info-box p { margin: 0; font-size: 15px; line-height: 1.8; }
.ulr-info-box strong { color: var(--amber); }

.ulr-info-box--navy {
  background: linear-gradient(135deg,rgba(12,20,44,.06) 0%,rgba(12,20,44,.02) 100%);
  border-left-color: var(--navy);
}
.ulr-info-box--navy strong { color: var(--navy); }

/* ── Stat row ── */
.ulr-stat-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.ulr-stat-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
}
.ulr-stat-card__num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px,4vw,42px);
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -.03em;
  line-height: 1;
  display: block;
}
.ulr-stat-card__unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--amber);
  margin-left: 2px;
}
.ulr-stat-card__label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
  display: block;
  line-height: 1.4;
}

/* ── Step list ── */
.ulr-steps {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: ulr-step;
}
.ulr-steps__item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-lt);
  counter-increment: ulr-step;
}
.ulr-steps__item:last-child { border-bottom: none; }
.ulr-steps__num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
}
.ulr-steps__body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.ulr-steps__body p {
  font-size: 14px;
  color: var(--ink-mid);
  margin: 0;
  line-height: 1.7;
}

/* ── Check list ── */
.ulr-checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ulr-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.ulr-checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* ── Content link cards ── */
.ulr-link-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.ulr-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border: 1.5px solid var(--line-lt);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ulr-link-card:hover {
  border-color: var(--amber);
  box-shadow: 0 4px 20px rgba(255,185,0,.15);
  transform: translateY(-2px);
}
.ulr-link-card__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(255,185,0,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.ulr-link-card__body { flex: 1; min-width: 0; }
.ulr-link-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ulr-link-card__desc {
  font-size: 12px;
  color: var(--ink-mid);
  display: block;
}
.ulr-link-card__arrow {
  color: var(--amber);
  font-size: 18px;
  flex-shrink: 0;
}

/* ── Highlight table ── */
.ulr-table-wrap { overflow-x: auto; margin: 1.75rem 0; -webkit-overflow-scrolling: touch; }
.ulr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
.ulr-table thead tr { background: var(--navy); color: #fff; }
.ulr-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
}
.ulr-table thead th:last-child { text-align: right; }
.ulr-table tbody tr:nth-child(even) { background: #fafafa; }
.ulr-table tbody tr { border-bottom: 1px solid #ebebeb; transition: background .15s; }
.ulr-table tbody tr:hover { background: rgba(255,185,0,.06); }
.ulr-table td {
  padding: 11px 16px;
  vertical-align: top;
  line-height: 1.5;
  color: var(--ink);
}
.ulr-table td:last-child { text-align: right; }
.ulr-table td strong { color: var(--navy); }
.ulr-table .ulr-table__em { color: var(--amber); font-weight: 700; }

/* ── Section divider ── */
.ulr-prose-divider {
  border: none;
  border-top: 2px solid var(--line-lt);
  margin: 2.5rem 0;
}

/* ── Scroll reveal for content blocks ── */
.ulr-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.ulr-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.ulr-reveal--delay1 { transition-delay: .1s; }
.ulr-reveal--delay2 { transition-delay: .2s; }
.ulr-reveal--delay3 { transition-delay: .3s; }

/* ══════════════════════════════════════════════
   Car-model hero split layout (page-subpage 차종 전용)
   ══════════════════════════════════════════════ */
.ulr-page-hero--car .ulr-page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}
.ulr-car-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ulr-car-hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 12px 48px rgba(0,0,0,.45);
  background: rgba(255,255,255,.04);
}
.ulr-car-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.ulr-car-hero-img-wrap:hover img { transform: scale(1.09); }
.ulr-car-hero-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.ulr-car-hero-badge__name {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.ulr-car-hero-badge__price {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -.03em;
  line-height: 1;
}
.ulr-car-hero-badge__price small {
  font-size: .45em;
  font-weight: 600;
  color: rgba(255,255,255,.55);
}
.ulr-car-hero-segment {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 11px;
  color: rgba(255,255,255,.5);
}
.ulr-car-hero-segment__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* 차종 실견적 카드 (content 상단) */
.ulr-car-spec-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  container-type: inline-size;
}
.ulr-car-spec-card__thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy);
}
.ulr-car-spec-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: luminosity;
  opacity: .85;
  transition: opacity .3s, transform .5s;
}
.ulr-car-spec-card:hover .ulr-car-spec-card__thumb img {
  opacity: 1;
  transform: scale(1.04);
  mix-blend-mode: normal;
}
.ulr-car-spec-card__body {
  padding: 1.25rem 1.25rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ulr-car-spec-card__segment {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}
.ulr-car-spec-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
  letter-spacing: -.02em;
}
.ulr-car-spec-card__from {
  font-family: 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.ulr-car-spec-card__from small {
  font-size: .4em;
  font-weight: 600;
  color: var(--ink-low);
}
.ulr-car-spec-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
.ulr-car-spec-tbl th {
  padding: 4px 6px;
  text-align: center;
  color: var(--ink-mid);
  border-bottom: 1.5px solid var(--navy);
  font-weight: 700;
}
.ulr-car-spec-tbl th:first-child { text-align: left; }
.ulr-car-spec-tbl td {
  padding: 4px 6px;
  text-align: center;
  border-bottom: 1px solid var(--line-lt);
  color: var(--ink-mid);
}
.ulr-car-spec-tbl td:first-child { text-align: left; font-weight: 600; color: var(--ink); }
.ulr-car-spec-tbl td:last-child { font-weight: 700; color: var(--amber); }
/* container query 대신 media query — 요소 자신의 컨테이너 조회 불가 */
@media (max-width: 600px) {
  .ulr-car-spec-card { grid-template-columns: 1fr; }
  .ulr-car-spec-card__thumb { aspect-ratio: 16/7; }
  .ulr-car-spec-card__body { padding: 1rem; } /* 우측 0패딩 리셋 */
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ulr-page-hero--car .ulr-page-hero__inner {
    grid-template-columns: 1fr;
  }
  .ulr-car-hero-panel { order: -1; }
  .ulr-car-hero-img-wrap { aspect-ratio: 16/8; }
}
@media (max-width: 640px) {
  .ulr-stat-row { grid-template-columns: repeat(3,1fr); gap: .6rem; }
  .ulr-stat-card { padding: 1rem .75rem; }
  .ulr-stat-card__num { font-size: 26px; }
  .ulr-link-cards { grid-template-columns: 1fr; }
  .ulr-steps__item { gap: .75rem; }
}

/* ── 운영시간 그리드 (consult 전용) ─────────────────────── */
.ulr-hours-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}

/* ── ≤479px 극소형 화면 일괄 수정 ───────────────────────── */
@media (max-width: 479px) {
  /* stats-strip: min-width:160px 제거 → 3등분 유지, 2+1 줄바꿈 방지 */
  .ulr-stats-strip__item { min-width: 0; flex: 1 1 33.333%; }

  /* stat-row: 3→2 열, 수치 글자 축소 */
  .ulr-stat-row { grid-template-columns: repeat(2,1fr); }
  .ulr-stat-card__num { font-size: 22px; }
  .ulr-stat-card__label { font-size: 11px; }

  /* 운영시간 1열 */
  .ulr-hours-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* 차종 spec 카드 — padding 명시 (600px 룰 보강) */
  .ulr-car-spec-card__body { padding: .875rem; }
}
