/* ===========================================
   모든 골드 색상을 청록색으로 변경
   =========================================== */

/* CSS 변수 재정의 */
:root {
    --color-accent: #099f97 !important;
    --color-accent-light: #099f97 !important;
}

/* 명시적으로 골드 색상 사용하는 모든 곳 */
.hero-badge,
.section-label,
.why-finsync .section-label,
.hero-title .highlight::after,
.stat-number,
.expert-role,
.portfolio-highlight .section-label,
.testimonial-rating {
    color: #099f97 !important;
}

/* 배경 골드 → 청록 */
.hero-badge,
.stat-icon,
.achievement-badge {
    background: #099f97 !important;
}

/* 테두리 골드 → 청록 */
.portfolio-card:hover,
.expert-card:hover {
    border-color: #099f97 !important;
}

/* CTA 호버에서 골드 사용하던 것 → 청록 */
.btn:hover,
.nav-link:hover {
    color: #099f97 !important;
}
