/* ==============================================
   오토원 랜딩페이지 - 메인 스타일시트
   프리미엄 다크톤 / 딥블루 포인트
   ============================================== */

/* ===== CSS Variables ===== */
:root {
  /* 배경 (라이트 기반) */
  --color-bg:          #ffffff;
  --color-bg-2:        #f4f7ff;
  --color-bg-3:        #eef3ff;
  --color-bg-card:     #ffffff;
  --color-bg-card-hover: #f0f6ff;

  /* 블루 팔레트 */
  --color-primary:        #2462E9;
  --color-primary-dark:   #1b58dd;
  --color-primary-light:  #3b82f6;
  --color-primary-bright: #2462E9;
  --color-primary-glow:   rgba(36, 98, 233, 0.25);
  --color-accent:         #2462E9;

  /* 텍스트 (다크 계열) */
  --color-text-primary:   #0d1b3e;
  --color-text-secondary: #3d5278;
  --color-text-muted:     #7a92b8;

  /* 테두리 */
  --color-border:       rgba(36, 98, 233, 0.12);
  --color-border-hover: rgba(36, 98, 233, 0.40);

  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  --font-ko: 'Noto Sans KR', sans-serif;
  --font-en: 'Montserrat', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 8px 40px rgba(26, 86, 219, 0.25);
  --shadow-btn: 0 4px 20px rgba(26, 86, 219, 0.45);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;

  --sticky-height: 90px;
  --sticky-height-mobile: 140px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ko);
  background-color: #ffffff;
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: var(--sticky-height);
  display: flex;
  flex-direction: column;
}

/* 섹션 order 기본값 (PC) */
.hero-section        { order: 1; }
#quick-inquiry       { order: 2; }
.price-compare-section { order: 3; }
.car-gallery-section { order: 4; }
.benefits-section    { order: 5; }
.site-footer         { order: 6; }

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-ko); }
input { font-family: var(--font-ko); }
img { max-width: 100%; height: auto; display: block; }

.mobile-only { display: none; }
@media (max-width: 768px) { .mobile-only { display: inline; } }

/* ===== 공통 섹션 레이아웃 ===== */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #2462E9;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  font-weight: 400;
}

/* ===== 공통 버튼 ===== */
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-btn);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 86, 219, 0.6);
  background: linear-gradient(135deg, #1e63f0 0%, #2d77ff 100%);
}

.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.45);
  transition: var(--transition);
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
.btn-ghost-lg:hover {
  background: rgba(255,255,255,0.28);
  border-color: #fff;
  color: #fff;
}

/* ==============================================
   사이트 헤더
   ============================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, #2462E9 0%, #1b58dd 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
  /* overflow: hidden 제거 — 로고 높이 정상화로 불필요, 오히려 요소 클리핑 부작용 있음 */
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;           /* 헤더 높이와 동일하게 제한 */
  overflow: hidden;       /* 로고가 헤더 밖으로 나가는 것 차단 */
}
.logo-img {
  height: 110px;          /* 크게 키워도 .logo overflow:hidden으로 제어 */
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen; /* 검은 배경 투명 처리 */
  /* margin-top 제거 — align-items:center로 자동 수직 중앙 정렬 */
}
.logo-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.70);
  font-weight: 400;
}

.header-nav { display: flex; align-items: center; gap: 20px; }
.header-tel {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition-fast);
}
.header-tel:hover { color: #fff; }
.header-tel i { font-size: 13px; }

.btn-header-inquiry {
  padding: 9px 22px;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.50);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-header-inquiry:hover {
  background: rgba(255,255,255,0.30);
  border-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

/* ==============================================
   섹션 1: Hero Section
   ============================================== */
.hero-section {
  min-height: auto;
  background: linear-gradient(135deg, #060810 0%, #0a0e1a 50%, #0d1426 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 70px;
}

/* 배경 그리드 패턴 */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 86, 219, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 86, 219, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* 블루 글로우 */
.hero-section::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -5%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(26, 86, 219, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px 30px;
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 60px;
}

.hero-text-block {
  flex: 0 0 550px;   /* 고정 너비로 안정적 레이아웃 */
  max-width: 550px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease forwards;
}
.hero-badge i { color: var(--color-primary-bright); }

.hero-headline {
  font-size: clamp(40px, 5.2vw, 68px); /* PC 2줄 유지 크기 */
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-headline-sub {
  font-size: 0.7em;
  font-weight: 900;
  color: #fff;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--color-primary-bright), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subline {
  font-size: clamp(19px, 2.34vw, 23px); /* 기본 × 1.3 */
  color: #ffffff;
  margin-bottom: 14px;
  animation: fadeInUp 0.6s ease 0.2s both;
  line-height: 1.7;
}
.hero-subline strong {
  color: var(--color-warning);
  font-weight: 700;
}

.hero-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeInUp 0.6s ease 0.5s both;
}
.hero-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  padding: 8px 18px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: var(--transition-fast);
}
.hero-trust-badges span:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.50);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.20);
}
.hero-trust-badges span i { color: #7dd3fc; font-size: 13px; }

/* 차량 이미지 영역 */
.hero-car-block {
  flex: 1;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* 이미지 우측 정렬 */
}

.hero-car-img-wrap {
  position: relative;
  width: 100%;
  max-width: 1248px;
  margin-left: auto;
  margin-right: -40px;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-car-img {
  width: 100%;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 20px 60px rgba(26, 86, 219, 0.3));
}

/* PC에서 모바일 전용 요소 숨김 */
.mobile-subline-below { display: none; }

.hero-car-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 4px 20px rgba(0, 60, 120, 0.15);
}
.car-label-name {
  font-size: 13px;
  color: #3a6080;
}
.car-label-price {
  font-size: 14px;
  color: #1a405e;
}
.car-label-price strong {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  color: #1a56db;
}

.hero-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 4px 24px rgba(0, 60, 120, 0.14);
}
.hero-floating-badge i {
  font-size: 20px;
  color: #1a56db;
}
.hero-floating-badge span {
  font-size: 12px;
  color: #3a6080;
  line-height: 1.5;
}
.hero-floating-badge span strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #1a56db;
  font-family: var(--font-en);
}

.badge-left {
  top: 20%;
  left: -30px;
  animation-delay: 0s;
}
.badge-right {
  bottom: 25%;
  right: -20px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary-bright), transparent);
  animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(1.4); opacity: 0.5; }
}

/* ==============================================
   섹션 2: 빠른 문의 CTA
   ============================================== */
.quick-inquiry-section {
  padding: 53px 0;
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 60%, #0f2347 100%);
  border-top: 1px solid rgba(59,130,246,0.12);
  border-bottom: 1px solid rgba(59,130,246,0.12);
  position: relative;
  overflow: hidden;
}

.quick-inquiry-section::before {
  content: '';
  position: absolute;
  left: -10%;
  top: -40%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(26,86,219,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.quick-inquiry-content {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

/* 폼 카드 래퍼 */
.quick-inquiry-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 28px 28px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

.qi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #7ab4ff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.qi-headline {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 12px;
}
.qi-subtext {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

.qi-inputs {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.qi-input-wrap { flex: 1; }

.qi-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 14px;
  transition: var(--transition-fast);
  outline: none;
  box-shadow: none;
}
.qi-input::placeholder { color: rgba(255,255,255,0.42); }
.qi-input:focus {
  border-color: rgba(59,130,246,0.7);
  background: rgba(255,255,255,0.13);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.20);
}

/* 동의 그룹 공통 */
.consent-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.consent-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 0;
}

.consent-check {
  width: 15px;
  height: 15px;
  accent-color: #7ab4ff;
  cursor: pointer;
  flex-shrink: 0;
}

.consent-label {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  flex: 1;
  line-height: 1.4;
}
.consent-label strong { color: #ffffff; }

/* 섹션2 동의 폼 — 다크 배경 래퍼 */
.qi-consent {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.btn-view-consent {
  font-size: 11px;
  color: rgba(255,255,255,0.60);
  text-decoration: underline;
  white-space: nowrap;
  padding: 2px 6px;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.btn-view-consent:hover { color: #ffffff; }

.btn-qi-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #1a56db 0%, #2563eb 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(26,86,219,0.35);
  letter-spacing: -0.01em;
}
.btn-qi-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1548c4 0%, #1d57e0 100%);
  box-shadow: 0 8px 30px rgba(26,86,219,0.5);
}

/* ==============================================
   섹션 3: 가격 비교 테이블
   ============================================== */
.price-compare-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a1628 0%, #0d1f3c 100%);
  border-top: 1px solid rgba(59,130,246,0.12);
}

/* 다크 배경 위 섹션 헤더 색상 */
.price-compare-section .section-eyebrow {
  color: #7ab4ff;
}
.price-compare-section .section-title {
  color: #ffffff;
}
.price-compare-section .section-subtitle {
  color: rgba(255,255,255,0.65);
}

/* 테이블 래퍼 */
.compare-table-wrap {
  margin-bottom: 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.50);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* 테이블 기본 */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* 컬럼 너비 */
.compare-table .col-label       { width: 22%; }
.compare-table .col-installment { width: 39%; }
.compare-table .col-rent        { width: 39%; }

/* ── 헤더 ── */
.compare-table thead tr { height: 72px; }

.th-empty {
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.th-installment {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.01em;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.th-rent {
  background: linear-gradient(135deg, #1b58dd 0%, #2462E9 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.01em;
  position: relative;
  vertical-align: middle;
}

/* PC: 배지-텍스트 가로 배열 */
.th-rent-inner {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.th-rent-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

/* ── 바디 공통 ── */
.compare-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.compare-table tbody tr:hover td { filter: brightness(1.08); }
.compare-table tbody tr:last-child { border-bottom: none; }

/* ── 항목 레이블(좌) ── */
.td-label {
  background: rgba(255,255,255,0.05);
  padding: 22px 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  vertical-align: middle;
  text-align: center;
  line-height: 1.4;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.td-label-sub {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}

/* ── 할부 열(중) ── */
.td-installment {
  background: rgba(255,255,255,0.04);
  text-align: center;
  padding: 22px 16px;
  vertical-align: middle;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.td-val-bad {
  font-size: 17px;
  font-weight: 700;
  color: rgba(255,255,255,0.60);
  letter-spacing: -0.01em;
}

/* ── 장기렌트 열(우) ── */
.td-rent {
  background: linear-gradient(180deg, rgba(27,88,221,0.35) 0%, rgba(36,98,233,0.28) 100%);
  text-align: center;
  padding: 22px 16px;
  vertical-align: middle;
}
.td-val-good {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 0 16px rgba(100,180,255,0.35);
}

/* ── 월납입료 행 ── */
.tr-monthly { border-top: 1px solid rgba(59,130,246,0.35) !important; }

.td-label-monthly {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

.td-monthly-installment {
  background: rgba(255,255,255,0.07);
  padding: 26px 16px;
}
.td-monthly-val-bad {
  font-size: 26px;
  font-weight: 900;
  color: rgba(255,255,255,0.65);
  letter-spacing: -0.02em;
}

.td-monthly-rent {
  background: linear-gradient(135deg, #1b58dd 0%, #2462E9 100%);
  padding: 26px 16px;
  box-shadow: inset 0 0 30px rgba(100,160,255,0.10);
}
.td-monthly-rent-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* 절감 배지 */
.td-save-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffe066;
  border: none;
  color: #0d1b3e;
  font-size: 15px;
  font-weight: 900;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  animation: pulseSave 2s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(255,224,102,0.45);
}
.td-save-badge i { font-size: 13px; }

@keyframes pulseSave {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

.td-monthly-val-good {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* 절약 배너 */
.savings-banner {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 28px 36px;
  margin-top: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}
.savings-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.savings-icon {
  font-size: 36px;
  color: #ffe066; /* 절약 아이콘 - 원래 값 유지 */
  flex-shrink: 0;
}
.savings-text { flex: 1; min-width: 200px; }
.savings-label {
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(90deg, #ff6b00 0%, #ff9a00 40%, #ffcc00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.savings-amount {
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
}
.savings-amount strong {
  color: #ffe066;
  font-family: var(--font-en);
}
.btn-savings-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: #1a56db;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-savings-cta:hover {
  transform: translateY(-2px);
  background: #eefaff;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

/* 절약 결과 - 화살표 + 문구 */
.savings-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  padding-bottom: 8px;
}
.savings-arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
}
.savings-arrow-line {
  width: 2px;
  height: 48px;
  background: #ffffff;
}
.savings-arrow-head {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid #ffffff;
}
.savings-result-text {
  text-align: center;
}
.savings-result-cond {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  font-weight: 800;
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.25;
}
.savings-result-amount {
  font-size: clamp(27px, 3.6vw, 39px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.6;
  font-family: 'Noto Sans KR', sans-serif;
  letter-spacing: -0.02em;
}
.savings-result-amount strong {
  color: #ff9a00;
  font-family: 'Noto Sans KR', sans-serif;
}

/* ==============================================
   섹션 4: 차량 갤러리
   ============================================== */
.car-gallery-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0d1f3c 0%, #0a1628 100%);
  border-top: 1px solid rgba(59,130,246,0.12);
}

/* 다크 배경 위 섹션 헤더 색상 */
.car-gallery-section .section-eyebrow {
  color: #7ab4ff;
}
.car-gallery-section .section-title {
  color: #ffffff;
}
.car-gallery-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.car-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.car-card:hover {
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 8px 40px rgba(26,86,219,0.3);
  transform: translateY(-6px);
}

.car-card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.4s ease;
  padding: 12px 8px;
}
.car-card:hover .car-card-img { transform: scale(1.05) translateY(-3px); }

/* 이미지 로딩 실패 시 폴백 UI */
.car-card-img-wrap.img-error .car-card-img {
  display: none;
}
.car-card-img-wrap.img-error .car-img-fallback {
  display: flex;
}
.car-img-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,0.5);
}
.car-img-fallback i {
  font-size: 48px;
  color: rgba(100,160,255,0.6);
}
.car-img-fallback span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

.car-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 130, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(2px);
}
.car-card:hover .car-card-overlay { opacity: 1; }
.car-card-overlay span {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--color-primary);
  padding: 10px 24px;
  border-radius: var(--radius-full);
}

.car-card-info {
  padding: 18px 20px 20px;
}
.car-brand {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}
.car-name {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.car-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.car-price-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.car-price {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}
.car-price-unit {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

.car-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #ef4444, #f97316);
  color: #fff;
}
.eco-badge { background: linear-gradient(90deg, #059669, #10b981); }
.popular-badge { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.luxury-badge { background: linear-gradient(90deg, #92400e, #d97706); }

.car-gallery-cta {
  text-align: center;
}
.car-gallery-cta-text {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

/* 흰색 배경 섹션에서 파란 버튼 변형 */
.btn-primary-blue {
  background: linear-gradient(135deg, #2462E9 0%, #1b58dd 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 24px rgba(36,98,233,0.35) !important;
}
.btn-primary-blue:hover {
  background: linear-gradient(135deg, #1b58dd 0%, #1650cc 100%) !important;
  box-shadow: 0 8px 32px rgba(36,98,233,0.50) !important;
}

/* ==============================================
   섹션 5: 오토원 혜택
   ============================================== */
.benefits-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0b1228 0%, #0d1630 100%);
  border-top: none;
}
.benefits-section .section-title    { color: #ffffff; }
.benefits-section .section-eyebrow  { color: #7ab4ff; }
.benefits-section .section-subtitle { color: rgba(255,255,255,0.65); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(36,98,233,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-card:hover {
  border-color: rgba(36,98,233,0.50);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(36,98,233,0.25);
}

.benefit-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(36,98,233,0.30) 0%, rgba(59,130,246,0.15) 100%);
  border: 1px solid rgba(36,98,233,0.35);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon-wrap {
  background: linear-gradient(135deg, rgba(36,98,233,0.50) 0%, rgba(59,130,246,0.30) 100%);
  box-shadow: 0 4px 20px rgba(36,98,233,0.40);
}
.benefit-icon-wrap i {
  font-size: 26px;
  color: #7ab4ff;
}
.benefit-title {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.benefit-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

/* ===== 슬롯머신 UI ===== */
.slot-machine-container {
  position: relative;        /* 폭죽 캔버스 기준점 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto 80px;
  max-width: 700px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(36,98,233,0.28);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  backdrop-filter: blur(8px);
  overflow: hidden;          /* 파티클이 박으로 나가지 않도록 */
}

/* 폭죽 캔버스 */
.confetti-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;      /* 클릭 이벤트 통과 */
  z-index: 10;
  border-radius: var(--radius-xl);
}

.slot-machine-label {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.01em;
}
.slot-machine-suffix {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}

.slot-machine-wrap {
  width: 260px;
  height: 72px;
  background: rgba(10,12,16,0.8);
  border: 2px solid rgba(59,130,246,0.35);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 2px 8px rgba(0,0,0,0.5),
    0 0 20px rgba(26,86,219,0.1);
  cursor: pointer;
  transition: var(--transition);
}

.slot-machine-wrap:hover {
  border-color: var(--color-primary-bright);
  box-shadow:
    inset 0 2px 8px rgba(0,0,0,0.5),
    0 0 30px rgba(26,86,219,0.4),
    0 0 60px rgba(59,130,246,0.15);
  transform: scale(1.03);
}

/* 슬롯 마스크 효과 (상하 그라데이션) */
.slot-machine-wrap::before,
.slot-machine-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  z-index: 3;
  pointer-events: none;
}
.slot-machine-wrap::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(10,12,16,0.95), transparent);
}
.slot-machine-wrap::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(10,12,16,0.95), transparent);
}

.slot-reel {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  will-change: transform;
  transition: none;
}

.slot-item {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  width: 260px;
  flex-shrink: 0;
}

.slot-question {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-primary-bright);
  letter-spacing: 0.15em;
  display: none;
  animation: pulseBounce 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.slot-question.visible { display: flex; align-items: center; justify-content: center; }

@keyframes pulseBounce {
  0% { transform: scale(0.8); opacity: 0; }
  40% { transform: scale(1.2); }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); opacity: 1; }
}

.btn-slot-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #2462E9, #3b82f6);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(36,98,233,0.45);
}
.btn-slot-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1b58dd, #2462E9);
  box-shadow: 0 8px 32px rgba(36,98,233,0.65);
}

/* ===== 통계 카운터 ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.stat-item:hover {
  border-color: rgba(36,98,233,0.45);
  box-shadow: 0 8px 36px rgba(36,98,233,0.22);
}

.stat-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 900;
  color: #ffe066;
  line-height: 1;
  display: inline;
}
.stat-unit {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: #7ab4ff;
  margin-left: 2px;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  margin-top: 8px;
}

/* ==============================================
   푸터
   ============================================== */
.site-footer {
  background: #070d1a;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
  mix-blend-mode: screen;  /* 검은 배경 투명 처리 */
}
.footer-info {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 2;
  margin-bottom: 16px;
}
.footer-info a { color: rgba(255,255,255,0.60); }
.footer-info a:hover { color: #7ab4ff; }
.footer-links {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.footer-links button {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  text-decoration: underline;
  transition: var(--transition-fast);
}
.footer-links button:hover { color: #7ab4ff; }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.30);
}

/* ==============================================
   고정 문의 폼바 (Fixed Bottom)
   ============================================== */
.sticky-form-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  min-height: 110px;
  background: linear-gradient(90deg, #1248b8 0%, #1b58dd 40%, #2462E9 70%, #1b58dd 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 -4px 32px rgba(27,88,221,0.45);
}

.sticky-form-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 40px;
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sticky-form-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.sticky-form-title i { font-size: 16px; color: rgba(255,255,255,0.85); }

.sticky-form-fields {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-inputs {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.sticky-input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 13px;
  outline: none;
  transition: var(--transition-fast);
}
.sticky-input::placeholder { color: rgba(255,255,255,0.55); font-size: 12px; }
.sticky-input:focus {
  border-color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.22);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}

.sticky-consent-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-consent-item {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 11px;
  color: rgba(255,255,255,0.80);
}
.sticky-consent-item input[type="checkbox"] {
  width: 13px;
  height: 13px;
  accent-color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
}
.sticky-consent-item strong { color: #ffffff; }

.btn-view-consent-sm {
  font-size: 10px;
  color: rgba(255,255,255,0.70);
  text-decoration: underline;
  padding: 2px 4px;
  white-space: nowrap;
}
.btn-view-consent-sm:hover { color: #ffffff; }

.btn-sticky-submit {
  padding: 12px 28px;
  background: #ffffff;
  color: #1b58dd;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
  flex-shrink: 0;
}
.btn-sticky-submit:hover {
  transform: translateY(-1px);
  background: #e8f0ff;
  box-shadow: 0 6px 28px rgba(0,0,0,0.25);
}

/* ==============================================
   다단계 팝업 퍼널 (Fullscreen)
   ============================================== */
.funnel-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: linear-gradient(135deg, #060810 0%, #0a0e1a 100%);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.funnel-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.funnel-header {
  padding: 20px 40px;
  background: rgba(10,12,16,0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.funnel-logo {
  display: flex;
  align-items: center;
  height: 40px;
  overflow: hidden;
  flex-shrink: 0;
}
.funnel-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
}

/* 팝업 닫기 버튼 */
.funnel-close-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.18s;
  margin-left: 8px;
}
.funnel-close-btn:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  transform: rotate(90deg);
}

.funnel-progress-wrap { flex: 1; }
.funnel-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.funnel-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.funnel-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-bright));
  border-radius: var(--radius-full);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px var(--color-primary-glow);
}

.funnel-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 60px;
  position: relative;
}

.funnel-step {
  width: 100%;
  max-width: 560px;
  animation: fadeInUp 0.4s ease forwards;
}
.funnel-step.hidden { display: none; }

.funnel-step-content { width: 100%; }

.funnel-step-num {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--color-primary-bright);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.funnel-step-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.funnel-step-desc {
  font-size: 15px;
  color: #7dd3fc;
  margin-bottom: 32px;
  line-height: 1.7;
}

.funnel-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.funnel-option-btn {
  padding: 28px 24px;
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.funnel-option-btn:hover, .funnel-option-btn.selected {
  border-color: var(--color-primary-bright);
  background: rgba(26,86,219,0.12);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.4), 0 4px 20px rgba(26,86,219,0.2);
}
.funnel-option-btn:hover .funnel-option-label,
.funnel-option-btn.selected .funnel-option-label {
  color: #ffffff;
}
.funnel-option-btn.selected {
  background: rgba(26,86,219,0.18);
}

.funnel-option-icon {
  width: 56px;
  height: 56px;
  background: rgba(26,86,219,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.funnel-option-icon i {
  font-size: 24px;
  color: var(--color-primary-bright);
}
.funnel-option-btn.selected .funnel-option-icon {
  background: rgba(26,86,219,0.3);
}
.funnel-option-label {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text-primary);
}
.funnel-option-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.funnel-input-wrap {
  margin-bottom: 16px;
}
.funnel-input-label {
  display: block;
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  font-weight: 600;
}
.required-mark { color: var(--color-primary-bright); }

.funnel-text-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 16px;
  outline: none;
  transition: var(--transition-fast);
}
.funnel-text-input::placeholder { color: rgba(255,255,255,0.45); }
.funnel-text-input:focus {
  border-color: var(--color-primary-bright);
  background: rgba(26,86,219,0.12);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.18);
}

.funnel-popular-cars { margin: 12px 0 28px; }
.funnel-popular-label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.funnel-popular-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.funnel-popular-btn {
  padding: 7px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
}
.funnel-popular-btn:hover {
  background: rgba(26,86,219,0.15);
  border-color: rgba(59,130,246,0.4);
  color: var(--color-accent);
}

.funnel-form-group { margin-bottom: 20px; }

.funnel-consent {
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

/* 팝업 버튼 */
.btn-funnel-next {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-btn);
  margin-bottom: 12px;
}
.btn-funnel-next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,86,219,0.6);
}
.btn-funnel-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-funnel-submit {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
}
.btn-funnel-submit:hover:not(:disabled) {
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.6) !important;
}

.btn-funnel-back {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-text-muted);
  font-size: 14px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-funnel-back:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--color-text-secondary);
}

/* 완료 단계 */
.funnel-complete {
  text-align: center;
}
.complete-icon {
  font-size: 80px;
  color: var(--color-success);
  margin-bottom: 24px;
  animation: bounceIn 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); opacity: 1; }
}

.complete-title { color: #fff; }
.complete-desc {
  color: #7dd3fc;
  margin-bottom: 28px;
  font-size: 16px;
}

.complete-summary {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.complete-summary-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
}
.complete-summary-label {
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  min-width: 80px;
}
.complete-summary-value {
  color: #ffffff;
  font-weight: 600;
}

.btn-complete-home {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: var(--shadow-btn);
}
.btn-complete-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,86,219,0.6);
}

/* ==============================================
   공통 동의서 모달
   ============================================== */
.consent-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 20px;
}
.consent-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.consent-modal-box {
  background: #12161f;
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  animation: slideUp 0.25s ease forwards;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.consent-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.consent-modal-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
.consent-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-size: 14px;
}
.consent-modal-close:hover {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
}

.consent-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  scroll-behavior: smooth;
}
.consent-modal-body::-webkit-scrollbar { width: 4px; }
.consent-modal-body::-webkit-scrollbar-track { background: transparent; }
.consent-modal-body::-webkit-scrollbar-thumb {
  background: rgba(59,130,246,0.3);
  border-radius: 4px;
}

.consent-modal-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 16px 0 6px;
}
.consent-modal-body h4:first-child { margin-top: 0; }
.consent-modal-body p { margin-bottom: 8px; }
.consent-modal-body ul { padding-left: 16px; margin-bottom: 8px; }
.consent-modal-body li { margin-bottom: 4px; }
.consent-modal-body strong { color: #ffffff; }
.consent-modal-body .consent-highlight {
  background: rgba(26,86,219,0.18);
  border-left: 3px solid var(--color-primary-bright);
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
  margin: 8px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}

.consent-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.btn-consent-confirm {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-consent-confirm:hover {
  box-shadow: var(--shadow-btn);
  transform: translateY(-1px);
}

/* ==============================================
   토스트 알림
   ============================================== */
.toast-notification {
  position: fixed;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 300;
  background: #1e293b;
  border: 1px solid rgba(16,185,129,0.4);
  border-radius: var(--radius-full);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}
.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast-notification i { color: var(--color-success); font-size: 16px; }

/* ==============================================
   애니메이션 키프레임
   ============================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==============================================
   팝업 PC 전용 확대 (1025px 이상)
   ============================================== */
@media (min-width: 1025px) {
  /* ── 플로팅바 높이 확대 ── */
  :root { --sticky-height: 110px; }

  /* 입력칸 비율 확대 (너비 개선) */
  .sticky-form-fields { gap: 16px; }
  .sticky-inputs {
    flex: 2.5;
    gap: 12px;
    min-width: 0;
  }
  .sticky-input { min-width: 0; }

  /* ── 팝업 PC 확대 ── */
  /* 바디 패딩 줄여 콘텐츠 세로 공간 확보 */
  .funnel-body {
    padding: 32px 40px 48px;
  }

  /* 스텝 컨테이너 최대 너비 대폭 확대 */
  .funnel-step {
    max-width: 860px;
  }

  /* STEP 넘버 */
  .funnel-step-num {
    font-size: 14px;
    letter-spacing: 0.25em;
    margin-bottom: 18px;
  }

  /* 스텝 타이틀 */
  .funnel-step-title {
    font-size: clamp(38px, 4.5vw, 56px);
    margin-bottom: 18px;
  }

  /* 스텝 설명 */
  .funnel-step-desc {
    font-size: 20px;
    margin-bottom: 48px;
  }

  /* STEP01 옵션 그리드 */
  .funnel-option-grid {
    gap: 24px;
  }

  /* 옵션 버튼 (장기렌트/리스) */
  .funnel-option-btn {
    padding: 52px 36px;
    gap: 20px;
    border-radius: 20px;
    border-width: 2px;
  }

  /* 옵션 아이콘 박스 */
  .funnel-option-icon {
    width: 90px;
    height: 90px;
    border-radius: 18px;
  }
  .funnel-option-icon i {
    font-size: 42px;
  }

  /* 옵션 레이블 (장기렌트 / 리스) */
  .funnel-option-label {
    font-size: 28px;
  }

  /* 입력 라벨 */
  .funnel-input-label {
    font-size: 17px;
    margin-bottom: 12px;
  }

  /* 텍스트 입력 */
  .funnel-text-input {
    padding: 22px 28px;
    font-size: 20px;
    border-radius: 14px;
  }

  /* 인기 차종 태그 */
  .funnel-popular-label {
    font-size: 15px;
    margin-bottom: 14px;
  }
  .funnel-popular-btn {
    padding: 10px 22px;
    font-size: 16px;
  }
  .funnel-popular-list {
    gap: 12px;
  }
  .funnel-popular-cars {
    margin: 16px 0 36px;
  }

  /* 폼 그룹 간격 */
  .funnel-form-group {
    margin-bottom: 28px;
  }

  /* 동의 영역 */
  .funnel-consent {
    padding: 22px 24px;
    border-radius: 14px;
    margin-bottom: 28px;
  }

  /* 다음 버튼 */
  .btn-funnel-next {
    padding: 24px;
    font-size: 21px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  /* 뒤로 버튼 */
  .btn-funnel-back {
    padding: 18px;
    font-size: 17px;
    border-radius: 14px;
  }

  /* 완료 단계 */
  .complete-icon {
    font-size: 110px;
    margin-bottom: 32px;
  }
  .complete-title {
    font-size: 38px;
  }
  .complete-desc {
    font-size: 20px;
    margin-bottom: 36px;
  }
  .complete-summary {
    padding: 28px 36px;
    margin-bottom: 36px;
    gap: 16px;
    border-radius: 14px;
  }
  .complete-summary-item {
    font-size: 18px;
  }
  .complete-summary-label {
    min-width: 110px;
  }
  .btn-complete-home {
    padding: 22px 56px;
    font-size: 20px;
  }

  /* 헤더 로고·진행바 */
  .funnel-header {
    padding: 24px 48px;
    gap: 32px;
  }
  .funnel-logo {
    font-size: 22px;
  }
  .funnel-progress-label {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .funnel-progress-bar {
    height: 6px;
  }
  .funnel-close-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}

/* ==============================================
   반응형 - 태블릿 (1024px 이하)
   ============================================== */
@media (max-width: 1024px) {
  :root {
    --sticky-height: 100px;
  }

  .section-inner { padding: 0 24px; }

  .header-inner { padding: 0 24px; }
  .hero-content { padding: 40px 24px 80px; gap: 40px; }

  .hero-text-block { max-width: 480px; }

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

  .quick-inquiry-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .qi-inputs {
    flex-direction: column;
    gap: 10px;
  }

  /* 섹션 3 태블릿 */
  .td-label { padding: 18px 10px; font-size: 14px; text-align: center; }
  .td-val-bad { font-size: 15px; }
  .td-val-good { font-size: 17px; }
  .td-monthly-val-bad { font-size: 22px; }
  .td-monthly-val-good { font-size: 30px; }

  .funnel-header { padding: 16px 24px; }
  .sticky-form-inner { padding: 8px 24px; }
}

/* ==============================================
   반응형 - 모바일 (768px 이하)
   ============================================== */
@media (max-width: 768px) {
  :root {
    --sticky-height: 0px;
  }

  body { padding-bottom: 120px; }

  /* 모바일에서 플로팅바 min-height 초기화 */
  .sticky-form-bar { min-height: 0; }
  .sticky-form-inner { min-height: 0; }

  /* [모바일 전용] 섹션2 빠른문의 → 푸터 바로 위로 이동 */
  .hero-section          { order: 1; }
  .price-compare-section { order: 2; }
  .car-gallery-section   { order: 3; }
  .benefits-section      { order: 4; }
  #quick-inquiry         { order: 5; }
  .site-footer           { order: 6; }

  .section-inner { padding: 0 16px; }
  .section-header { margin-bottom: 36px; }

  /* 헤더 */
  .header-inner { padding: 0 16px; height: 60px; }
  .header-tel { display: none; }
  .logo-sub { display: none; }
  .logo { height: 60px; }              /* 모바일 헤더 높이 */
  .logo-img { height: 90px; }         /* 모바일 크기, margin-top 없이 중앙 정렬 */

  .btn-header-inquiry {
    white-space: nowrap;               /* 버튼 텍스트 줄바꿈 방지 */
    font-size: 12px;
    padding: 8px 14px;
  }

  /* 히어로 */
  .hero-section { min-height: auto; padding-top: 60px; }
  .hero-content {
    flex-direction: column;
    padding: 30px 16px 60px;
    gap: 30px;
    text-align: center;
  }
  .hero-text-block { flex: 0 0 auto; max-width: 100%; width: 100%; } /* PC 고정값 리셋 */
  .hero-headline { font-size: clamp(34px, 7.2vw, 40px); }
  .hero-subline  { font-size: 18px; }
  .savings-result-cond { font-size: 22px; }
  .savings-result-amount { font-size: clamp(22px, 2.9vw, 31px); }
  .hero-content  { gap: 0; padding: 24px 16px 40px; } /* 텍스트-이미지 간격 제거 */
  .hero-cta-group { justify-content: center; }
  .hero-trust-badges { justify-content: center; }
  .hero-car-block { min-height: auto; width: 100%; justify-content: center; margin-top: 0; }
  .hero-car-img-wrap { margin-right: 0; margin-top: 0; max-width: 640px; }
  .badge-left, .badge-right { display: none; }
  .scroll-indicator { display: none; }
  /* 모바일 전용 숨김/표시 */
  .mobile-hide { display: none !important; }
  .mobile-subline-below { display: block; text-align: center; margin-top: 0; }

  /* 섹션 2 */
  .quick-inquiry-section { padding: 60px 0; }
  .quick-inquiry-text { text-align: center; }
  .qi-eyebrow { justify-content: center; }
  .qi-inputs { flex-direction: column; }

  /* 섹션 3 */
  .price-compare-section { padding: 60px 0; }
  .compare-table-wrap { border-radius: var(--radius-lg); }
  .td-label { padding: 16px 8px; font-size: 13px; text-align: center; }
  .td-label-sub { font-size: 11px; }
  .td-installment,
  .td-rent { padding: 16px 10px; }
  .td-val-bad { font-size: 14px; }
  .td-val-good { font-size: 16px; }
  .td-monthly-installment,
  .td-monthly-rent { padding: 20px 10px; }
  .td-monthly-val-bad { font-size: 20px; }
  .td-monthly-val-good { font-size: 26px; }
  .td-save-badge { font-size: 11px; padding: 4px 10px; }
  .th-installment, .th-rent { font-size: 13px; }
  /* 추천 배지 위 / 신차 장기렌트 아래 — flex column으로 강제 분리 */
  .th-rent {
    padding: 10px 6px;
  }
  .th-rent-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .th-rent-badge {
    margin-left: 0;
  }
  .savings-banner { padding: 24px 20px; }
  .savings-inner { flex-direction: column; gap: 16px; text-align: center; }
  .savings-label { font-size: 22px; }   /* 모바일 크기 */
  .btn-savings-cta { width: 100%; justify-content: center; }

  /* 섹션 4 */
  .car-gallery-section { padding: 60px 0; }
  .car-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .car-card-img-wrap { aspect-ratio: 4/3; background: #ffffff; }   /* 모바일: 흰 배경 */
  .car-card-img { object-fit: contain; object-position: center center; padding: 10px 6px; } /* 흰배경 차량 전체 표시 */
  .car-card-info { padding: 12px 14px 14px; }
  .car-name { font-size: 15px; }
  .car-price { font-size: 17px; }

  /* 섹션 5 */
  .benefits-section { padding: 60px 0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .benefit-card { padding: 22px 16px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .slot-machine-container { padding: 28px 20px; margin-bottom: 48px; }
  .slot-machine-label, .slot-machine-suffix { font-size: 16px; }
  .slot-machine-wrap { width: 100%; max-width: 280px; }

  /* 고정 폼바 */
  .sticky-form-bar { position: fixed; }
  .sticky-form-inner {
    padding: 8px 14px;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .sticky-form-title { justify-content: center; }
  .sticky-form-fields {
    flex-direction: column;
    gap: 8px;
  }
  .sticky-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .sticky-inputs input:last-child { grid-column: 1 / -1; }
  .sticky-consent-row {
    gap: 6px;
    justify-content: center;
  }
  .sticky-consent-item { font-size: 10px; }
  .btn-sticky-submit { width: 100%; padding: 11px; }

  /* 팝업 공통 */
  .funnel-header { padding: 10px 14px; }
  .funnel-logo { height: 30px; }
  .funnel-logo-img { height: 58px; }
  .funnel-body {
    min-height: calc(100vh - 65px);
    padding: 16px 16px 24px;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }
  .funnel-step { max-width: 100%; }
  .funnel-step-num   { font-size: 15px; margin-bottom: 10px; text-align: center; }
  .funnel-step-title { font-size: 33px; margin-bottom: 10px; text-align: center; }
  .funnel-step-desc  { font-size: 19px; margin-bottom: 20px; line-height: 1.6; text-align: center; }

  /* STEP 1 */
  .funnel-option-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .funnel-option-btn  { padding: 20px 14px; }
  .funnel-option-label { font-size: 15px; }

  /* STEP 3 — 입력창·라벨·간격 축소 */
  /* STEP3 입력창 가로 2열 배치 */
  .funnel-form-group  { display: flex; flex-direction: row; gap: 8px; margin-bottom: 10px; }
  .funnel-form-group .funnel-input-wrap { flex: 1; margin-bottom: 0; }
  .funnel-input-wrap  { margin-bottom: 10px; }
  .funnel-input-label { font-size: 11px; margin-bottom: 4px; }
  .funnel-text-input  { padding: 10px 10px; font-size: 13px; border-radius: 10px; }
  .funnel-consent     { padding: 8px 10px; margin-bottom: 10px; }
  .funnel-consent .consent-item { gap: 5px; margin-bottom: 0; padding: 3px 0; }
  .funnel-consent .consent-group { gap: 0; margin-bottom: 0; }
  .funnel-consent .consent-label { font-size: 11px; }
  .funnel-consent .btn-view-consent { font-size: 10px; padding: 2px 6px; }
  .btn-funnel-next { padding: 14px; font-size: 15px; margin-bottom: 8px; }
  .btn-funnel-back { padding: 10px; font-size: 13px; }

  /* 동의서 모달 */
  .consent-modal-box { max-height: 90vh; border-radius: var(--radius-lg); }
}

/* ==============================================
   반응형 - 소형 모바일 (390px 이하)
   ============================================== */
@media (max-width: 390px) {
  .hero-headline { font-size: 27px; }  /* 0.8배 */
  .hero-subline  { font-size: 16px; }  /* 390px 이하 소형 */
  .savings-result-cond { font-size: 18px; }
  .savings-result-amount { font-size: 22px; }
  .car-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .btn-primary-lg, .btn-ghost-lg { padding: 13px 20px; font-size: 14px; }
  .funnel-option-grid { grid-template-columns: 1fr 1fr; }
  .sticky-inputs { grid-template-columns: 1fr; }
  .sticky-inputs input:last-child { grid-column: auto; }

  /* 소형 모바일 테이블 */
  .th-installment, .th-rent { font-size: 12px; }
  .th-rent-badge { font-size: 10px; padding: 2px 7px; }
  .td-label { padding: 12px 6px; font-size: 12px; text-align: center; }
  .td-label-sub { font-size: 10px; }
  .td-installment, .td-rent { padding: 12px 6px; }
  .td-val-bad { font-size: 13px; }
  .td-val-good { font-size: 14px; }
  .td-monthly-val-bad { font-size: 17px; }
  .td-monthly-val-good { font-size: 22px; }
  .td-save-badge { font-size: 10px; padding: 3px 8px; }
}
