/* 기본 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

/* Swiper 기본 화살표 아이콘 제거 (커스텀 화살표 사용) */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-family: inherit !important;
    font-size: 0 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-variant: normal !important;
    line-height: 1 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 헤더 */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
    color: var(--primary-color);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.logo p {
    font-size: 0.9rem;
    color: #666;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--secondary-color);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px 5px;
    position: relative;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 8px;
    left: 5px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 16px;
    left: 5px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 24px;
    left: 5px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 16px;
    left: 5px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 16px;
    left: 5px;
}

/* 히어로 섹션 */
.hero {
    position: relative;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.85) 100%),
                url('/images/hero-background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d4af37" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-main-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-main-title .highlight {
    color: var(--secondary-color);
    display: block;
    margin-top: 0.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 통계 섹션 */
.stats-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b8941f 100%);
    color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
}

.stat-label {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.stat-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95) !important;
}

/* 빠른 견적 상담 섹션 */
.quick-estimate-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.estimate-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.estimate-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.estimate-header-subtitle {
    font-size: 1rem;
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.estimate-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.estimate-header-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.quick-estimate-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.quick-estimate-form .form-group {
    margin-bottom: 1.5rem;
}

.quick-estimate-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.quick-estimate-form input[type="text"],
.quick-estimate-form input[type="tel"],
.quick-estimate-form select,
.quick-estimate-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.quick-estimate-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.quick-estimate-form input:focus,
.quick-estimate-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.phone-input-group {
    display: flex;
    gap: 0.5rem;
}

.phone-prefix {
    flex: 0 0 80px;
}

.phone-input-group input {
    flex: 1;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.link-text {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* 가격 비교 섹션 - 깔끔한 디자인 */
.price-comparison-section {
    padding: 5rem 0;
    background: #fafafa !important;
    position: relative;
    overflow: hidden;
}

.comparison-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.comparison-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.comparison-main-title .highlight-text {
    color: var(--secondary-color);
    position: relative;
}

.comparison-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.comparison-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.comparison-card.modern-card {
    background: #ffffff !important;
    padding: 2.5rem;
    border-radius: 20px !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    transition: box-shadow 0.3s ease;
}

.comparison-card.modern-card:hover {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.comparison-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
}

.price-comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2rem;
}

.price-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    border: 1.5px solid transparent;
}

.domestic-card {
    border-color: #e8e8e8;
    background: #ffffff;
}

.domestic-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.export-card {
    border-color: var(--secondary-color);
    background: #fffef8;
    position: relative;
}

.export-card::after {
    content: 'BEST';
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(184, 148, 31, 0.2);
}

.export-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 25px rgba(184, 148, 31, 0.15);
}

.price-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.price-icon {
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 10px;
    flex-shrink: 0;
}

.export-card .price-icon {
    background: rgba(184, 148, 31, 0.08);
}

.price-card-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.2px;
}

.price-card-body {
    text-align: center;
}

.price-range {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.price-min,
.price-max {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
    line-height: 1;
}

.price-separator {
    font-size: 1.6rem;
    color: #999;
    font-weight: 400;
    margin: 0 0.1rem;
}

.price-unit {
    font-size: 1.4rem;
    color: #666;
    font-weight: 500;
    margin-left: 0.2rem;
}

.price-amount-large {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.price-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: -1.5px;
}

.price-unit-large {
    font-size: 1.6rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.price-up-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.55rem 1.1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.2px;
}

.up-icon {
    font-size: 1rem;
}

.up-text {
    letter-spacing: 0.2px;
}

.price-description {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.4rem;
    font-weight: 400;
}

.price-description.highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.comparison-arrow-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 0.5rem;
}

.comparison-arrow-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-weight: 300;
    opacity: 0.8;
}

.arrow-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.5px;
}

.comparison-footer {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.comparison-note-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    opacity: 0.8;
}

.comparison-note {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-style: normal;
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-item {
    text-align: center;
}

.comparison-label {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.comparison-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.price-item {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    border-radius: 10px;
    background: var(--white);
}

.price-item.domestic {
    border: 2px solid #ddd;
}

.price-item.export {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
}

.price-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.highlight-price {
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.price-up {
    font-size: 1.1rem;
    color: #e74c3c;
    font-weight: 600;
}

.price-arrow {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.comparison-note {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* 사고이력 안내 섹션 */
.accident-info-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
}

@media (max-width: 768px) {
    .accident-info-section {
        padding: 3rem 0;
    }
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.info-content .highlight-text {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* 버튼 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* 특징 섹션 */
.features {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* 차량 그리드 */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.popular-vehicles,
.vehicles-list {
    padding: 5rem 0;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.vehicle-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.vehicle-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    background-color: #f5f5f5;
}

.vehicle-image img[src*="no-image"] {
    object-fit: contain;
    padding: 20px;
    background-color: #f8f9fa;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.1);
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.vehicle-info {
    padding: 1.5rem;
}

.vehicle-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.vehicle-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.vehicle-specs span {
    font-size: 0.9rem;
    color: #666;
    padding: 5px 10px;
    background-color: var(--light-bg);
    border-radius: 5px;
}

.vehicle-description {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.95rem;
    white-space: pre-line;
}

.vehicle-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.vehicle-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* 매입절차 섹션 */
.purchase-process-section {
    padding: 5rem 0;
    background: var(--white);
}

.process-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.process-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.process-subtitle {
    font-size: 1.15rem;
    color: #666;
    font-weight: 400;
    line-height: 1.7;
}

.purchase-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.purchase-step {
    background: var(--white);
    padding: 2rem 1.8rem;
    border-radius: 16px;
    text-align: center;
    border: 1.5px solid #e8e8e8;
    transition: all 0.3s ease;
}

.purchase-step:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.step-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.3px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.purchase-step h3 {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.2px;
}

/* 차별점 섹션 */
.differentiators-section {
    padding: 5rem 0;
    background: #fafafa;
}

.differentiators-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.differentiators-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.differentiators-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.differentiators-main-question {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.differentiators-main-question .highlight-blue {
    color: var(--secondary-color);
}

.differentiators-content {
    max-width: 1000px;
    margin: 0 auto;
}

.differentiator-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid #e8e8e8;
    transition: all 0.3s ease;
}

.differentiator-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.differentiator-item:last-child {
    margin-bottom: 0;
}

.diff-number {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.3px;
}

.differentiator-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.highlight-blue {
    color: var(--secondary-color);
}

.differentiator-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* 고객 후기 섹션 */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.testimonials-subtitle {
    font-size: 1.15rem;
    color: #666;
    font-weight: 400;
    line-height: 1.7;
}

.testimonials-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) rgba(0, 0, 0, 0.1);
    padding: 0 1rem;
}

.testimonials-grid::-webkit-scrollbar {
    height: 8px;
}

.testimonials-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
    background: var(--white);
    padding: 2rem 1.8rem;
    border-radius: 16px;
    border: 1.5px solid #e8e8e8;
    transition: all 0.3s ease;
    scroll-snap-align: start;
}

.testimonial-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.2rem;
}

.star {
    color: var(--secondary-color);
    font-size: 1.2rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.testimonial-author {
    padding-top: 1.2rem;
    border-top: 1px solid #e8e8e8;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.author-info {
    font-size: 0.85rem;
    color: #999;
    font-weight: 400;
}

/* 프로세스 섹션 (기존 유지) */
.process {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* 페이지 헤더 */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* 회사소개 페이지 스타일 */
.about-mission-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-values-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.about-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.about-section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.about-mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-mission-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1.5px solid #e8e8e8;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    font-weight: 400;
}

/* 문의하기 페이지 스타일 */
.contact-content-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.contact-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.contact-section-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Noto Sans KR', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1.5px solid #e8e8e8;
    transition: all 0.3s ease;
    text-align: center;
}

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

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 개인정보처리방침 및 이용약관 페이지 스타일 */
.privacy-content-section,
.terms-content-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.privacy-content,
.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.privacy-section,
.terms-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.privacy-section:last-child,
.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h3,
.terms-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--secondary-color);
    letter-spacing: -0.3px;
}

.privacy-section p,
.terms-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    font-weight: 400;
}

.privacy-section ul,
.terms-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    list-style-type: disc;
}

.privacy-section li,
.terms-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.privacy-section ul ul,
.terms-section ul ul {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
    list-style-type: circle;
}

.privacy-section strong,
.terms-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 차량 상세 페이지 */
.vehicle-detail {
    padding: 3rem 0;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: #666;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.vehicle-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.vehicle-detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* 엔카 스타일 갤러리 */
.encar-style-gallery {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.main-swiper {
    width: 100%;
    height: auto;
    min-height: 500px;
}

.main-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.main-image-container img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    display: block;
}

/* Swiper 네비게이션 버튼 - 메인 갤러리 */
.main-swiper .swiper-button-next,
.main-swiper .swiper-button-prev {
    width: 56px;
    height: 56px;
    background-color: white;
    border-radius: 50%;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    border: none;
}

.main-swiper .swiper-button-next:hover,
.main-swiper .swiper-button-prev:hover {
    background-color: #f8f8f8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.main-swiper .swiper-button-prev::after {
    content: '' !important;
    width: 0 !important;
    height: 0 !important;
    border-style: solid !important;
    border-width: 6px 10px 6px 0 !important;
    border-color: transparent #1a1a1a transparent transparent !important;
    margin-left: 2px !important;
    font-size: 0 !important;
    display: block !important;
}

.main-swiper .swiper-button-next::after {
    content: '' !important;
    width: 0 !important;
    height: 0 !important;
    border-style: solid !important;
    border-width: 6px 0 6px 10px !important;
    border-color: transparent transparent transparent #1a1a1a !important;
    margin-right: 2px !important;
    font-size: 0 !important;
    display: block !important;
}

/* 이미지 카운터 */
.image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

/* 썸네일 슬라이더 */
.thumbnail-swiper-wrapper {
    margin-top: 1rem;
}

.thumbnail-swiper {
    width: 100%;
    height: 100px;
}

.thumbnail-swiper .swiper-slide {
    width: auto;
    height: 100px;
}

.thumbnail-btn {
    width: 100px;
    height: 100px;
    padding: 0;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: none;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #f5f5f5;
}

.thumbnail-btn:hover {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.thumbnail-btn.active {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.thumbnail-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vehicle-detail-image img[src*="no-image"] {
    background-color: #f8f9fa;
    padding: 40px;
    min-height: 400px;
    object-fit: contain;
}

/* 클릭 가능한 이미지 스타일 */
.clickable-image {
    cursor: pointer;
    transition: opacity 0.3s;
}

.clickable-image:hover {
    opacity: 0.9;
}

/* 이미지 모달 (라이트박스) - 엔카 스타일 */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.98);
    animation: fadeIn 0.2s ease;
    backdrop-filter: blur(5px);
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px 40px;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
    font-weight: 300;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.4);
}

.modal-swiper {
    width: 100%;
    height: 100%;
    max-width: 1600px;
}

.modal-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: imageZoomIn 0.3s ease;
}

@keyframes imageZoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-nav-next,
.modal-nav-prev {
    width: 56px;
    height: 56px;
    background-color: white;
    border-radius: 50%;
    color: #1a1a1a;
    transition: all 0.2s ease;
    z-index: 10001;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.modal-nav-next {
    right: 30px;
}

.modal-nav-prev {
    left: 30px;
}

.modal-nav-next:hover,
.modal-nav-prev:hover {
    background-color: #f8f8f8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.modal-nav-next:active,
.modal-nav-prev:active {
    transform: translateY(-50%) scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.modal-nav-next::after,
.modal-nav-prev::after {
    content: '' !important;
    width: 0 !important;
    height: 0 !important;
    border-style: solid !important;
    font-size: 0 !important;
    line-height: 0 !important;
    display: block !important;
}

.modal-nav-prev::after {
    border-width: 6px 10px 6px 0 !important;
    border-color: transparent #1a1a1a transparent transparent !important;
    margin-left: 2px !important;
}

.modal-nav-next::after {
    border-width: 6px 0 6px 10px !important;
    border-color: transparent transparent transparent #1a1a1a !important;
    margin-right: 2px !important;
}

.modal-counter {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    z-index: 10001;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .modal-content {
        padding: 60px 50px 30px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
    
    .modal-nav-next,
    .modal-nav-prev {
        width: 52px;
        height: 52px;
    }
    
    .modal-nav-next {
        right: 15px;
    }
    
    .modal-nav-prev {
        left: 15px;
    }
    
    .modal-nav-next::after,
    .modal-nav-prev::after {
        border-width: 5px 8px 5px 0;
    }
    
    .modal-nav-next::after {
        border-width: 5px 0 5px 8px;
    }
    
    .modal-counter {
        bottom: 25px;
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .modal-image-container {
        padding: 20px;
    }
}

.vehicle-specs-detail {
    margin: 2rem 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-label {
    font-weight: 600;
    color: #666;
}

.spec-value {
    color: var(--primary-color);
    font-weight: 500;
}

.vehicle-description-detail {
    margin: 2rem 0;
}

.vehicle-description-detail h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.vehicle-description-detail .description-content {
    line-height: 1.8;
    color: #555;
    white-space: pre-line;
}

.vehicle-actions {
    margin-top: 2rem;
}

/* 회사 소개 페이지 */
.about-content {
    padding: 3rem 0;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.value-list {
    list-style: none;
    padding-left: 0;
}

.value-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.value-list li strong {
    color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

/* 중복 스타일 제거 - 통계 섹션 스타일은 위에 정의됨 */

/* 문의 페이지 */
.contact-content {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.form-help strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.form-help code {
    background-color: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    color: #d63384;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-item p {
    color: #666;
    line-height: 1.8;
}

/* 404 페이지 */
.error-page {
    padding: 5rem 0;
    text-align: center;
}

.error-content h1 {
    font-size: 8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.error-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.error-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* 푸터 */
.footer {
    background-color: #2a2a2a;
    color: var(--white);
    padding: 2.5rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s;
}

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

.footer-company {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.footer-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.text-center {
    text-align: center;
}

/* 개인정보 처리방침 모달 */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.2s ease;
}

.privacy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.privacy-modal-content {
    position: relative;
    background-color: var(--white);
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    z-index: 10001;
}

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

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid var(--border-color);
}

.privacy-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.privacy-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.privacy-modal-close:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.privacy-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.privacy-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.privacy-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.privacy-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

.privacy-modal-footer .btn {
    min-width: 100px;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .privacy-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .privacy-modal-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .privacy-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .privacy-modal-body {
        padding: 1.5rem 1rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .privacy-modal-footer {
        padding: 1rem;
    }
}

/* 모바일 하단 고정 버튼 */
.mobile-fixed-buttons {
    display: none;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    /* 기본 레이아웃 */
    .container {
        padding: 0 15px;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        z-index: 999;
        padding: 1rem 0;
    }

    .nav.active {
        display: flex;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .nav li {
        width: 100%;
        border-bottom: 1px solid #e8e8e8;
    }

    .nav li:last-child {
        border-bottom: none;
    }

    .nav a {
        display: block;
        padding: 1rem 20px;
        width: 100%;
    }

    .nav a.active::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1000;
    }

    /* 히어로 섹션 */
    .hero {
        min-height: 500px;
        padding: 3rem 1rem;
    }

    .hero-main-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .hero-main-title .highlight {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    /* 통계 섹션 */
    .stats-section {
        padding: 1.5rem 0;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #b8941f 100%);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding: 0 10px;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s, box-shadow 0.2s;
    }
    
    .stat-item:active {
        transform: scale(0.98);
    }
    
    .stat-number {
        font-size: 1.6rem;
        font-weight: 700;
        color: #ffffff !important;
        margin-bottom: 0.3rem;
        letter-spacing: -0.5px;
    }
    
    .stat-label {
        font-size: 0.7rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.95) !important;
        margin-bottom: 0;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    .stat-item p {
        display: none;
    }
    
    /* 가격 비교 섹션 */
    .price-comparison-section {
        padding: 3rem 0;
        background: #fafafa;
    }
    
    .comparison-main-title {
        font-size: 1.5rem;
        padding: 0 15px;
        letter-spacing: -0.3px;
    }
    
    .comparison-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .comparison-card.modern-card {
        padding: 1.8rem 1.2rem;
        border-radius: 16px;
        margin: 0 15px;
    }
    
    .comparison-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .price-comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .comparison-arrow-wrapper {
        transform: rotate(90deg);
        margin: 0.3rem 0;
        padding: 0;
    }
    
    .comparison-arrow-icon {
        font-size: 1.8rem;
    }
    
    .arrow-label {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
    }
    
    .price-card {
        padding: 1.8rem 1.5rem;
    }
    
    .price-card-header {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .price-icon {
        font-size: 1.4rem;
        width: 40px;
        height: 40px;
    }
    
    .price-card-label {
        font-size: 0.95rem;
    }
    
    .price-min,
    .price-max {
        font-size: 2rem;
    }
    
    .price-unit {
        font-size: 1.2rem;
    }
    
    .price-number {
        font-size: 2.6rem;
    }
    
    .price-unit-large {
        font-size: 1.4rem;
    }
    
    .price-up-badge {
        font-size: 0.75rem;
        padding: 0.45rem 0.9rem;
    }
    
    .price-description {
        font-size: 0.85rem;
    }
    
    .comparison-footer {
        flex-direction: column;
        gap: 0.7rem;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .comparison-note-icon {
        font-size: 1.2rem;
        align-self: flex-start;
    }
    
    .comparison-note {
        font-size: 0.9rem;
    }
    
    .export-card::after {
        top: 10px;
        right: 10px;
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
    }
    
    /* 견적 상담 섹션 */
    .quick-estimate-section {
        padding: 3rem 0;
    }
    
    .estimate-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }
    
    .estimate-header {
        margin-bottom: 2rem;
    }
    
    .estimate-header-subtitle {
        font-size: 0.9rem;
    }
    
    .estimate-header-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .estimate-header-description {
        font-size: 0.9rem;
    }
    
    .quick-estimate-form .form-group {
        margin-bottom: 1.25rem;
    }
    
    /* 가격 비교 섹션 */
    .price-comparison-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .comparison-card {
        padding: 2rem 1.5rem;
    }
    
    .comparison-label {
        font-size: 1.1rem;
    }
    
    .comparison-prices {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .price-item {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .highlight-price {
        font-size: 2rem;
    }
    
    .price-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    /* 사고이력 안내 섹션 */
    .accident-info-section {
        padding: 3rem 0;
    }
    
    .info-content h2 {
        font-size: 1.8rem;
    }
    
    .info-content p {
        font-size: 1rem;
    }
    
    /* 특징 섹션 */
    .features {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* 인기 차량 섹션 */
    .popular-vehicles {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* 매입절차 섹션 */
    .purchase-process-section {
        padding: 2.5rem 0;
        background: var(--white);
    }
    
    .process-header {
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    .process-main-title {
        font-size: 1.8rem;
        letter-spacing: -0.3px;
        margin-bottom: 0.5rem;
    }
    
    .process-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .purchase-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .purchase-step {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        border: 1.5px solid #e8e8e8;
        background: var(--white);
    }
    
    .step-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .step-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .purchase-step h3 {
        font-size: 0.85rem;
        line-height: 1.4;
        font-weight: 600;
    }
    
    /* 차별점 섹션 */
    .differentiators-section {
        padding: 3rem 0;
        background: #fafafa;
    }
    
    .differentiators-title {
        font-size: 2.2rem;
    }
    
    .differentiators-subtitle {
        font-size: 0.9rem;
    }
    
    .differentiators-main-question {
        font-size: 1.3rem;
        padding: 0 15px;
        letter-spacing: -0.3px;
    }
    
    .differentiator-item {
        padding: 1.5rem 1.2rem;
        margin-bottom: 1.2rem;
        border-radius: 12px;
    }
    
    .diff-number {
        font-size: 0.8rem;
        padding: 0.35rem 0.9rem;
        margin-bottom: 1rem;
    }
    
    .differentiator-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }
    
    .differentiator-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* 고객 후기 섹션 */
    .testimonials-section {
        padding: 2rem 0;
        background: var(--white);
    }
    
    .testimonials-header {
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .testimonials-title {
        font-size: 1.3rem;
        letter-spacing: -0.3px;
        margin-bottom: 0.5rem;
    }
    
    .testimonials-subtitle {
        font-size: 0.85rem;
        color: #999;
    }
    
    .testimonials-grid {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        padding: 0 15px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--secondary-color) rgba(0, 0, 0, 0.1);
    }
    
    .testimonials-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .testimonials-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 10px;
    }
    
    .testimonials-grid::-webkit-scrollbar-thumb {
        background: var(--secondary-color);
        border-radius: 10px;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
        min-width: 280px;
        padding: 1.2rem 1rem;
        border-radius: 12px;
        border: 1px solid #e8e8e8;
        scroll-snap-align: start;
    }
    
    .testimonial-rating {
        margin-bottom: 0.8rem;
        gap: 0.15rem;
    }
    
    .star {
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.6;
        color: #555;
    }
    
    .testimonial-author {
        padding-top: 0.8rem;
        border-top: 1px solid #f0f0f0;
    }
    
    .author-name {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    
    .author-info {
        font-size: 0.75rem;
        color: #999;
    }
    
    /* 프로세스 섹션 */
    .process {
        padding: 3rem 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* 차량 상세 */
    .vehicle-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* 문의 페이지 */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* 하단 고정 버튼 */
    .mobile-fixed-buttons {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-fixed-btn {
        flex: 1;
        padding: 16px;
        border: none;
        font-size: 1rem;
        font-weight: 600;
        color: white;
        cursor: pointer;
        transition: opacity 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-fixed-btn:hover,
    .mobile-fixed-btn:active,
    .mobile-fixed-btn:focus {
        text-decoration: none;
        opacity: 0.9;
    }
    
    .mobile-fixed-btn:active {
        opacity: 0.8;
    }
    
    .mobile-fixed-btn.primary {
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }
    
    .mobile-fixed-btn.secondary {
        background-color: var(--primary-color);
        color: white;
    }
    
    /* 하단 고정 버튼이 있을 때 패딩 추가 */
    body {
        padding-bottom: 60px;
    }
    
    /* 푸터 */
    .footer {
        padding: 1.5rem 0 5rem;
        background-color: #2a2a2a;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .footer-company {
        padding: 0 15px;
        margin-bottom: 1.5rem;
    }
    
    .footer-company-name {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-info {
        gap: 0.4rem;
        text-align: left;
    }
    
    .footer-info p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .footer-bottom {
        padding: 1rem 15px 0;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    /* 회사소개 페이지 모바일 */
    .about-section-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .about-section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .about-mission-content {
        padding: 0 15px;
    }
    
    .about-mission-content p {
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .value-title {
        font-size: 1.2rem;
    }
    
    .value-description {
        font-size: 0.9rem;
    }
    
    /* 문의하기 페이지 모바일 */
    .contact-content-section {
        padding: 3rem 0;
    }
    
    .contact-section-header {
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    .contact-section-title {
        font-size: 1.5rem;
    }
    
    .contact-section-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 2rem 1.5rem;
    }
    
    .contact-info {
        gap: 1.2rem;
    }
    
    .info-card {
        padding: 1.2rem;
    }
    
    .info-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .info-card h3 {
        font-size: 1rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    /* 개인정보처리방침 및 이용약관 페이지 모바일 */
    .privacy-content-section,
    .terms-content-section {
        padding: 3rem 0;
    }
    
    .privacy-content,
    .terms-content {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }
    
    .privacy-section,
    .terms-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .privacy-section h3,
    .terms-section h3 {
        font-size: 1.2rem;
        padding-bottom: 0.6rem;
    }
    
    .privacy-section p,
    .privacy-section li,
    .terms-section p,
    .terms-section li {
        font-size: 0.9rem;
    }
}

