/* ========== RESET & VARIABLES ========== */
:root {
    --primary: #3772e8;
    --primary-dark: #2b5fc4;
    --primary-light: #edf2ff;
    --secondary: #f7a94f;
    --secondary-dark: #e69a3b;
    --dark: #2d3748;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --danger: #ef4444;
    --radius: 6px;
    --shadow: 0 1px 3px rgba(0, 0, 0, .1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, .1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, .15);
    --max-w: 1320px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}


/* ========== HEADER & NAV ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow .3s;
}

.site-header.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.header-top {
    background: var(--primary);
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    padding: 8px 0;
    display: none;
}

@media (min-width: 768px) {
    .header-top {
        display: block;
    }
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-main {
    padding: 12px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Header search */
.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
    display: none;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 2px 4px 2px 8px;
}
@media (min-width: 768px) {
    .header-search { display: flex; }
}

/* Main nav (아래 메뉴바) */
.main-nav {
    border-top: 1px solid var(--gray-200);
    background: #fff;
    display: none;
}
@media (min-width: 768px) {
    .main-nav { display: block; }
}
.main-nav .container {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.main-nav .container::-webkit-scrollbar { display: none; }
.main-nav a {
    flex: 1;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all .15s;
}
.main-nav a i {
    font-size: 13px;
}
.main-nav a:hover {
    color: var(--primary);
    background: var(--gray-50);
}
.main-nav a.active {
    color: var(--primary);
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    margin-bottom: -1px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 30px;
    color: var(--primary);
}

.nav-menu {
    display: none;
    gap: 4px;
    align-items: center;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu a {
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    border-radius: var(--radius);
    transition: all .2s;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-menu a.active {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone {
    display: none;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--primary);
    font-size: 17px;
}

@media (min-width: 768px) {
    .header-phone {
        display: flex;
    }
}

.header-phone i {
    color: var(--primary);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: 20px;
    color: var(--gray-700);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
}
.mobile-nav.open { display: block; }

.mobile-nav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(3px);
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
}
.mobile-nav-header .mn-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}
.mobile-nav-header .mn-logo img { height: 28px; }

.mobile-nav-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: none;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 18px;
    cursor: pointer;
}
.mobile-nav-close:hover { background: var(--gray-200); }

.mobile-nav-links {
    flex: 1;
    padding: 12px 12px;
}
.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: 8px;
    margin-bottom: 2px;
    text-decoration: none;
    transition: all .15s;
}
.mobile-nav-links a i {
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--gray-400);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--primary);
    background: var(--primary-light);
}
.mobile-nav-links a:hover i,
.mobile-nav-links a.active i { color: var(--primary); }

.mobile-nav-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 8px 16px;
}

.mobile-nav-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--gray-200);
}
.mobile-nav-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--primary);
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 10px;
}
.mobile-nav-phone i { color: #fff; font-size: 16px; }
.mobile-nav-phone span { color: #fff; font-size: 18px; font-weight: 800; }
.mobile-nav-cta {
    display: flex;
    gap: 8px;
}
.mobile-nav-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.mobile-nav-cta .mn-quote {
    background: var(--primary-light);
    color: var(--primary);
}
.mobile-nav-cta .mn-kakao {
    background: #fee500;
    color: #3c1e1e;
}


/* ========== HERO — KS style ========== */
.hero {
    padding: 0;
    background: #fff;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

@media (min-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr 380px;
        gap: 20px;
        padding: 24px 28px;
    }
}

.hero-banner {
    background: #1e293b;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 36px;
    color: #fff;
}

.hero-banner-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/bg/hero-car.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-banner-content {
    position: relative;
    z-index: 1;
}

.hero-banner-content .badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,.15);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-banner-content h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
}

.hero-banner-content p {
    font-size: 15px;
    opacity: .8;
    margin-bottom: 20px;
}

.hero-banner-content .hero-link {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hero-form-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 24px;
}

.hero-form-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-form-card .form-group {
    margin-bottom: 10px;
}

.hero-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.hero-form-card .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-size: 13px;
}

/* Sub navigation */
.sub-nav {
    border-bottom: 1px solid var(--gray-200);
    background: #fff;
}

.sub-nav .container {
    display: flex;
    gap: 0;
    overflow-x: auto;
}

.sub-nav a {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all .15s;
}

.sub-nav a:hover,
.sub-nav a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}


/* ========== SECTIONS & CARDS ========== */
.section {
    padding: 64px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 88px 0;
    }
}

.section-header {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.section-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}

.section-header p {
    font-size: 14px;
    color: var(--gray-400);
}

.section-header .section-desc {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 400;
}

.section-header .more-link {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.section-header .badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.bg-gray {
    background: var(--gray-50);
}

.bg-dark {
    background: var(--dark);
    color: #fff;
}

.bg-dark .section-header h2 {
    color: #fff;
}

.bg-dark .section-header p {
    color: var(--gray-400);
}

/* Stats bar - hidden in KS style */
.stats-bar {
    display: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item .stat-number {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    line-height: 1.2;
}

.stat-item .stat-label {
    font-size: 13px;
    opacity: .8;
    margin-top: 2px;
}


/* ========== CAR CARDS ========== */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

@media (max-width: 640px) {
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.car-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    transition: all .2s;
    cursor: pointer;
}

.car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.car-card-img {
    position: relative;
    background: #f8fafc;
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.car-card-img img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform .4s ease;
}

.car-card:hover .car-card-img img {
    transform: scale(1.05);
}

.car-card-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.car-card-badges span {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.badge-immediate {
    background: #ef4444;
}

.badge-best {
    background: #10b981;
}

.badge-new {
    background: #3b82f6;
}

.car-card-body {
    padding: 20px;
}

@media (max-width: 640px) {
    .car-card-body {
        padding: 14px;
    }
}

.car-card-brand {
    font-size: 13px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.car-card-brand img {
    height: 18px;
    width: auto;
}

.car-card-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

@media (max-width: 640px) {
    .car-card-name {
        font-size: 15px;
    }
}

.car-card-price {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 3px;
}

.car-card-monthly {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

@media (max-width: 640px) {
    .car-card-monthly {
        font-size: 16px;
    }
}

.car-card-monthly small {
    font-size: 10px;
    font-weight: 400;
    color: var(--gray-400);
    display: block;
    margin-top: 2px;
}

.car-card-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    gap: 10px;
}

@media (max-width: 640px) {
    .car-card-footer {
        padding: 12px 14px;
    }
}

.car-card-footer .btn {
    flex: 1;
    padding: 10px;
    font-size: 13px;
}

/* Carousel */
.carousel-wrap {
    position: relative;
}

.carousel-scroll {
    display: flex;
    gap: 16px;
    overflow: visible;
    padding: 8px 0;
}

.carousel-scroll .car-card {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .carousel-scroll .car-card {
        min-width: 220px;
        max-width: 220px;
    }
}

/* 무한 슬라이드 */
.carousel-scroll.auto-slide {
    animation: carSlideLeft 40s linear infinite;
    width: fit-content;
}

.carousel-scroll.auto-slide-right {
    animation: carSlideRight 45s linear infinite;
    width: fit-content;
}

.carousel-scroll.auto-slide:hover,
.carousel-scroll.auto-slide-right:hover {
    animation-play-state: paused;
}

@keyframes carSlideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes carSlideRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* 슬라이드 좌우 버튼 */
.carousel-wrap {
    position: relative;
}
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-500);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    z-index: 5;
    transition: all .15s;
}
.carousel-nav:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.carousel-nav.prev { left: -18px; }
.carousel-nav.next { right: -18px; }
@media (max-width: 768px) {
    .carousel-nav { display: none; }
}

.carousel-btn {
    display: none;
}

.carousel-btn:hover {
    background: var(--primary);
    color: #fff;
}

.carousel-btn.prev {
    left: -8px;
}

.carousel-btn.next {
    right: -8px;
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }
}

/* Benefits */
/* Benefits — 배경 이미지 + 오버레이 */
.benefits-section {
    position: relative;
    padding: 72px 0;
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/bg/luxury-car.jpg');
    background-size: cover;
    background-position: center;
}

.benefits-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
}

.benefits-header {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.benefits-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.benefits-header p {
    font-size: 15px;
    opacity: .7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.benefit-card {
    text-align: center;
    padding: 28px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transition: all .3s;
    color: #fff;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.benefit-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 14px;
}

.benefit-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.benefit-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Process Steps — 새 디자인 */
.process-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
}

/* (아래에서 재정의) */
.process-step {
    flex: 1;
    text-align: center;
    padding: 28px 16px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: all .3s;
    position: relative;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
    border-color: var(--primary);
}

.process-step:hover .process-num {
    color: var(--primary);
}

.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 14px;
    transition: transform .3s;
}

.process-step:hover .process-icon {
    transform: scale(1.1);
}

.process-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--gray-100);
    margin-bottom: 8px;
    transition: color .3s;
    font-family: 'Arial', sans-serif;
}

.process-step h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.process-step p {
    font-size: 12px;
    color: var(--gray-400);
    line-height: 1.5;
}

.process-arrow {
    display: none;
}

@media (max-width: 768px) {
    .process-steps { flex-wrap: wrap; gap: 16px; }
    .process-arrow { display: none; }
    .process-step { min-width: 45%; }
}

/* Steps (legacy) */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps {
        flex-direction: row;
        gap: 0;
    }
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px 16px;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin: 0 auto 12px;
    position: relative;
    z-index: 2;
}

.step h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step p {
    font-size: 12px;
    color: var(--gray-500);
}

.step::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 2px;
    height: 24px;
    background: var(--gray-300);
    transform: translateX(-50%);
}

.step:last-child::after {
    display: none;
}

@media (min-width: 768px) {
    .step::after {
        bottom: auto;
        top: 44px;
        left: calc(50% + 30px);
        width: calc(100% - 60px);
        height: 2px;
        transform: none;
    }

    .step:last-child::after {
        display: none;
    }
}

/* Reviews */
/* Review slider */
.review-slider {
    display: flex;
    gap: 16px;
    animation: carSlideLeft 35s linear infinite;
    width: fit-content;
    padding: 4px 0;
}

.review-slider:hover {
    animation-play-state: paused;
}

.review-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    position: relative;
    transition: box-shadow .2s, transform .2s;
}

.review-img {
    height: 140px;
    overflow: hidden;
}

.review-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-body {
    padding: 16px;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.review-stars {
    color: var(--secondary);
    font-size: 12px;
    margin-bottom: 8px;
}

.review-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.review-content {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-author {
    font-size: 11px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-author strong {
    color: var(--gray-700);
}

.review-author span {
    color: var(--gray-400);
}

/* Partners */
.partners-scroll {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    align-items: center;
    padding: 10px 0;
    scrollbar-width: none;
}

.partners-scroll::-webkit-scrollbar {
    display: none;
}

.partner-logo {
    flex-shrink: 0;
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
}

/* CTA section */
.cta-section {
    background: var(--primary);
    color: #fff;
    padding: 72px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 16px;
    opacity: .9;
    margin-bottom: 24px;
}

.cta-phone {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cta-section .btn {
    margin: 0 6px;
}


/* ========== CATALOG / FILTER ========== */
/* Page header */
.page-header {
    color: #fff;
    padding: 56px 0 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #1e293b;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .3;
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30,41,59,.6), rgba(30,41,59,.9));
    z-index: 0;
}

/* 페이지별 히어로 배경 */
.page-header.ph-rent::before { background-image: url('../images/bg/road-car.jpg'); }
.page-header.ph-lease::before { background-image: url('../images/bg/luxury-car.jpg'); }
.page-header.ph-promotion::before { background-image: url('../images/bg/classic-car.jpg'); }
.page-header.ph-guide::before { background-image: url('../images/bg/suv-car.jpg'); }
.page-header.ph-faq::before { background-image: url('../images/bg/tesla-car.jpg'); }
.page-header.ph-event::before { background-image: url('../images/bg/sedan-car.jpg'); }
.page-header.ph-nocredit::before { background-image: url('../images/bg/sports-car.jpg'); }
.page-header.ph-quote::before { background-image: url('../images/bg/white-car.jpg'); }

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(30px, 4.5vw, 40px);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.page-header p {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    margin-bottom: 14px;
}

.page-header .result-total {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .12);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
}

.page-header .result-total i {
    font-size: 13px;
    color: var(--secondary);
}

/* 페이지 헤더 안 (다크 배경) */
.page-header .breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 14px;
}
.page-header .breadcrumb a { color: rgba(255, 255, 255, .5); }
.page-header .breadcrumb a:hover { color: #fff; }

/* 일반 (흰 배경) */
.breadcrumb {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 14px;
}
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--primary); }

/* Filter sidebar */
.catalog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 24px;
    padding-bottom: 60px;
}

@media (min-width: 1024px) {
    .catalog-layout {
        grid-template-columns: 260px 1fr;
    }
}

.filter-panel {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 0;
    position: sticky;
    top: 80px;
    height: fit-content;
    display: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.filter-panel.mobile-open {
    display: block;
}

@media (min-width: 1024px) {
    .filter-panel {
        display: block;
    }
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--gray-300);
    background: #fff;
    cursor: pointer;
    margin-bottom: 12px;
}

.filter-toggle-btn i {
    color: var(--primary);
}

@media (min-width: 1024px) {
    .filter-toggle-btn {
        display: none;
    }
}

.filter-section {
    padding: 18px;
    border-bottom: 1px solid var(--gray-100);
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-section h4 i {
    font-size: 11px;
    color: var(--primary);
}

.filter-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 10px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.filter-tab {
    flex: 1;
    padding: 7px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    background: #fff;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    transition: all .15s;
}

.filter-tab.active {
    background: var(--primary);
    color: #fff;
}

.filter-checks {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    color: var(--gray-700);
}

.filter-check:hover {
    color: var(--primary);
}

.filter-check input {
    accent-color: var(--primary);
    width: 15px;
    height: 15px;
}

.filter-check img {
    height: 20px;
    width: auto;
}

.filter-pills {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    border: 1px solid var(--gray-200);
    background: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: all .15s;
    color: var(--gray-600);
}

.filter-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Mobile filter bar */
.mobile-filter-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}

.mobile-filter-bar::-webkit-scrollbar {
    display: none;
}

@media (min-width: 1024px) {
    .mobile-filter-bar {
        display: none;
    }
}

.mobile-filter-btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid var(--gray-300);
    background: #fff;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 500;
}

.mobile-filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Sort bar */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.sort-bar .result-count {
    font-size: 14px;
    color: var(--gray-500);
}

.sort-bar .result-count strong {
    color: var(--dark);
}

.sort-options {
    display: flex;
    gap: 4px;
}

.sort-option {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    color: var(--gray-500);
}

.sort-option.active {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 32px;
}

.pagination button {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-300);
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.pagination button.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination button:hover:not(.active) {
    background: var(--gray-100);
}

.pagination button:disabled {
    opacity: .4;
    cursor: default;
}


/* ========== MODEL DETAIL ========== */
.model-page {
    padding: 24px 0 64px;
}

.model-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

@media (min-width: 1024px) {
    .model-page-grid {
        grid-template-columns: 55% 1fr;
    }
}

/* Gallery */
.model-gallery {
    position: relative;
}

.model-gallery-main {
    aspect-ratio: 4/3;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--gray-400);
    border: 1px solid var(--gray-200);
}

.model-gallery-main img {
    max-width: 92%;
    max-height: 92%;
    object-fit: contain;
    transition: opacity .3s;
}

.model-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.model-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.model-gallery-thumb {
    flex-shrink: 0;
    width: 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: .7;
    transition: opacity .2s, border-color .2s;
}

.model-gallery-thumb.active,
.model-gallery-thumb:hover {
    border-color: var(--primary);
    opacity: 1;
}

.model-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar */
.model-sidebar {
    position: relative;
}

@media (min-width: 1024px) {
    .model-sidebar {
        position: relative;
    }
}

.model-sidebar .brand-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 4px;
}

.model-sidebar h1 {
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.3;
}

.model-sidebar .year-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.model-sidebar .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.model-sidebar .tags span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 12px;
    color: var(--gray-600);
}

.model-sidebar .tags span i {
    font-size: 11px;
    color: var(--primary);
}

.model-sidebar .price-section {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 18px;
}

.model-sidebar .price-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}
.price-tab {
    flex: 1;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: 6px;
    cursor: pointer;
    transition: all .15s;
}
.price-tab:hover { border-color: var(--primary); color: var(--primary); }
.price-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.model-sidebar .price-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 10px;
}

.model-sidebar .price-main .label {
    font-size: 14px;
    color: var(--gray-600);
}

.model-sidebar .price-main .amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}

.model-sidebar .price-monthly {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.model-sidebar .price-monthly .label {
    font-size: 14px;
    color: var(--gray-600);
}

.model-sidebar .price-monthly .amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.model-sidebar .price-monthly .amount small {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-400);
}

.model-sidebar .quick-specs {
    display: flex;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.model-sidebar .quick-spec {
    flex: 1;
    text-align: center;
    padding: 10px 6px;
    border-right: 1px solid var(--gray-200);
}

.model-sidebar .quick-spec:last-child {
    border-right: none;
}

.model-sidebar .quick-spec .qs-label {
    font-size: 10px;
    color: var(--gray-400);
    margin-bottom: 3px;
}

.model-sidebar .quick-spec .qs-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    word-break: keep-all;
}

.model-sidebar .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.model-sidebar .cta-buttons .btn {
    font-size: 15px;
    padding: 14px;
}

/* Spec grid */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 36px 0;
}

@media (max-width: 640px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.spec-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 22px;
    text-align: center;
    transition: all .2s;
}

.spec-card:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(37, 99, 235, .1);
}

.spec-card .spec-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto 10px;
}

.spec-card .spec-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.spec-card .spec-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
}

/* Trim section */
/* Trim section — 카드형 리스트 */
.trim-section {
    margin: 36px 0;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.trim-section-header {
    padding: 18px 24px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trim-section-header h3 {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trim-tabs {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 6px;
    overflow: hidden;
}

.trim-tab {
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 600;
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,.6);
    transition: all .15s;
}

.trim-tab.active {
    background: #fff;
    color: var(--gray-800);
}

.trim-list {
    max-height: 500px;
    overflow-y: auto;
}

.trim-item {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: background .1s;
    gap: 16px;
}

.trim-item:last-child {
    border-bottom: none;
}

.trim-item:hover {
    background: #f8fafc;
}

.trim-item .trim-info {
    flex: 1;
    min-width: 0;
}

.trim-item .trim-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.trim-item .trim-detail {
    font-size: 11px;
    color: var(--gray-400);
}

.trim-item .trim-price-wrap {
    text-align: right;
    flex-shrink: 0;
}

.trim-item .trim-car-price {
    font-size: 11px;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.trim-item .trim-monthly {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

.trim-item .trim-monthly small {
    font-size: 11px;
    font-weight: 400;
    color: var(--gray-400);
}

.trim-item .trim-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    background: var(--primary-light);
    color: var(--primary);
    flex-shrink: 0;
}

.trim-disclaimer {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 10px;
    padding-left: 4px;
}

.trim-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-400);
    font-size: 14px;
    background: var(--gray-50);
    border-radius: 8px;
}

/* Color Selector */
.color-section {
    margin: 16px 0 0;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.color-section h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 6px;
}

.color-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s;
    position: relative;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary);
}

.color-swatch img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.color-name {
    margin-top: 12px;
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.color-name strong {
    color: var(--gray-900);
}

/* Options */
.option-section {
    margin: 16px 0 0;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.option-section h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 6px;
}

.option-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    cursor: pointer;
    transition: all .15s;
}

.option-item:hover {
    border-color: var(--primary);
    background: #f0f5ff;
}

.option-item.selected {
    border-color: var(--primary);
    background: #eff6ff;
}

.option-item input {
    accent-color: var(--primary);
}

.option-item .opt-name {
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-700);
}

.option-item .opt-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* Model page reviews */
.model-reviews {
    margin: 40px 0;
}

.model-reviews h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.model-reviews .carousel-scroll {
    gap: 16px;
}

/* Model page partners */
.model-partners {
    margin: 40px 0;
    text-align: center;
}

.model-partners h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.model-partners .subtitle {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.model-partners .partner-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.model-partners .partner-badge {
    padding: 8px 18px;
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
}


/* ========== QUOTE PAGE ========== */

/* --- Quote 스텝 네비게이션 --- */
.quote-nav {
    background: #1e293b;
}
.quote-nav-inner {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    height: 48px;
}
.quote-nav-back {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: 14px;
    text-decoration: none;
    transition: all .15s;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,.08);
}
.quote-nav-back:hover { background: rgba(255,255,255,.05); color: #fff; }
.quote-steps {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}
.quote-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    height: 48px;
    cursor: default;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    white-space: nowrap;
    transition: all .2s;
    position: relative;
}
.quote-step.active {
    color: #fff;
    background: rgba(255,255,255,.07);
}
.quote-step.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}
.quote-step.done {
    color: rgba(255,255,255,.6);
}
.qs-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
    transition: all .2s;
}
.quote-step.active .qs-dot { background: var(--primary); box-shadow: 0 0 0 3px rgba(55,114,232,.3); }
.quote-step.done .qs-dot { background: #10b981; }
.qs-sep {
    font-size: 10px;
    color: rgba(255,255,255,.15);
    margin: 0 2px;
}
.quote-nav-badge {
    margin-left: auto;
    margin-right: 16px;
    padding: 4px 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.6);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

/* --- Body --- */
.quote-body {
    background: #fff;
    min-height: calc(100vh - 200px);
    padding: 0 0 64px;
    border-bottom: 1px solid #e5e7eb;
}

/* --- Panels --- */
.quote-panel { display: none; animation: fadeIn .3s ease; }
.quote-panel.active { display: block; }

/* --- Actions bar --- */
.qp-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}
.qp-actions-info {
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 6px;
}
.qp-actions-info i { color: var(--primary); }

/* ===== STEP 1: 사이드바 + 그리드 ===== */
.quote-s1-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 200px);
}
.quote-s1-sidebar {
    background: #fff;
    border-right: 1px solid #e5e7eb;
    padding: 0 0 20px;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    position: sticky;
    top: 130px;
}
.quote-sb-head {
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fafbfc;
}
.quote-sb-head i { color: var(--primary); font-size: 13px; }
.quote-s1-main { padding: 24px 32px; }
.quote-s1-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #111827;
}
.quote-s1-label {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}
.quote-s1-label i { color: var(--primary); font-size: 15px; }
.quote-s1-count {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

/* --- Brand tabs --- */
.quote-brand-tabs {
    display: flex;
    margin: 0;
    border-bottom: none;
}
.quote-brand-tab {
    flex: 1;
    padding: 12px 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #9ca3af;
    cursor: pointer;
    border: none;
    background: #f9fafb;
    transition: all .2s;
    border-bottom: 2px solid transparent;
}
.quote-brand-tab:first-child { border-right: 1px solid #e5e7eb; }
.quote-brand-tab:hover { color: #6b7280; background: #f3f4f6; }
.quote-brand-tab.active {
    color: var(--primary);
    background: #fff;
    border-bottom-color: var(--primary);
}

/* --- Brand vertical list --- */
.quote-brands {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
}
.quote-brand-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all .15s;
    background: transparent;
    border-left: 3px solid transparent;
}
.quote-brand-item:hover {
    background: #f8fafc;
    border-left-color: #e5e7eb;
}
.quote-brand-item.selected {
    background: #eef4ff;
    border-left-color: var(--primary);
}
.quote-brand-item img {
    height: 26px;
    width: 26px;
    object-fit: contain;
    flex-shrink: 0;
}
.quote-brand-item i {
    font-size: 18px;
    color: #b0b8c1;
    width: 26px;
    text-align: center;
    flex-shrink: 0;
}
.quote-brand-item.selected i { color: var(--primary); }
.quote-brand-item span {
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    line-height: 1.2;
}
.quote-brand-item.selected span { color: var(--primary); font-weight: 700; }

/* --- Car grid (4열) --- */
.quote-car-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* --- Empty state --- */
.qp-empty {
    color: #9ca3af;
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
    border: 2px dashed #dfe3e8;
    border-radius: 12px;
    background: #fff;
    line-height: 1.8;
}
.qp-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.qp-empty-icon i { font-size: 28px; color: #d1d5db; }
.qp-empty strong {
    display: block;
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 6px;
}
.qp-empty span { font-size: 13px; color: #9ca3af; }

/* --- Car card --- */
.quote-car-card {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 12px 16px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    background: #fff;
    position: relative;
}
.quote-car-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(55,114,232,.08);
}
.quote-car-card.selected {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, #f0f4ff, #fff);
    box-shadow: 0 0 0 2px rgba(55,114,232,.12);
}
.quote-car-card.selected::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 8px;
    left: 8px;
    color: var(--primary);
    font-size: 16px;
}
.quote-car-card .qcc-logo {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 16px;
    opacity: .25;
}
.quote-car-card img.qcc-car-img {
    height: 85px;
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform .2s;
}
.quote-car-card:hover img.qcc-car-img { transform: scale(1.03); }
.quote-car-card .qcc-name {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 1.3;
}
.quote-car-card .qcc-price {
    font-size: 11px;
    color: #dc2626;
    font-weight: 700;
    background: #fef2f2;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* ===== STEP 2: 차량 히어로 카드 ===== */
.quote-s2-hero {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 32px;
    margin-top: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.quote-s2-hero-img {
    width: 280px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quote-s2-hero-img img {
    max-width: 260px;
    max-height: 160px;
    object-fit: contain;
    transition: opacity .2s;
}
.quote-s2-hero-info { flex: 1; }
.quote-s2-hero-brand {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .5px;
    display: block;
    margin-bottom: 4px;
}
.quote-s2-hero-info h2 {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 6px;
}
.quote-s2-hero-price {
    font-size: 15px;
    color: #dc2626;
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
}
/* 색상 스와치 */
.quote-s2-colors {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}
.quote-s2-colors-label {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    margin-right: 4px;
}
.qs2-color-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all .15s;
    position: relative;
}
.qs2-color-dot:hover { transform: scale(1.15); }
.qs2-color-dot.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(55,114,232,.25);
}
.qs2-color-name {
    font-size: 11px;
    color: #6b7280;
    margin-left: 6px;
    font-weight: 500;
}
@media (max-width: 768px) {
    .quote-s2-hero { flex-direction: column; gap: 16px; padding: 20px; }
    .quote-s2-hero-img { width: 100%; }
}

.quote-s2-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    padding: 24px 0 0;
}
.quote-s2-left {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}
.qs2-left-title {
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    background: #fafbfc;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 8px;
}
.qs2-left-title i { color: var(--primary); font-size: 14px; }
.quote-s2-right {
    position: sticky;
    top: 160px;
    height: fit-content;
}

/* --- Condition sections --- */
.qs2-section {
    padding: 20px 24px;
    border-bottom: 1px solid #f3f4f6;
}
.qs2-section:last-child { border-bottom: none; }
.qs2-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.qs2-section-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.qs2-section-icon i { font-size: 14px; color: var(--primary); }
.qs2-section-head h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    padding: 0;
    border: none;
}
.qs2-section-head p {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 1px;
}

/* --- Pill buttons --- */
.qs2-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.qs2-pill {
    padding: 10px 22px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.qs2-pill small {
    font-size: 10px;
    font-weight: 500;
    color: #9ca3af;
}
.qs2-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #fafcff;
}
.qs2-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(55,114,232,.2);
}
.qs2-pill.active small { color: rgba(255,255,255,.7); }

/* --- Price card --- */
.qs2-price-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.qs2-price-head {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}
.qs2-price-head i { font-size: 13px; opacity: .7; }
.qs2-price-body { padding: 16px 20px; }
.qs2-price-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 13px;
    color: #6b7280;
    border-bottom: 1px solid #f9fafb;
}
.qs2-price-row:last-child { border-bottom: none; }
.qs2-val { font-weight: 600; color: #1f2937; }
.qs2-price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}
.qs2-price-total span:last-child {
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
}
.qs2-price-note {
    padding: 12px 20px;
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.5;
    display: flex;
    gap: 6px;
    align-items: flex-start;
}
.qs2-price-note i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.qs2-next-btn {
    margin-top: 12px;
    padding: 15px !important;
    font-size: 15px !important;
    border-radius: 8px;
}
.qs2-trust {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
}
.qs2-trust-item {
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 4px;
}
.qs2-trust-item i { font-size: 10px; color: var(--primary); }

/* ===== STEP 3: 고객정보 ===== */
.qs3-top-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 22px 28px;
    margin-bottom: 20px;
    margin-top: 28px;
    box-shadow: 0 1px 4px rgba(0,0,0,.03);
}
.qs3-top-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-light), #dbeafe);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.qs3-top-icon i { font-size: 22px; color: var(--primary); }
.qs3-top-card h3 { font-size: 18px; font-weight: 800; color: #111827; margin-bottom: 4px; }
.qs3-top-card p { font-size: 13px; color: #6b7280; line-height: 1.5; }

.qs3-summary {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}
.qs3-form {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.03);
}
.qs3-form-title {
    padding: 18px 28px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    background: #fafbfc;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 8px;
}
.qs3-form-title i { color: var(--primary); font-size: 14px; }
.qs3-form > *:not(.qs3-form-title):not(.qp-actions) { padding-left: 28px; padding-right: 28px; }
.qs3-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 24px;
}
.qs3-form .form-group { margin-bottom: 18px; }
.qs3-form .form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
}
.qs3-form .form-label i { font-size: 12px; color: var(--primary); }
.qs3-form .form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #1f2937;
    background: #fff;
    transition: all .2s;
    box-sizing: border-box;
}
.qs3-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(55, 114, 232, .08);
}
.qs3-form .form-control::placeholder { color: #c4c9d1; }
.qs3-form textarea.form-control { resize: vertical; min-height: 80px; }

/* --- 동의 체크박스 --- */
.qs3-agree {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    margin: 0;
    background: #f9fafb;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}
.qs3-agree input[type="checkbox"] { display: none; }
.qs3-agree label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4b5563;
    cursor: pointer;
}
.qs3-check-box {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    flex-shrink: 0;
}
.qs3-check-box i { font-size: 10px; color: transparent; }
.qs3-agree input:checked + label .qs3-check-box {
    background: var(--primary);
    border-color: var(--primary);
}
.qs3-agree input:checked + label .qs3-check-box i { color: #fff; }
.qs3-agree a { color: var(--primary); font-weight: 600; }

/* 하단 버튼 행 */
.qs3-btn-row {
    display: flex;
    gap: 12px;
    padding: 20px 28px 28px;
}
.qs3-btn-prev {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all .15s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.qs3-btn-prev:hover { border-color: #9ca3af; color: #374151; }
.qs3-btn-submit {
    flex: 1;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.qs3-btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(55,114,232,.25);
}

/* --- 하단 신뢰 배지 --- */
.qs3-benefits {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    padding: 18px 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}
.qs3-benefit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
}
.qs3-benefit i {
    width: 28px;
    height: 28px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--primary);
}

/* --- Quote responsive --- */
@media (max-width: 1024px) {
    .quote-s1-layout { grid-template-columns: 200px 1fr; }
    .quote-car-grid { grid-template-columns: repeat(3, 1fr); }
    .quote-s2-layout { grid-template-columns: 1fr 280px; }
    .quote-step-line { width: 36px; }
}
@media (max-width: 768px) {
    .quote-s1-layout { grid-template-columns: 1fr; }
    .quote-s1-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        overflow-y: visible;
    }
    .quote-sb-head { display: none; }
    .quote-brands { flex-direction: row; flex-wrap: wrap; gap: 6px; padding: 10px; }
    .quote-brand-item { padding: 8px 12px; border-left: none; border: 1.5px solid #e5e7eb; border-radius: 8px; }
    .quote-brand-item.selected { border-color: var(--primary); }
    .quote-car-grid { grid-template-columns: repeat(2, 1fr); }
    .quote-s1-main { padding: 16px; }
    .quote-s2-layout { grid-template-columns: 1fr; }
    .quote-s2-right { position: static; }
    .qs3-form-row { grid-template-columns: 1fr; }
    .qs3-benefits { flex-wrap: wrap; gap: 12px; padding: 14px; }
    .quote-step { padding: 0 12px; font-size: 12px; }
    .qs-sep { display: none; }
    .quote-nav-badge { display: none; }
    .quote-nav-back { width: 40px; }
    .qs2-section { padding: 16px 18px; }
}


/* ========== PROMOTION (즉시출고) ========== */
.promo-hero {
    background: linear-gradient(135deg, rgba(30,41,59,.92), rgba(15,23,42,.95)),
                url('../images/bg/hero-car.jpg') center/cover no-repeat;
    padding: 48px 0;
    overflow: hidden;
}
.promo-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.promo-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--secondary);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}
.promo-hero-text h1 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}
.promo-hero-text h1 em {
    color: var(--secondary);
    font-style: normal;
}
.promo-hero-text p {
    font-size: 15px;
    color: rgba(255,255,255,.6);
    margin-bottom: 24px;
}
.promo-hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}
.promo-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.promo-stat strong {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}
.promo-stat span {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    font-weight: 500;
}
.promo-stat-sep {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,.1);
}
.promo-hero-visual {
    font-size: 80px;
    color: rgba(255,255,255,.06);
}

/* 필터 */
.promo-filter-section {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
}
.promo-filters {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}
.promo-filter-btn {
    padding: 8px 20px;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all .15s;
}
.promo-filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.promo-filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.promo-cat-filters {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.promo-cat-btn {
    padding: 5px 14px;
    border: none;
    background: none;
    font-size: 13px;
    font-weight: 500;
    color: #9ca3af;
    cursor: pointer;
    border-radius: 4px;
    transition: all .15s;
}
.promo-cat-btn:hover { color: #374151; background: #f3f4f6; }
.promo-cat-btn.active { color: var(--primary); font-weight: 700; background: var(--primary-light); }

/* 리스트 */
.promo-list-section { padding: 28px 0 48px; }
.promo-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #111827;
}
.promo-result-count {
    font-size: 14px;
    color: #6b7280;
}
.promo-result-count strong { color: var(--primary); font-size: 16px; }
.promo-sort { display: flex; gap: 4px; }
.promo-sort-btn {
    padding: 5px 12px;
    border: none;
    background: none;
    font-size: 12px;
    color: #9ca3af;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
}
.promo-sort-btn:hover { color: #374151; }
.promo-sort-btn.active { color: #111827; background: #f3f4f6; }

/* 카드 그리드 */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* 카드 */
.promo-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all .2s;
    position: relative;
}
.promo-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.promo-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    gap: 4px;
}
.pcb {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}
.pcb-fast {
    background: linear-gradient(135deg, var(--secondary), #ea580c);
    color: #fff;
}
.promo-card-img {
    padding: 20px 16px 12px;
    background: linear-gradient(180deg, #f8fafc, #fff);
    text-align: center;
}
.promo-card-img img {
    height: 110px;
    object-fit: contain;
    transition: transform .2s;
    display: block;
    margin: 0 auto;
}
.promo-card:hover .promo-card-img img { transform: scale(1.04); }
.promo-card-body { padding: 14px 16px 16px; }
.promo-card-brand {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
}
.promo-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 4px 0 10px;
    line-height: 1.3;
}
.promo-card-price {
    margin-bottom: 4px;
}
.promo-card-monthly {
    font-size: 13px;
    color: #374151;
    font-weight: 600;
}
.promo-card-monthly em {
    font-style: normal;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}
.promo-card-meta {
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 12px;
}
.promo-card-actions {
    display: flex;
    gap: 6px;
}
.promo-card-actions .btn { flex: 1; font-size: 12px; padding: 8px 0; }

/* 혜택 */
.promo-benefits {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 48px 0;
}
.promo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.promo-benefit-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
}
.pbc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.pbc-icon i { font-size: 20px; color: var(--primary); }
.promo-benefit-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}
.promo-benefit-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* 즉시출고 모달 */
.promo-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(4px);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.promo-modal-overlay.open { display: flex; }
.promo-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    position: relative;
    animation: modalSlideUp .3s ease;
    overflow: hidden;
}
.promo-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background .15s;
}
.promo-modal-close:hover { background: rgba(255,255,255,.35); }
.promo-modal-header {
    background: linear-gradient(135deg, var(--secondary), #ea580c);
    color: #fff;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.promo-modal-header > i { font-size: 22px; }
.promo-modal-header h3 { font-size: 18px; font-weight: 800; margin: 0; }
.promo-modal-header p { font-size: 12px; opacity: .8; margin: 2px 0 0; }
.promo-modal-car {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}
.promo-modal-car > i { font-size: 20px; color: var(--secondary); }
.promo-modal-car strong { font-size: 15px; color: #111827; display: block; }
.promo-modal-car span { font-size: 12px; color: #10b981; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.promo-modal-car span i { font-size: 10px; }
.promo-modal-form { padding: 20px 24px 24px; }
.promo-modal-form .form-group { margin-bottom: 14px; }
.promo-modal-form label { display: block; font-size: 12px; font-weight: 600; color: var(--gray-500); margin-bottom: 5px; }
.promo-modal-form input[type="text"],
.promo-modal-form input[type="tel"] {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color .15s;
}
.promo-modal-form input:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(55,114,232,.08); }
.promo-modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.promo-modal-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary), #ea580c);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s;
}
.promo-modal-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(234,88,12,.3); }

@media (max-width: 1024px) {
    .promo-grid { grid-template-columns: repeat(3, 1fr); }
    .promo-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .promo-hero-inner { flex-direction: column; text-align: center; }
    .promo-hero-text h1 { font-size: 28px; }
    .promo-hero-stats { justify-content: center; }
    .promo-hero-visual { display: none; }
    .promo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .promo-benefits-grid { grid-template-columns: 1fr 1fr; }
}


/* ========== NOCREDIT ========== */
.nocredit-hero {
    background: linear-gradient(135deg, rgba(30,41,59,.92), rgba(15,23,42,.95)),
                url('../images/bg/luxury-car.jpg') center/cover no-repeat;
    color: #fff;
    padding: 56px 0;
    text-align: center;
}
.nocredit-hero h1 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    margin-bottom: 8px;
}

/* 레이아웃 */
.nc-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 36px;
    align-items: start;
}
.nc-section-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 혜택 카드 */
.nc-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.nc-benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    transition: border-color .15s;
}
.nc-benefit:hover { border-color: var(--primary); }
.nc-benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}
.nc-benefit strong { font-size: 14px; color: #111827; display: block; }
.nc-benefit p { font-size: 12px; color: #9ca3af; margin: 2px 0 0; }

/* 추천 */
.nc-recommend {
    margin-top: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}
.nc-recommend-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #fef9c3, #fef3c7);
    border-bottom: 1px solid #fde68a;
}
.nc-recommend-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.nc-recommend-icon i { font-size: 18px; color: #f59e0b; }
.nc-recommend-header strong { font-size: 15px; font-weight: 700; color: #92400e; display: block; }
.nc-recommend-header p { font-size: 12px; color: #a16207; margin: 2px 0 0; }
.nc-recommend-list {
    padding: 14px 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}
.nc-recommend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 13px;
    color: #374151;
    border-bottom: 1px solid #f9fafb;
    line-height: 1.4;
}
.nc-recommend-item:last-child { border-bottom: none; }
.nc-recommend-item i { color: #10b981; font-size: 12px; flex-shrink: 0; }
.nc-recommend-item b { color: var(--primary); }

/* 실시간 승인현황 */
.nc-approval {
    margin-top: 28px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}
.nc-approval-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #fafbfc;
    border-bottom: 1px solid #e5e7eb;
}
.nc-approval-header h3 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nc-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: blink 1.2s infinite;
    display: inline-block;
}
.nc-approval-desc {
    font-size: 12px;
    color: #9ca3af;
}
.nc-approval-desc strong { color: var(--primary); }
.nc-approval-list {
    max-height: 360px;
    overflow-y: auto;
}
.nc-approval-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 10px 18px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 13px;
    transition: background .1s;
}
.nc-approval-row:last-child { border-bottom: none; }
.nc-approval-row:hover { background: #f9fafb; }
.nc-ar-name {
    width: 60px;
    font-weight: 600;
    color: #374151;
    flex-shrink: 0;
}
.nc-ar-car {
    flex: 1;
    color: #111827;
    font-weight: 600;
}
.nc-ar-type {
    width: 65px;
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
    flex-shrink: 0;
}
.nc-ar-status {
    width: 60px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}
.nc-ar-status.approved { background: #ecfdf5; color: #059669; }
.nc-ar-status.pending { background: #fef3c7; color: #d97706; }
.nc-ar-time {
    width: 70px;
    text-align: right;
    font-size: 11px;
    color: #9ca3af;
    flex-shrink: 0;
}

/* 신청폼 */
.nc-form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    position: sticky;
    top: 120px;
}
.nc-form-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--primary);
    color: #fff;
}
.nc-form-header i { font-size: 22px; opacity: .8; }
.nc-form-header h2 { font-size: 18px; font-weight: 800; margin: 0; }
.nc-form-header p { font-size: 12px; opacity: .7; margin: 2px 0 0; }
.nc-form { padding: 24px; }
.nc-form .form-group { margin-bottom: 16px; }
.nc-form .form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}
.nc-form .form-label i { font-size: 12px; color: var(--primary); }
.nc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.nc-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
    margin: 14px 0;
    padding: 10px 12px;
    background: #f9fafb;
    border-radius: 8px;
}
.nc-privacy a { color: var(--primary); font-weight: 600; }
.nc-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.nc-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(55,114,232,.25);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

@media (max-width: 768px) {
    .nc-layout { grid-template-columns: 1fr; }
    .nc-form-card { position: static; }
    .nc-form-row { grid-template-columns: 1fr; }
}


/* ========== GUIDE ========== */
.guide-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0;
    overflow-x: auto;
}

.guide-tab {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-500);
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: all .2s;
}

.guide-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.guide-panel {
    display: none;
}

.guide-panel.active {
    display: block;
}

.guide-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--dark);
}

.guide-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 12px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 20px 0;
}

.compare-table th,
.compare-table td {
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.compare-table th {
    background: var(--gray-100);
    font-weight: 600;
}

.compare-table .highlight {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
}

/* Guide 혜택 그리드 (밝은 배경용) */
.guide-panel .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.guide-panel .benefit-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: border-color .15s, box-shadow .15s;
}
.guide-panel .benefit-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(55,114,232,.08);
}
.guide-panel .benefit-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: var(--primary);
}
.guide-panel .benefit-card h4 { font-size: 15px; font-weight: 700; color: #111827; margin-bottom: 6px; }
.guide-panel .benefit-card p { font-size: 13px; color: var(--gray-500); }

/* 서류 카드 */
.doc-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}
.doc-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.doc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}
.doc-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.doc-card ul {
    font-size: 13px;
    color: var(--gray-600);
    padding-left: 18px;
    line-height: 2;
    list-style: none;
}
.doc-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--primary);
    margin-right: 8px;
}

/* 이용절차 (guide 내) */
.guide-panel .steps {
    display: flex;
    justify-content: center;
    gap: 0;
}
.guide-panel .step {
    flex: 1;
    text-align: center;
    padding: 20px 16px;
    position: relative;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin: 0 8px;
}
.guide-panel .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.guide-panel .step h4 { font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 4px; }
.guide-panel .step p { font-size: 12px; color: var(--gray-500); }
.guide-panel .step::after { display: none; }

@media (max-width: 768px) {
    .guide-panel .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .doc-list { grid-template-columns: 1fr; }
    .guide-panel .steps { flex-direction: column; gap: 10px; }
    .guide-panel .step { margin: 0; }
}


/* ========== FAQ ========== */
.faq-list {
    max-width: 100%;
    margin: 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    color: var(--dark);
    transition: color .15s;
}

.faq-question::before {
    content: 'Q';
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-question span {
    flex: 1;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform .3s;
    color: var(--gray-300);
    flex-shrink: 0;
    font-size: 12px;
}

.faq-item.open .faq-question {
    color: var(--primary);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 0 18px 44px;
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.8;
}

.faq-answer-inner::before {
    content: 'A';
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    font-weight: 800;
    margin-right: 10px;
    vertical-align: middle;
}

/* Event cards */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.event-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all .3s;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.event-card-img {
    height: 160px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
}

.event-card-body {
    padding: 20px;
}

.event-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.event-card-body p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.event-card-date {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 8px;
}


/* ========== FORMS ========== */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 15px;
    transition: border-color .2s;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-help {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Radio cards */
.radio-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
}

.radio-card {
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    padding: 14px 12px;
    text-align: center;
    cursor: pointer;
    transition: all .15s;
    background: #fff;
}

.radio-card:hover {
    border-color: var(--primary);
    background: #fafbff;
}

.radio-card.selected {
    border-color: var(--primary);
    background: #eff6ff;
    box-shadow: 0 0 0 1px var(--primary);
}

.radio-card h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 2px;
    color: var(--gray-800);
}

.radio-card p {
    font-size: 12px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.4;
}

.radio-card.selected h5 {
    color: var(--primary);
}

.radio-card i {
    margin-right: 4px;
}

/* Brand selector (models page) */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

@media (max-width: 768px) {
    .brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brand-grid .brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    cursor: pointer;
    transition: all .15s;
    background: #fff;
    text-align: center;
}

.brand-grid .brand-item:hover {
    border-color: var(--primary);
    background: #fafbff;
}

.brand-grid .brand-item.selected {
    border-color: var(--primary);
    background: #eff6ff;
    box-shadow: 0 0 0 1px var(--primary);
}

.brand-grid .brand-item img {
    height: 28px;
    width: auto;
}

.brand-grid .brand-item span {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-600);
}

.brand-item {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    font-size: 13px;
    font-weight: 600;
}

.brand-item:hover {
    border-color: var(--primary-light);
}

.brand-item.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

.brand-item i {
    font-size: 24px;
    display: block;
    margin-bottom: 6px;
    color: var(--gray-400);
}

.brand-item.selected i {
    color: var(--primary);
}


/* ========== MODALS ========== */
/* Quote Modal */
.quote-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quote-modal-overlay.open {
    display: flex;
}

.quote-modal {
    background: #fff;
    border-radius: 8px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    position: relative;
    animation: modalSlideUp .3s ease;
    overflow: hidden;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-modal-header {
    background: var(--primary);
    padding: 22px 28px;
    color: #fff;
}

.quote-modal-header h3 {
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}

.quote-modal-header h3 i {
    font-size: 18px;
}

.quote-modal-header p {
    font-size: 13px;
    opacity: .8;
}

.quote-modal-body {
    padding: 24px 28px 28px;
}

.quote-modal .car-name-display {
    background: linear-gradient(135deg, var(--primary-light), #e0e7ff);
    border: 1px solid rgba(37, 99, 235, .15);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-modal .car-name-display i {
    font-size: 16px;
    color: var(--primary);
}

.quote-modal .form-group {
    margin-bottom: 14px;
}

.quote-modal .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.quote-modal .form-group .input-wrap {
    position: relative;
}

.quote-modal .form-group .input-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 14px;
}

.quote-modal .form-group .input-wrap input,
.quote-modal .form-group .input-wrap select {
    padding-left: 36px;
}

.quote-modal input,
.quote-modal select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-size: 14px;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
}

.quote-modal input:focus,
.quote-modal select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.quote-modal .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: background .2s;
    z-index: 1;
}

.quote-modal .modal-close:hover {
    background: rgba(255, 255, 255, .35);
}

.quote-modal .service-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.quote-modal .service-pill {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--gray-200);
    background: #fff;
    color: var(--gray-500);
    transition: all .2s;
}

.quote-modal .service-pill.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.quote-modal .service-pill input {
    display: none;
}

.quote-modal .privacy-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-500);
    margin: 14px 0;
    padding: 10px 12px;
    background: var(--gray-50);
    border-radius: 8px;
}

.quote-modal .privacy-check input {
    width: auto;
    accent-color: var(--primary);
}

.quote-modal .submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: #fff;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quote-modal .submit-btn:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, .3);
}

.quote-modal .submit-btn:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}

.quote-modal .submit-btn .spinner {
    width: 18px;
    height: 18px;
    border-width: 2px;
    border-top-color: #fff;
}

/* Privacy Modal */
.privacy-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9100;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
}

.privacy-modal-overlay.open {
    display: flex;
}

.privacy-modal {
    background: #fff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.privacy-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    border-radius: 8px 16px 0 0;
}

.privacy-modal-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.privacy-modal-body {
    padding: 24px;
}

.privacy-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section .agree-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 14px;
}

.privacy-section .agree-check input {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.privacy-section .agree-check .required {
    color: var(--primary);
}

.privacy-section .agree-check .optional {
    color: var(--gray-400);
}

.privacy-detail {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.8;
}

.privacy-detail strong {
    display: block;
    color: var(--gray-700);
    margin: 8px 0 4px;
    font-size: 13px;
}

.privacy-detail ul {
    padding-left: 16px;
    margin: 4px 0;
}

.privacy-detail li {
    margin: 2px 0;
}

.privacy-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-200);
    position: sticky;
    bottom: 0;
    background: #fff;
    border-radius: 0 0 16px 16px;
}


/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: all .2s;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
}

.btn-block {
    width: 100%;
}


/* ========== FOOTER ========== */
.site-footer {
    background: var(--gray-100);
    color: var(--gray-500);
    padding: 40px 0 24px;
    font-size: 13px;
    border-top: 1px solid var(--gray-200);
}

.footer-info {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-info strong {
    color: var(--gray-700);
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copy {
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-400);
    font-size: 12px;
}

/* Login page */
.login-wrap {
    max-width: 400px;
    margin: 60px auto;
    padding: 0 20px;
}

.login-box {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 22px;
}

/* Terms/Privacy */
.legal-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px 60px;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 0 12px;
}

.legal-content p,
.legal-content li {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
}


/* ========== UTILITIES ========== */
/* Toast */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 14px 20px;
    border-radius: var(--radius);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    animation: slideIn .3s;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 360px;
}

.toast-success {
    background: var(--success);
}

.toast-error {
    background: var(--danger);
}

.toast-info {
    background: var(--primary);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 12px;
}

.empty-state p {
    font-size: 16px;
}

/* Mobile floating CTA */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--gray-200);
    padding: 12px 16px;
    z-index: 999;
    display: flex;
    gap: 10px;
}

@media (min-width: 1024px) {
    .mobile-cta {
        display: none;
    }
}

.mobile-cta .btn {
    flex: 1;
}

/* Quick floating buttons */
.quick-float {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 1023px) {
    .quick-float {
        right: 12px;
        bottom: 80px;
    }
}

.quick-float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all .2s;
}

.quick-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.quick-float-btn.qf-phone {
    background: var(--primary);
}

.quick-float-btn.qf-quote {
    background: var(--secondary);
}

.quick-float-btn.qf-kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.quick-float-btn.qf-top {
    background: #fff;
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    font-size: 16px;
}

.quick-float-btn.qf-top:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.quick-float-label {
    position: absolute;
    right: 62px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
}

.quick-float-btn:hover .quick-float-label {
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn .5s ease;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin .6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    flex-direction: column;
    gap: 12px;
    color: var(--gray-400);
}


/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 48px 0;
    }

    .hero {
        padding: 0;
    }

    .hero-inner {
        padding: 16px;
    }

    .hero-banner {
        min-height: 240px;
        border-radius: 8px 8px 0 0;
    }

    .hero-form-card {
        border-radius: 0 0 8px 8px;
        border-top: none;
    }

    .page-header {
        padding: 36px 0 32px;
    }

    .page-header h1 {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .benefit-card {
        padding: 20px 12px;
    }

    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .trim-section {
        padding: 20px;
    }
}

/* ========== PARTNERS SLIDER ========== */
.partners-section {
    padding: 48px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.partners-slider {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 0;
    animation: partnerSlide 30s linear infinite;
    width: fit-content;
}

.partner-item {
    flex-shrink: 0;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.partner-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
}

@keyframes partnerSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Review section 배경 */
.review-section {
    position: relative;
    padding: 56px 0;
    overflow: hidden;
}
.review-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/bg/hero-car.jpg');
    background-size: cover;
    background-position: center;
}
.review-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
}

/* 이용절차 순차 애니메이션 */
.process-steps .process-step {
    opacity: 0;
    transform: translateY(24px);
}
.process-steps .process-step.animate-in {
    animation: processIn .5s ease forwards;
}
@keyframes processIn {
    to { opacity: 1; transform: translateY(0); }
}

/* FAQ Home 2-column layout */
.faq-home-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 768px) {
    .faq-home-grid {
        grid-template-columns: 300px 1fr;
        gap: 48px;
    }
}
.faq-home-left h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}
.faq-home-left p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
}
.faq-home-right {
    min-width: 0;
}

/* FAQ 전체 페이지 2-column */
.faq-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 768px) {
    .faq-page-grid {
        grid-template-columns: 200px 1fr;
        gap: 20px;
    }
}
.faq-page-sidebar h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}
.faq-cat-btn {
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: none;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .15s;
}
.faq-cat-btn:hover {
    background: var(--gray-50);
    color: var(--dark);
}
.faq-cat-btn.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
}
.faq-cat-btn i {
    width: 18px;
    text-align: center;
    font-size: 13px;
}
.faq-page-content {
    min-width: 0;
}

/* ========== MOBILE 320px ~ 480px 최적화 ========== */
@media (max-width: 480px) {
    /* 글로벌 */
    .container { padding: 0 12px; }

    /* 헤더 */
    .header-main .container { padding: 8px 12px; }
    .header-phone { display: none; }

    /* 메인네비 숨김 (모바일 네비 사용) */
    .main-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .main-nav a { padding: 10px 10px; font-size: 11px; white-space: nowrap; }
    .main-nav a i { display: none; }

    /* 히어로 */
    .hero-inner { flex-direction: column; padding: 0; }
    .hero-banner { min-height: 200px; }
    .hero-banner-content h2 { font-size: 22px; }
    .hero-form-card { margin: -20px 12px 0; position: relative; z-index: 2; }
    .hero-form-card h3 { font-size: 16px; }

    /* 섹션 */
    .section-header h2 { font-size: 18px; }

    /* 카드 그리드 */
    .cars-grid { grid-template-columns: 1fr !important; gap: 12px; }
    .car-card-img img { height: 140px; }

    /* 즉시출고 */
    .promo-hero { padding: 32px 0; }
    .promo-hero-text h1 { font-size: 24px; }
    .promo-hero-stats { gap: 16px; }
    .promo-stat strong { font-size: 18px; }
    .promo-grid { grid-template-columns: 1fr !important; }
    .promo-filter-section { padding: 12px 0; }
    .promo-filters { flex-wrap: wrap; }
    .promo-cat-filters { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    .promo-cat-btn { white-space: nowrap; flex-shrink: 0; }
    .promo-benefits-grid { grid-template-columns: 1fr !important; }

    /* 견적 */
    .quote-nav-inner { height: 44px; }
    .quote-step { padding: 0 8px; font-size: 11px; }
    .quote-s1-main { padding: 12px; }
    .quote-s1-main-header { flex-direction: column; gap: 8px; align-items: flex-start; }
    .quote-car-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
    .quote-car-card img.qcc-car-img { height: 60px; }
    .quote-s2-hero { padding: 16px; gap: 16px; flex-direction: column; }
    .quote-s2-hero-img { width: 100%; padding: 12px; }
    .quote-s2-hero-img img { max-width: 100%; max-height: 120px; }
    .qs2-section { padding: 14px; }
    .qs2-pills { gap: 6px; }
    .qs2-pill { padding: 8px 14px; font-size: 12px; }
    .qs3-form-row { grid-template-columns: 1fr !important; }
    .qs3-form > *:not(.qs3-form-title):not(.qp-actions) { padding-left: 16px; padding-right: 16px; }
    .qs3-btn-row { padding: 16px; flex-direction: column; }
    .qs3-btn-prev { width: 100%; justify-content: center; }
    .qs3-btn-submit { width: 100%; }
    .qs3-benefits { flex-direction: column; gap: 8px; padding: 12px; }

    /* 모델 상세 */
    .model-page-grid { grid-template-columns: 1fr !important; }
    .model-sidebar { margin-top: 16px; }
    .price-tab { padding: 6px 0; font-size: 12px; }

    /* 무심사 */
    .nc-layout { grid-template-columns: 1fr !important; }
    .nc-benefits { grid-template-columns: 1fr !important; }
    .nc-recommend-list { grid-template-columns: 1fr !important; }
    .nc-form-row { grid-template-columns: 1fr !important; }
    .nc-approval-row { font-size: 11px; padding: 8px 12px; }
    .nc-ar-type { display: none; }

    /* 혜택 */
    .benefits-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
    .benefit-card h4 { font-size: 12px; }
    .benefit-card p { font-size: 10px; }

    /* 이용절차 */
    .process-steps { flex-direction: column; gap: 12px; }
    .process-arrow { transform: rotate(90deg); }

    /* FAQ */
    .faq-home-grid { grid-template-columns: 1fr !important; }
    .faq-page-grid { grid-template-columns: 1fr !important; }
    .faq-page-sidebar { display: none; }

    /* CTA */
    .cta-section h2 { font-size: 20px; }
    .cta-phone { font-size: 28px; }

    /* 푸터 */
    .site-footer { padding: 24px 0 16px; }
    .footer-info { font-size: 11px; }

    /* 플로팅 버튼 */
    .quick-float { right: 8px; bottom: 70px; gap: 6px; }
    .quick-float-btn { width: 44px; height: 44px; font-size: 16px; }

    /* 모바일 하단 CTA */
    .mobile-bottom-cta { display: flex !important; }
}

/* 모바일 하단 고정 CTA */
.mobile-bottom-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 8px 12px;
    gap: 8px;
    box-shadow: 0 -2px 8px rgba(0,0,0,.06);
}
.mobile-bottom-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.mobile-bottom-cta .mbc-phone {
    background: #fff;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.mobile-bottom-cta .mbc-quote {
    background: var(--primary);
    color: #fff;
}

/* ========== TABLET 768px 최적화 ========== */
@media (min-width: 481px) and (max-width: 1024px) {
    .hero-inner { flex-direction: column; }
    .hero-form-card { margin-top: 20px; }
    .cars-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .promo-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .benefits-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .nc-layout { grid-template-columns: 1fr !important; }
    .nc-benefits { grid-template-columns: repeat(2, 1fr); }
}
