/* =============================================
   남대전자동차공업사 - 프리미엄 디자인 시스템
   대기업 수준의 세련된 UI/UX
   ============================================= */

/* Pretendard 폰트 적용 */
body, html {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

/* 향상된 CSS 변수 */
:root {
    /* 프리미엄 색상 */
    --premium-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gold-gradient: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    --dark-gradient: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);

    /* 향상된 그림자 */
    --shadow-premium: 0 4px 30px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(26, 86, 219, 0.3);
    --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.2);

    /* 애니메이션 */
    --ease-premium: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* =============================================
   페이드인 애니메이션
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* PS Detector 스타일: dot-pulse 애니메이션 */
@keyframes dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* ChannelUp 스타일: glow-pulse 애니메이션 */
@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(26, 86, 219, 0.3); }
    50% { box-shadow: 0 0 40px rgba(26, 86, 219, 0.6); }
}

/* 로또비서 스타일: bounce-subtle 애니메이션 */
@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(26, 86, 219, 0.4); }
    50% { box-shadow: 0 0 40px rgba(26, 86, 219, 0.6); }
}

@keyframes cta-pulse {
    0% { box-shadow: 0 4px 15px rgba(26, 86, 219, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(26, 86, 219, 0.6), 0 0 0 8px rgba(26, 86, 219, 0.1); }
    100% { box-shadow: 0 4px 15px rgba(26, 86, 219, 0.4); }
}

@keyframes kakao-pulse {
    0% { box-shadow: 0 4px 15px rgba(254, 229, 0, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(254, 229, 0, 0.6), 0 0 0 8px rgba(254, 229, 0, 0.15); }
    100% { box-shadow: 0 4px 15px rgba(254, 229, 0, 0.4); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 스크롤 기반 애니메이션 클래스 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-premium);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* =============================================
   프리미엄 헤더
   ============================================= */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--ease-premium);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.logo {
    transition: all 0.3s var(--ease-premium);
}

.logo:hover {
    opacity: 0.8;
}

.logo-text-only {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.header.scrolled .logo-text-only {
    color: #0f172a;
}

.footer-logo .logo-text-only {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #1a56db;
    transition: all 0.3s var(--ease-premium);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: #1a56db;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 86, 219, 0.05) 100%);
}

/* =============================================
   프리미엄 히어로 섹션
   ============================================= */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
}

/* PS Detector 스타일: 데코레이션 원형 */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
    /* animation removed */
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(26, 86, 219, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(30, 41, 59, 0.85) 50%,
        rgba(15, 23, 42, 0.92) 100%
    );
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--ease-premium);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-feature i {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 히어로 슬라이더 업그레이드 */
.hero-slider {
    border-radius: 24px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: scaleIn 1s var(--ease-premium);
}

.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s var(--ease-premium);
}

.slider-dot.active {
    background: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* =============================================
   프리미엄 버튼
   ============================================= */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-premium);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #1a56db;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.4);
    /* animation removed */
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(26, 86, 219, 0.5);
    animation: none;
}

/* 로또비서 스타일: 버튼 클릭 시 scale 효과 */
.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.4);
}

.btn-kakao {
    background: #FEE500;
    box-shadow: 0 4px 15px rgba(254, 229, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-kakao:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 229, 0, 0.5);
}

/* =============================================
   프리미엄 통계 섹션
   ============================================= */
.stats-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #1a56db;
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-premium);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(26, 86, 219, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    background: #1a56db;
    box-shadow: 0 8px 20px rgba(26, 86, 219, 0.3);
    transition: all 0.4s var(--ease-premium);
}

.stat-card:hover .stat-icon {
    transform: scale(1.05);
}

.stat-number {
    background: linear-gradient(180deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   프리미엄 서비스 카드
   ============================================= */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #1a56db;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-premium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(26, 86, 219, 0.1);
    border-color: rgba(26, 86, 219, 0.4);
}

/* PS Detector/ChannelUp 스타일: 카드별 hover 테두리 색상 */
.service-card[data-color="blue"]:hover {
    border-color: #3b82f6;
}

.service-card[data-color="orange"]:hover {
    border-color: #f97316;
}

.service-card[data-color="green"]:hover {
    border-color: #22c55e;
}

.service-card[data-color="purple"]:hover {
    border-color: #a855f7;
}

.service-card[data-color="red"]:hover {
    border-color: #ef4444;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    transition: all 0.4s var(--ease-premium);
    position: relative;
}

.service-card[data-color="blue"] .service-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1d4ed8;
}

.service-card[data-color="orange"] .service-icon {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    color: #ea580c;
}

.service-card[data-color="green"] .service-icon {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.service-card[data-color="purple"] .service-icon {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #1e40af;
}

.service-card[data-color="red"] .service-icon {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.service-description {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #4b5563;
    font-size: 15px;
}

.service-features li i {
    color: #10b981;
    font-size: 14px;
}

/* =============================================
   프리미엄 섹션 헤더
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(26, 86, 219, 0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #1a56db;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(180deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   프리미엄 프로세스 타임라인
   ============================================= */
.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #1a56db;
    border-radius: 3px;
}

.process-step {
    position: relative;
    padding-left: 100px;
    padding-bottom: 50px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-icon {
    position: absolute;
    left: 10px;
    width: 50px;
    height: 50px;
    background: #1a56db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.4);
    transition: all 0.4s var(--ease-premium);
    z-index: 1;
}

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

.process-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-premium);
}

.process-step:hover .process-content {
    transform: translateX(10px);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.1);
}

.process-number {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #1a56db;
    margin-bottom: 12px;
}

/* =============================================
   프리미엄 FAQ
   ============================================= */
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s var(--ease-premium);
}

.faq-item:hover {
    border-color: rgba(26, 86, 219, 0.2);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    background: transparent;
    transition: all 0.3s var(--ease-premium);
}

.faq-question:hover {
    color: #1a56db;
}

.faq-question i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a56db;
    transition: all 0.4s var(--ease-premium);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: #1a56db;
    color: white;
}

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

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

.faq-answer p {
    padding: 0 30px 24px;
    color: #6b7280;
    line-height: 1.8;
    font-size: 15px;
}

/* =============================================
   프리미엄 CTA 섹션
   ============================================= */
.cta {
    background: #1a56db;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    /* animation removed */
}

.cta-title {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

/* =============================================
   프리미엄 푸터
   ============================================= */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-premium);
}

.footer-social a:hover {
    transform: translateY(-4px);
}

/* =============================================
   플로팅 버튼 업그레이드
   ============================================= */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.4s var(--ease-premium);
    position: relative;
}

.floating-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
    transition: all 0.4s var(--ease-premium);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn.phone {
    background: #1a56db;
    /* animation removed */
}

.floating-btn.phone:hover {
    animation: none;
}

.floating-btn.kakao {
    background: linear-gradient(135deg, #FEE500 0%, #F5DC00 100%);
    color: #3c1e1e;
    /* animation removed */
    animation-delay: 0.5s;
}

.floating-btn.kakao:hover {
    animation: none;
}

/* =============================================
   협력 보험사 업그레이드
   ============================================= */
.insurance-partners {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.insurance-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--ease-premium);
}

.insurance-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.ins-logo {
    border-radius: 12px;
    transition: all 0.4s var(--ease-premium);
}

.insurance-item:hover .ins-logo {
    transform: scale(1.05);
}

/* Why Us 섹션 - 기존 다크 테마 유지 */
.why-us .section-title {
    background: none;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}

.why-us .section-subtitle {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

/* =============================================
   갤러리 업그레이드
   ============================================= */
.ba-showcase {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ba-showcase-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.ba-showcase-image img {
    transition: all 0.6s var(--ease-premium);
}

.ba-showcase-image:hover img {
    transform: scale(1.08);
}

.ba-showcase-label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.ba-showcase-label.before {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.ba-showcase-label.after {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}


/* =============================================
   스크롤바 커스텀
   ============================================= */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #1a56db;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1e40af 0%, #6d28d9 100%);
}

/* =============================================
   선택 하이라이트
   ============================================= */
::selection {
    background: rgba(26, 86, 219, 0.2);
    color: #1a56db;
}

/* =============================================
   고객 후기 섹션
   ============================================= */
.reviews {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.customer-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.customer-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-premium);
}

.customer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.customer-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    background: #1a56db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.customer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.customer-name {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.customer-car {
    font-size: 13px;
    color: #6b7280;
}

.customer-rating {
    display: flex;
    gap: 2px;
}

.customer-rating i {
    color: #fbbf24;
    font-size: 14px;
}

.customer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.customer-date {
    font-size: 13px;
    color: #9ca3af;
}

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

@media (max-width: 576px) {
    .customer-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   차종 브랜드 섹션
   ============================================= */
.car-brands {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.car-brands .section-subtitle {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.car-brands .section-title {
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.car-brands .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.brands-simple {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

.brands-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.brands-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.brand-tag {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.brand-tag.import {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-tag.import:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.brand-tag.domestic {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.brand-tag.domestic:hover {
    background: rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
}

.brands-note-text {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   블로그 미리보기 섹션 (리스트형)
   ============================================= */
.blog-preview {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.blog-list {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.blog-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

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

.blog-list-item:hover {
    background: #fafafa;
}

.blog-list-item:hover .blog-list-title {
    color: #1a56db;
}

.blog-list-item:hover .blog-list-arrow {
    color: #1a56db;
    transform: translateX(4px);
}

.blog-list-category {
    flex-shrink: 0;
    padding: 6px 12px;
    background: #1a56db;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    min-width: 80px;
    text-align: center;
}

.blog-list-title {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.blog-list-date {
    flex-shrink: 0;
    font-size: 14px;
    color: #9ca3af;
}

.blog-list-arrow {
    flex-shrink: 0;
    font-size: 12px;
    color: #d1d5db;
    transition: all 0.2s ease;
}

.blog-preview-more {
    text-align: center;
    margin-top: 32px;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

@media (max-width: 768px) {
    .blog-list-item {
        flex-wrap: wrap;
        gap: 10px;
        padding: 16px 20px;
    }

    .blog-list-category {
        order: 1;
        min-width: auto;
    }

    .blog-list-date {
        order: 2;
        margin-left: auto;
    }

    .blog-list-title {
        order: 3;
        width: 100%;
        white-space: normal;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }

    .blog-list-arrow {
        display: none;
    }
}

/* =============================================
   시설 섹션
   ============================================= */
.facilities {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.facility-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-premium);
    text-align: center;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(26, 86, 219, 0.2);
    border-color: rgba(26, 86, 219, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.facility-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1a56db;
    transition: all 0.4s var(--ease-premium);
}

.facility-card:hover .facility-icon {
    transform: scale(1.08);
    background: #1a56db;
    color: #ffffff;
}

.facility-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.facility-card:hover .facility-title {
    color: #1a56db;
}

.facility-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    transition: color 0.3s ease;
}

.facility-card:hover .facility-desc {
    color: #374151;
}

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

@media (max-width: 576px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   지역 서비스 섹션
   ============================================= */
.area-service {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.area-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-premium);
    position: relative;
    display: block;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: rgba(26, 86, 219, 0.3);
}

.area-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    padding: 4px 12px;
    background: #1a56db;
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
}

.area-name {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.area-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 12px;
}

.area-distance {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(26, 86, 219, 0.1);
    color: #1a56db;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

@media (max-width: 1200px) {
    .area-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .area-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   반응형 조정
   ============================================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 28px;
    }

    .floating-btn {
        width: 54px;
        height: 54px;
        font-size: 20px;
    }

    .process-timeline::before {
        left: 25px;
    }

    .process-step {
        padding-left: 70px;
    }

    .process-icon {
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* =============================================
   추가 시각적 향상
   ============================================= */

/* 히어로 버튼 그룹 */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    font-size: 17px;
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 12px;
}

/* 상태 인디케이터 (실시간 느낌) */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
}

.status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* 강조 숫자 (통계) */
.highlight-number {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* 카드 뱃지 */
.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: #1a56db;
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 인용 블록 스타일 */
.quote-block {
    position: relative;
    padding-left: 24px;
    border-left: 4px solid;
    border-left: 4px solid #1a56db;
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(26, 86, 219, 0.1);
    line-height: 1;
}

/* 태그 그룹 */
.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 14px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.tag:hover {
    background: #1a56db;
    color: white;
}

/* 그리드 라인 데코레이션 */
.section {
    position: relative;
}

/* 컨텐츠 영역 강조 */
.content-highlight {
    position: relative;
    padding: 32px;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(26, 86, 219, 0.08);
}

/* 프리미엄 구분선 */
.premium-divider {
    height: 4px;
    background: #1a56db;
    border-radius: 2px;
    margin: 60px 0;
    opacity: 0.3;
}

/* 리스트 스타일 개선 */
.premium-list {
    list-style: none;
    padding: 0;
}

.premium-list li {
    position: relative;
    padding: 12px 0 12px 32px;
    border-bottom: 1px solid #f3f4f6;
}

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

.premium-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 50%;
}

.premium-list li::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #10b981;
}

/* 호버 시 하이라이트 효과 */
.hover-highlight {
    transition: all 0.3s ease;
}

.hover-highlight:hover {
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
}

/* 스크롤 진행 바 */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #1a56db;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* 접근성: 모션 감소 선호 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =============================================
   서브페이지 히어로
   ============================================= */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 150px 0 70px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(26, 86, 219, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.page-hero-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 130px 0 50px;
    }
    .page-hero-title {
        font-size: 34px;
    }
    .page-hero-desc {
        font-size: 16px;
    }
}

/* =============================================
   무료 상담 페이지 (Inquiry)
   ============================================= */
.inquiry.section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.inquiry .section-header {
    margin-bottom: 48px;
}

.inquiry-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.inquiry-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.inquiry-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--ease-premium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.inquiry-method:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.inquiry-method.kakao {
    background: linear-gradient(135deg, #fee500 0%, #ffd800 100%);
    border: none;
}

.inquiry-method.kakao:hover {
    box-shadow: 0 16px 48px rgba(254, 229, 0, 0.5);
}

.inquiry-method-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #1a56db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    flex-shrink: 0;
}

.inquiry-method.kakao .inquiry-method-icon {
    background: rgba(60, 30, 30, 0.9);
}

.inquiry-method-content {
    flex: 1;
}

.inquiry-method-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.inquiry-method.kakao .inquiry-method-content h4 {
    color: rgba(60, 30, 30, 0.7);
}

.inquiry-method-content p {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.02em;
}

.inquiry-method.kakao .inquiry-method-content p {
    color: #3c1e1e;
}

.inquiry-method-sub {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 8px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 20px;
}

.inquiry-method.kakao .inquiry-method-sub {
    color: rgba(60, 30, 30, 0.6);
    background: rgba(60, 30, 30, 0.1);
}

.inquiry-form-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.inquiry-form .form-row .form-group {
    margin-bottom: 0;
}

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

.inquiry-form .form-group:last-of-type {
    margin-bottom: 24px;
}

.inquiry-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.inquiry-form label .required {
    color: #ef4444;
    margin-left: 2px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Pretendard Variable', sans-serif;
    transition: all 0.2s ease;
    background: #ffffff;
    box-sizing: border-box;
}

.inquiry-form input {
    height: 50px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #1a56db;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: #9ca3af;
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.inquiry-form .btn-full {
    width: 100%;
    padding: 18px 28px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.inquiry-form .btn-full:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.inquiry-form .btn-full:not(:disabled) {
    background: #1a56db;
    color: white;
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
}

.inquiry-form .btn-full:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 86, 219, 0.5);
}

@media (max-width: 960px) {
    .inquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .inquiry-methods {
        flex-direction: row;
        position: static;
    }
    .inquiry-method {
        flex: 1;
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    .inquiry-method-content h4 {
        margin-bottom: 4px;
    }
    .inquiry-method-content p {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .inquiry-methods {
        flex-direction: column;
    }
    .inquiry-method {
        flex-direction: row;
        text-align: left;
    }
    .inquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .inquiry-form .form-row .form-group {
        margin-bottom: 0;
    }
    .inquiry-form-container {
        padding: 28px 20px;
    }
}

/* =============================================
   오시는길 페이지 (Contact)
   ============================================= */
.contact.section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact .section-header {
    margin-bottom: 48px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
}

.contact-info-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    letter-spacing: -0.02em;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-info-item:last-of-type {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #1a56db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
    padding-top: 4px;
}

.contact-info-content h4 {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-content p {
    font-size: 16px;
    color: #1e293b;
    margin: 0 0 6px 0;
    line-height: 1.6;
    font-weight: 500;
}

.contact-info-content p:last-child {
    margin-bottom: 0;
}

.contact-info-content a {
    color: #1a56db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-info-content a:hover {
    color: #1e40af;
}

.contact-buttons {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 2px solid #f1f5f9;
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn.kakao {
    background: linear-gradient(135deg, #fee500 0%, #ffd800 100%);
    color: #3c1e1e;
}

.contact-btn.kakao:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(254, 229, 0, 0.5);
}

.contact-btn.naver {
    background: linear-gradient(135deg, #03c75a 0%, #02b350 100%);
    color: white;
}

.contact-btn.naver:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(3, 199, 90, 0.4);
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    background: #f1f5f9;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 520px;
    border: none;
}

@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-map {
        order: -1;
    }
    .contact-info-card {
        position: static;
    }
    .contact-map iframe {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .contact-info-card {
        padding: 28px 24px;
    }
    .contact-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .contact-map iframe {
        height: 300px;
    }
    .contact-info-item {
        gap: 14px;
    }
    .contact-info-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

/* 개행 방지 */
.no-break {
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* About Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.about-feature-item {
    text-align: center;
    padding: 32px 20px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    border-color: #1a56db;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-feature-item i {
    font-size: 32px;
    color: #1a56db;
    margin-bottom: 16px;
}

.about-feature-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.about-feature-item p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

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

@media (max-width: 576px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

/* About SEO Text Card */
.about-seo-text {
    margin-top: 40px;
    padding: 32px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #1a56db;
}

.about-seo-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.about-seo-text p:last-child {
    margin-bottom: 0;
}

.about-seo-text strong {
    color: #1a56db;
    font-weight: 600;
}

/* =============================================
   블로그 홈 섹션 (PS Detector 스타일)
   ============================================= */
.blog-home {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.blog-home-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-home-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.blog-home-title .blog-point {
    color: #1a56db;
}

.blog-home-desc {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

.blog-home-list {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.blog-home-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

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

.blog-home-item:hover {
    background: #f9fafb;
}

.blog-home-item:hover .blog-home-item-title {
    color: #1a56db;
}

.blog-home-item.hidden {
    display: none;
}

.blog-home-left {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.blog-home-cat {
    flex-shrink: 0;
    padding: 6px 12px;
    background: #1a56db;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    min-width: 80px;
    text-align: center;
}

.blog-home-text {
    flex: 1;
    min-width: 0;
}

.blog-home-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.blog-home-item-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.blog-home-right {
    flex-shrink: 0;
    margin-left: 20px;
}

.blog-home-date {
    font-size: 14px;
    color: #9ca3af;
}

.blog-home-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.blog-more-btn {
    padding: 12px 32px;
    background: #ffffff;
    color: #374151;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-more-btn:hover {
    border-color: #1a56db;
    color: #1a56db;
}

.blog-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: #ffffff;
    color: #374151;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-all-link:hover {
    border-color: #1a56db;
    color: #1a56db;
}

.blog-all-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-all-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .blog-home-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
    }

    .blog-home-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .blog-home-item-title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-home-item-desc {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-home-right {
        margin-left: 0;
    }

    .blog-home-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .blog-more-btn,
    .blog-all-link {
        width: 100%;
        justify-content: center;
    }
}
