/* ===========================================
   12가지 추가 수정사항
   =========================================== */

/* 1. 홈페이지 모든 그림자 제거 */
body.home * {
    box-shadow: none !important;
}

body.home .btn,
body.home .card,
body.home .portfolio-card,
body.home .stat-card,
body.home .hero-slide,
body.home img {
    box-shadow: none !important;
}

/* 2. "파인싱크 더 알아보기" 버튼 가운데 정렬 */
.why-finsync .btn-primary {
    display: block !important;
    margin: 0 auto !important;
    width: fit-content !important;
}

/* 3. "전체 실적 보기" 버튼 - 동일 디자인 + 가운데 정렬 */
.portfolio-cta {
    text-align: center !important;
}

.portfolio-cta .btn-secondary {
    background: #1B3559 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

.portfolio-cta .btn-secondary:hover {
    background: #099F97 !important;
    color: #ffffff !important;
}

/* 4. ABOUT stats-section 여백 더 줄이기 */
body.page-template-page-about .stats-section {
    padding: 40px 0 !important;  /* 60px에서 40px로 */
}

/* 5. PORTFOLIO project-tag - 투명 배경 + 검정 테두리 */
.project-tag {
    background: transparent !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
}

/* 6. SERVICES service-number 크기 더 키우기 */
.service-number {
    font-size: 6rem !important;  /* 기존보다 크게 */
}

/* 7. SERVICES category-item - 테두리 #099F97, 호버 제거 */
.category-item {
    border-color: #099F97 !important;
}

.category-item:hover {
    background: transparent !important;
    transform: none !important;
}

/* 8. CONSULTING capabilities-section 배경 흰색 */
.capabilities-section {
    background: #ffffff !important;
}

/* 10. EXPERTS 전문가 사진 간격 3cm (약 113px) 좁히기 */
.experts-grid-two {
    gap: 1rem !important;  /* 2rem에서 1rem으로 */
}

.experts-row {
    margin-bottom: 1rem !important;  /* 2rem에서 1rem으로 */
}

/* 11. 모바일 메뉴 하단 여백 더 넓게 */
@media (max-width: 968px) {
    .nav-menu.active li:last-child {
        padding-bottom: 5rem !important;  /* 3rem에서 5rem으로 */
        margin-bottom: 2rem !important;
    }
}

/* 12. HOME 사진 4장 밝게 */
body.home .hero-slide {
    filter: brightness(1.15) !important;  /* 15% 밝게 */
}

body.home .hero-slide img {
    filter: brightness(1.15) !important;
}
