/* --- 기본 설정 (Reset & Variables) --- */
/* body.index-page 스코프로 CSS 변수 오버라이드 */
body.index-page {
    /* 밝은 테마 컬러 팔레트 */
    --primary-color: #00c73c; /* 네이버 그린 */
    --point-color: #ff4d4f;   /* 강조 레드 */
    --bg-body: #f9fbfd;       /* 아주 연한 하늘빛/회색 배경 */
    --bg-card: #ffffff;       /* 카드 배경 */
    --text-main: #333333;     /* 메인 텍스트 */
    --text-sub: #666666;      /* 서브 텍스트 */
    --border-color: #eeeeee;  /* 테두리 색상 */
    
    --header-height: 70px;
    --notice-height: 40px;    /* 공지사항 높이 */
}

body.index-page * {
    box-sizing: border-box;
}

body.index-page {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif !important;
    background-color: var(--bg-body) !important;
    background-image: none !important;
    background: var(--bg-body) !important;
    color: var(--text-main) !important;
    overflow-x: hidden !important;
    line-height: 1.5 !important;
}

/* 메인페이지 전용: 사이드바 없는 전체 너비 레이아웃 */
body.index-page .main-layout {
    margin-left: 0 !important;
    padding: 0 !important;
    background-color: var(--bg-body) !important;
    min-height: 100vh;
}

/* 사이드바 및 대시보드 헤더 숨기기 */
body.index-page .sidebar,
body.index-page .top-header,
body.index-page .dashboard-header {
    display: none !important;
}

body.index-page a { text-decoration: none; color: inherit; }
body.index-page ul { list-style: none; }
body.index-page button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* --- 공지사항 바 --- */
.notice-bar {
    position: fixed;
    top: -50px;
    left: 0;
    width: 100%;
    height: var(--notice-height);
    background: linear-gradient(90deg, #00c73c, #00a832);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: top 0.5s ease;
    box-shadow: 0 2px 10px rgba(0, 199, 60, 0.3);
}
.notice-bar.visible { top: 0; }
.notice-slider { position: relative; height: 100%; display: flex; align-items: center; }
.notice-slide { position: absolute; opacity: 0; visibility: hidden; transition: opacity 0.5s ease, visibility 0.5s ease; white-space: nowrap; }
.notice-slide.active { opacity: 1; visibility: visible; position: relative; }
.notice-content { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 14px; font-weight: 500; }
.notice-badge { background: rgba(255, 255, 255, 0.25); padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight: 700; }
.btn-close-notice { position: absolute; right: 20px; color: #fff; font-size: 20px; opacity: 0.8; cursor: pointer; background: transparent; border: none; }
.btn-close-notice:hover { opacity: 1; }

/* --- 헤더 --- */
#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: top 0.3s ease;
}
#mainHeader.with-notice { top: var(--notice-height); }
.logo { font-size: 24px; font-weight: 800; color: var(--primary-color); display: flex; align-items: center; gap: 8px; }
.logo i { font-size: 26px; }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    color: var(--text-sub);
}
.header-btn:hover { background: #f1f5f9; color: var(--text-main); }
.header-btn.btn-kakao { background: #FEE500; color: #191919; }
.header-btn.btn-kakao:hover { background: #FDD835; }
.header-btn.btn-login { background: var(--primary-color); color: #fff; }
.header-btn.btn-login:hover { background: #00b035; }
.header-btn.btn-register { background: #1e293b; color: #fff; }
.header-btn.btn-register:hover { background: #334155; }

/* --- 메인 컨텐츠 --- */
body.index-page main {
    padding-top: calc(var(--header-height) + 50px);
    min-height: 100vh;
}
body.index-page main.with-notice { padding-top: calc(var(--header-height) + var(--notice-height) + 50px); }
.main-title { text-align: center; margin-bottom: 30px; padding: 0 20px; }
.main-title h1 { font-size: 42px; font-weight: 800; color: var(--text-main); margin-bottom: 10px; }
.main-title h1 span { color: var(--primary-color); }
.main-title p { font-size: 16px; color: var(--text-sub); }

/* --- 검색창 --- */
.search-section { max-width: 600px; margin: 0 auto 40px; padding: 0 20px; }
.search-box { position: relative; margin-bottom: 15px; }
.search-box input {
    width: 100%;
    padding: 16px 60px 16px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 16px;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.search-box input:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 4px 20px rgba(0, 199, 60, 0.15); }
.search-btn-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.search-btn-icon:hover { background: #00b035; }
.search-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.search-tags .tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: #fff;
    color: var(--text-sub);
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
}
.search-tags .tag:hover, .search-tags .tag.active { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }

/* --- 슬라이더 (카루셀) --- */
.slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}
.card-list {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 420px;
    padding: 20px 0;
    perspective: 1000px;
}

/* 블로그 카드 기본 스타일 */
.blog-card {
    width: 280px !important;
    background: #fff !important;
    border-radius: 20px !important;
    padding: 24px !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: absolute !important;
    border: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    min-width: 0 !important;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7) translateX(0);
}

/* 카루셀 위치별 스타일 */
.blog-card.active {
    opacity: 1 !important;
    transform: scale(1) translateX(0) !important;
    z-index: 5 !important;
    pointer-events: auto !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}
.blog-card.prev {
    opacity: 0.85 !important;
    transform: scale(0.88) translateX(-310px) !important;
    z-index: 4 !important;
    pointer-events: auto !important;
}
.blog-card.next {
    opacity: 0.85 !important;
    transform: scale(0.88) translateX(310px) !important;
    z-index: 4 !important;
    pointer-events: auto !important;
}
.blog-card.far-prev {
    opacity: 0.5 !important;
    transform: scale(0.75) translateX(-560px) !important;
    z-index: 3 !important;
    pointer-events: auto !important;
}
.blog-card.far-next {
    opacity: 0.5 !important;
    transform: scale(0.75) translateX(560px) !important;
    z-index: 3 !important;
    pointer-events: auto !important;
}
.blog-card.hidden {
    opacity: 0 !important;
    transform: scale(0.6) translateX(0) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* 카드 내부 요소 */
.blog-card .platform-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}
.platform-badge.bg-naver { background: linear-gradient(135deg, #00c73c, #00a832); }
.blog-card .profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 10px auto 15px;
    border: 3px solid #f1f5f9;
}
.blog-card .card-title { font-size: 18px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.blog-card .card-desc { font-size: 13px; color: var(--text-sub); line-height: 1.5; margin-bottom: 15px; min-height: 40px; }
.blog-card .stats-row { display: flex; justify-content: center; gap: 30px; margin-bottom: 15px; width: 100%; }
.blog-card .stats-row .stat-item { text-align: center; }
.blog-card .stat-val { display: block; font-size: 18px; font-weight: 700; color: var(--primary-color); }
.blog-card .stat-lbl { font-size: 12px; color: var(--text-sub); }
.blog-card .action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #f1f5f9;
    color: var(--text-main);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}
.blog-card .action-btn:hover { background: var(--primary-color); color: #fff; }

/* 네비게이션 버튼 */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    color: var(--text-main);
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}
.nav-btn:hover { background: var(--primary-color); color: #fff; }
.nav-btn.btn-prev { left: 10px; }
.nav-btn.btn-next { right: 10px; }

/* 페이지네이션 도트 */
.slider-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pagination-dot.active { background: var(--primary-color); width: 30px; border-radius: 5px; }

/* --- 다크 테마 영역 --- */
.dark-content-wrapper { background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%); margin-top: 60px; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title.dark-mode h2 { color: #fff; font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.section-title.dark-mode p { color: rgba(255, 255, 255, 0.7); font-size: 16px; }

/* --- 기능 소개 --- */
.features-section { padding: 80px 40px; }
.features-section.dark-theme { background: transparent; }
.features-2col-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; align-items: center; }
.features-left { display: flex; flex-direction: column; gap: 20px; }
.feature-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.feature-box:hover, .feature-box.active { background: rgba(255, 255, 255, 0.08); border-color: var(--primary-color); }
.feature-box.active { box-shadow: 0 4px 20px rgba(0, 199, 60, 0.2); }
.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), #00a832);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}
.feature-content h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature-content p { font-size: 14px; color: rgba(255, 255, 255, 0.7); line-height: 1.6; }
.features-right { position: relative; height: 400px; }
.feature-showcase-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 199, 60, 0.1), rgba(0, 164, 50, 0.05));
    border: 2px solid rgba(0, 199, 60, 0.3);
    border-radius: 24px;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
}
.feature-showcase-image.active { opacity: 1; visibility: visible; }
.showcase-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0, 199, 60, 0.2); padding: 8px 16px; border-radius: 20px; color: var(--primary-color); font-size: 14px; font-weight: 600; margin-bottom: 20px; width: fit-content; }
.showcase-content { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.nview-logo { font-size: 32px; font-weight: 800; color: var(--primary-color); margin-bottom: 10px; }
.showcase-title { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 30px; letter-spacing: 2px; }
.showcase-icon-main { margin-bottom: 30px; }
.shield-icon { position: relative; width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; }
.shield-icon > i { font-size: 100px; }
.shield-icon.green-theme > i { color: var(--primary-color); }
.shield-icon.blue-theme > i { color: #3b82f6; }
.shield-icon.purple-theme > i { color: #8b5cf6; }
.shield-icon.orange-theme > i { color: #f97316; }
.shield-inner { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 36px; color: #fff; }
.showcase-subtitle { font-size: 16px; color: rgba(255, 255, 255, 0.8); }

/* --- 실시간 통계 섹션 --- */
.stats-section { padding: 80px 40px; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.stats-section .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto 60px; }
.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.stat-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #00c73c, #00d4ff); transform: scaleX(0); transition: transform 0.3s ease; }
.stat-box:hover::before { transform: scaleX(1); }
.stat-box:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); transform: translateY(-5px); }
.stat-box.highlight { background: linear-gradient(135deg, #00c73c 0%, #00a832 100%); border-color: #00d43d; box-shadow: 0 8px 30px rgba(0, 199, 60, 0.3); }
.stat-box.highlight:hover { background: linear-gradient(135deg, #00d43d 0%, #00b935 100%); transform: translateY(-8px) scale(1.02); }
.stat-box .stat-icon { font-size: 48px; color: #00c73c; margin-bottom: 20px; }
.stat-box.highlight .stat-icon { color: #fff; }
.stat-box .stat-number { font-size: 56px; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1; }
.stat-box .stat-label { font-size: 16px; color: rgba(255, 255, 255, 0.7); font-weight: 500; }
.stat-box.highlight .stat-label { color: rgba(255, 255, 255, 0.95); }
.stat-box .stat-suffix { font-size: 24px; color: rgba(255, 255, 255, 0.6); font-weight: 600; margin-top: 5px; }
.stat-box.highlight .stat-suffix { color: rgba(255, 255, 255, 0.9); }
.free-trial-banner {
    max-width: 1000px; margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2); border-radius: 20px; padding: 40px; backdrop-filter: blur(10px);
}
.banner-content { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.banner-icon { font-size: 64px; color: #00c73c; flex-shrink: 0; }
.banner-text { flex: 1; }
.banner-text h3 { font-size: 28px; color: #fff; margin-bottom: 10px; }
.banner-text p { font-size: 16px; color: rgba(255, 255, 255, 0.8); }
.banner-text strong { color: #00c73c; font-weight: 700; }
.banner-btn {
    background: linear-gradient(135deg, #00c73c, #00a832); color: #fff;
    padding: 16px 32px; border-radius: 12px; font-size: 18px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(0, 199, 60, 0.3); flex-shrink: 0;
}
.banner-btn:hover { background: linear-gradient(135deg, #00d43d, #00b935); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0, 199, 60, 0.4); }

/* --- 비교 테이블 섹션 --- */
.comparison-section { padding: 80px 40px; background: linear-gradient(135deg, #16213e 0%, #0f1624 100%); }
.comparison-table-wrapper { max-width: 1200px; margin: 0 auto 50px; overflow-x: auto; border-radius: 20px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); }
.comparison-table { width: 100%; border-collapse: collapse; background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); }
.comparison-table thead { background: linear-gradient(135deg, rgba(0, 199, 60, 0.2), rgba(0, 164, 50, 0.2)); }
.comparison-table th { padding: 25px 20px; font-size: 16px; font-weight: 700; text-align: center; border-bottom: 2px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.9); }
.comparison-table th.feature-column { text-align: left; width: 25%; }
.comparison-table th.nview-column { background: linear-gradient(135deg, #00c73c, #00a832); color: #fff; position: relative; }
.comparison-table th.nview-column::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent); pointer-events: none; }
.comparison-table th.competitor-column { color: rgba(255, 255, 255, 0.6); }
.brand-cell { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 18px; }
.brand-cell i { font-size: 24px; }
.comparison-table tbody tr { border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: background 0.2s ease; }
.comparison-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }
.comparison-table td { padding: 20px; text-align: center; color: rgba(255, 255, 255, 0.8); }
.comparison-table td.feature-name { text-align: left; font-weight: 600; color: rgba(255, 255, 255, 0.9); }
.comparison-table td.nview-cell { background: rgba(0, 199, 60, 0.05); font-weight: 600; }
.comparison-table td i { font-size: 24px; }
.comparison-section .text-success { color: #00c73c !important; }
.comparison-section .text-warning { color: #ffa726 !important; }
.comparison-section .text-muted { color: rgba(255, 255, 255, 0.4) !important; }
.value-highlight { display: inline-block; background: linear-gradient(135deg, #00c73c, #00a832); color: #fff; padding: 8px 16px; border-radius: 20px; font-weight: 700; font-size: 15px; box-shadow: 0 2px 10px rgba(0, 199, 60, 0.3); }
.comparison-cta { text-align: center; max-width: 600px; margin: 0 auto; }
.comparison-cta p { font-size: 18px; color: rgba(255, 255, 255, 0.8); margin-bottom: 25px; }
.cta-button {
    display: inline-flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, #00c73c, #00a832); color: #fff;
    padding: 18px 40px; border-radius: 30px; font-size: 18px; font-weight: 700;
    box-shadow: 0 6px 25px rgba(0, 199, 60, 0.4); transition: all 0.3s ease;
}
.cta-button:hover { background: linear-gradient(135deg, #00d43d, #00b935); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0, 199, 60, 0.5); }
.cta-button i { font-size: 22px; }

/* --- Why Us 섹션 --- */
.why-us-section { padding: 80px 40px; background: linear-gradient(135deg, #0f1624 0%, #1a1a2e 100%); }
.why-us-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: center; }
.why-us-content .small-title { color: var(--primary-color); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
.why-us-content h2 { font-size: 42px; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 20px; }
.why-us-content > p { font-size: 16px; color: rgba(255, 255, 255, 0.7); line-height: 1.8; margin-bottom: 40px; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 20px; padding: 20px; background: rgba(255, 255, 255, 0.03); border-radius: 16px; transition: all 0.3s ease; }
.why-item:hover { background: rgba(255, 255, 255, 0.06); transform: translateX(10px); }
.icon-shape { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary-color), #00a832); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; flex-shrink: 0; }
.text-content h4 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.text-content p { font-size: 14px; color: rgba(255, 255, 255, 0.7); line-height: 1.6; }
.why-us-image { display: flex; justify-content: center; align-items: center; }
.image-card-stack { position: relative; width: 300px; height: 350px; }
.img-card { position: absolute; width: 180px; height: 120px; background: linear-gradient(135deg, #667eea, #764ba2); border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.img-card i { font-size: 40px; margin-bottom: 10px; }
.img-card span { font-size: 16px; font-weight: 600; }
.img-card.card-1 { top: 0; left: 0; z-index: 2; animation: float 3s ease-in-out infinite; }
.img-card.card-2 { bottom: 0; right: 0; z-index: 1; background: linear-gradient(135deg, var(--primary-color), #00a832); animation: float 3s ease-in-out infinite 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* --- 모바일 하단 바 --- */
.mobile-bottom-bar {
    position: fixed; bottom: 0; left: 0; width: 100%; height: 60px;
    background: #fff; box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    display: flex; justify-content: space-around; align-items: center; z-index: 999;
}
.mobile-bottom-bar a { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--text-sub); }
.mobile-bottom-bar a i { font-size: 20px; }

/* --- 반응형 --- */
@media (max-width: 1200px) {
    .blog-card.prev { transform: scale(0.85) translateX(-280px) !important; }
    .blog-card.next { transform: scale(0.85) translateX(280px) !important; }
    .blog-card.far-prev { transform: scale(0.7) translateX(-480px) !important; }
    .blog-card.far-next { transform: scale(0.7) translateX(480px) !important; }
}
@media (max-width: 1024px) {
    .features-2col-layout, .why-us-container { grid-template-columns: 1fr; gap: 40px; }
    .features-right { height: 350px; }
    .stats-section .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .comparison-table { min-width: 800px; }
    .blog-card.far-prev, .blog-card.far-next { opacity: 0 !important; pointer-events: none !important; }
    .blog-card.prev { transform: scale(0.85) translateX(-250px) !important; }
    .blog-card.next { transform: scale(0.85) translateX(250px) !important; }
}
@media (max-width: 768px) {
    #mainHeader { padding: 0 20px; }
    .header-right { display: none; }
    .mobile-menu-btn { display: flex !important; }
    .mobile-bottom-bar { display: flex !important; }
    body.index-page main { padding-bottom: 80px; }
    .main-title h1 { font-size: 28px; }
    .slider-wrapper { padding: 0 10px; }
    .card-list { height: 380px; }
    .blog-card { width: 250px !important; padding: 20px !important; }
    .blog-card.active { transform: scale(1) translateX(0) !important; }
    .blog-card.prev { transform: scale(0.8) translateX(-200px) !important; opacity: 0.6 !important; }
    .blog-card.next { transform: scale(0.8) translateX(200px) !important; opacity: 0.6 !important; }
    .blog-card.far-prev, .blog-card.far-next { opacity: 0 !important; pointer-events: none !important; }
    .nav-btn { display: none; }
    .features-section, .stats-section, .comparison-section, .why-us-section { padding: 60px 20px; }
    .stats-section .stats-grid { grid-template-columns: 1fr; gap: 15px; }
    .stat-box { padding: 30px 20px; }
    .stat-box .stat-number { font-size: 42px; }
    .banner-content { flex-direction: column; text-align: center; gap: 20px; }
    .banner-icon { font-size: 48px; }
    .banner-text h3 { font-size: 22px; }
    .banner-text p { font-size: 14px; }
    .banner-btn { width: 100%; justify-content: center; }
    .comparison-table th, .comparison-table td { padding: 15px 10px; font-size: 14px; }
    .value-highlight { padding: 6px 12px; font-size: 13px; }
    .why-us-content h2 { font-size: 32px; }
    .image-card-stack { width: 250px; height: 300px; }
    .img-card { width: 150px; height: 100px; }
}
