/* ============================================================
   BizConnect Pro - Main Stylesheet v2.0
   Navy (#0f172a) + Sky (#0ea5e9) + Clean White
   Refined, Modern Business Design
   ============================================================ */

/* --- Variables --- */
:root {
    --navy: #0f172a;
    --navy-600: #1e293b;
    --navy-500: #334155;
    --primary: #0ea5e9;
    --primary-hover: #0284c7;
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --purple: #8b5cf6;
    --g50: #f8fafc; --g100: #f1f5f9; --g200: #e2e8f0; --g300: #cbd5e1;
    --g400: #94a3b8; --g500: #64748b; --g600: #475569; --g700: #334155;
    --g800: #1e293b; --g900: #0f172a;
    --font: 'Pretendard Variable', 'Pretendard', -apple-system, 'Segoe UI', sans-serif;
    --radius: 12px; --radius-sm: 8px; --radius-lg: 16px; --radius-xl: 20px;
    --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
    --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
    --shadow-xl: 0 20px 40px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.04);
    --ease: cubic-bezier(.4,0,.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--font); color: var(--g800); background: var(--g50); line-height: 1.65; font-size: 15px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: var(--primary-hover); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }
::selection { background: var(--primary-200); color: var(--navy); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* --- Top Bar --- */
.top-bar { background: var(--navy); padding: 7px 0; font-size: 12px; letter-spacing: .01em; border-bottom: 1px solid rgba(255,255,255,.06); }
.top-bar .top-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.top-bar .top-links a { color: var(--g400); transition: color .2s; white-space: nowrap; }
.top-bar .top-links a:hover { color: #fff; }
.top-bar .top-links .badge { font-size: 9px; vertical-align: middle; }

/* --- Main Navigation --- */
.main-nav { z-index: 1030; background: rgba(255,255,255,.97); backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%); border-bottom: 1px solid var(--g200); padding: 0; transition: box-shadow .3s; }
.main-nav.scrolled { box-shadow: var(--shadow-md); }
.main-nav .container { padding-top: 10px; padding-bottom: 10px; }
.logo-text { font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -.7px; }
.logo-accent { color: var(--primary); }
.logo-sub { font-size: 10px; font-weight: 700; color: var(--primary); vertical-align: super; letter-spacing: 2px; text-transform: uppercase; }
.navbar-nav .nav-link { font-weight: 600; color: var(--g600); padding: 8px 14px !important; font-size: 14px; border-radius: var(--radius-sm); transition: all .2s var(--ease); position: relative; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary); background: var(--primary-50); }
.navbar-nav .nav-link i { margin-right: 4px; font-size: 13px; }

/* Mega Menu */
.mega-menu { width: 100%; border: none; border-radius: 0 0 var(--radius) var(--radius); border-top: 3px solid var(--primary); padding: 0; box-shadow: var(--shadow-xl); }
.mega-menu .dropdown-item { font-size: 13px; border-radius: var(--radius-sm); padding: 7px 12px; color: var(--g700); transition: all .15s; }
.mega-menu .dropdown-item:hover { background: var(--primary-50); color: var(--primary-hover); transform: translateX(3px); }
.dropdown-menu { border: none; box-shadow: var(--shadow-lg); border-radius: var(--radius); padding: 6px; }
.dropdown-item { border-radius: var(--radius-sm); font-size: 13px; padding: 8px 12px; }
.dropdown-item:hover { background: var(--primary-50); }

/* Header Search */
.header-search { position: relative; min-width: 280px; }
.header-search .form-control { border-radius: 24px 0 0 24px; border-right: none; font-size: 13px; border-color: var(--g300); padding-left: 16px; height: 38px; background: var(--g50); }
.header-search .form-control:focus { background: #fff; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,.12); }
.header-search .btn { border-radius: 0 24px 24px 0; padding: 0 18px; height: 38px; }
.search-autocomplete { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-xl); display: none; z-index: 1050; max-height: 320px; overflow-y: auto; border: 1px solid var(--g200); }
.search-autocomplete.show { display: block; }
.search-autocomplete a { display: block; padding: 10px 16px; font-size: 13px; color: var(--g700); border-bottom: 1px solid var(--g100); transition: all .15s; }
.search-autocomplete a:hover { background: var(--primary-50); padding-left: 20px; }

/* --- Hero Section --- */
.hero-section { background: linear-gradient(160deg, var(--navy) 0%, #0c2840 40%, #0a3553 70%, #0d4060 100%); padding: 70px 0 60px; position: relative; overflow: hidden; }
.hero-section::before { content: ''; position: absolute; top: -100px; right: -150px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(14,165,233,.12) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.hero-section::after { content: ''; position: absolute; bottom: -200px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(6,182,212,.08) 0%, transparent 60%); border-radius: 50%; pointer-events: none; }
.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; }
.hero-title { font-size: 40px; font-weight: 800; color: #fff; line-height: 1.25; letter-spacing: -1.5px; }
.hero-title .highlight { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { color: var(--g400); font-size: 16px; margin-top: 12px; line-height: 1.6; }
.hero-search { max-width: 660px; margin: 32px auto 0; position: relative; z-index: 1; }
.hero-search .input-group { background: rgba(255,255,255,.08); border-radius: 28px; padding: 4px; border: 1px solid rgba(255,255,255,.1); transition: all .3s var(--ease); }
.hero-search .input-group:focus-within { background: rgba(255,255,255,.12); border-color: rgba(14,165,233,.4); box-shadow: 0 0 0 4px rgba(14,165,233,.1); }
.hero-search .form-control { height: 52px; border: none; background: transparent; font-size: 16px; color: #fff; padding-left: 24px; }
.hero-search .form-control::placeholder { color: var(--g400); }
.hero-search .form-control:focus { box-shadow: none; }
.hero-search .search-icon { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); color: var(--g400); font-size: 18px; z-index: 2; }
.hero-search .btn-search { height: 48px; border-radius: 24px !important; padding: 0 32px; font-weight: 700; font-size: 15px; background: var(--primary); border: none; margin: 2px; }
.hero-search .btn-search:hover { background: var(--primary-hover); transform: scale(1.02); }
.hero-keywords { margin-top: 18px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.hero-keywords .keyword-tag { display: inline-flex; align-items: center; padding: 5px 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; color: var(--g300); font-size: 12px; font-weight: 500; cursor: pointer; transition: all .25s var(--ease); }
.hero-keywords .keyword-tag:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-1px); }
.hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 28px; }
.hero-stat-item { text-align: center; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--g400); margin-top: 4px; }

/* --- Sections --- */
.section { padding: 56px 0; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.section-title { font-size: 22px; font-weight: 800; color: var(--navy); display: flex; align-items: center; gap: 10px; letter-spacing: -.3px; }
.section-title .icon-wrap { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.section-more { font-size: 13px; font-weight: 600; color: var(--g500); display: flex; align-items: center; gap: 4px; transition: all .2s; }
.section-more:hover { color: var(--primary); gap: 8px; }

/* --- Category Grid --- */
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.category-card { display: flex; flex-direction: column; align-items: center; padding: 22px 8px 18px; background: #fff; border-radius: var(--radius); border: 1px solid var(--g200); transition: all .3s var(--ease); text-align: center; cursor: pointer; text-decoration: none !important; }
.category-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.category-card .cat-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--primary-50); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; font-size: 22px; color: var(--primary); transition: all .3s var(--ease); }
.category-card:hover .cat-icon { background: var(--primary); color: #fff; transform: scale(1.05); box-shadow: 0 4px 12px rgba(14,165,233,.3); }
.category-card .cat-name { font-size: 13px; font-weight: 700; color: var(--g700); line-height: 1.3; }
.category-card .cat-count { font-size: 11px; color: var(--g400); margin-top: 3px; }

/* --- Company Card --- */
.company-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--g200); overflow: hidden; transition: all .35s var(--ease); height: 100%; display: flex; flex-direction: column; position: relative; }
.company-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.company-card.is-premium { border-color: #fde68a; background: linear-gradient(180deg, #fffef5 0%, #fff 30%); }
.company-card.is-premium::before { content: 'PREMIUM'; position: absolute; top: 12px; right: -28px; background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; font-size: 9px; font-weight: 800; padding: 3px 36px; letter-spacing: 1px; z-index: 2; transform: rotate(45deg); box-shadow: 0 2px 8px rgba(245,158,11,.3); }
.company-card .card-image { position: relative; height: 180px; overflow: hidden; background: linear-gradient(135deg, var(--g100), var(--g50)); }
.company-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.company-card:hover .card-image img { transform: scale(1.06); }
.company-card .card-logo { position: absolute; bottom: -18px; left: 16px; width: 48px; height: 48px; border-radius: 10px; border: 3px solid #fff; background: #fff; object-fit: contain; box-shadow: var(--shadow); }
.company-card .card-body { padding: 26px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.company-card .card-company-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.company-card .card-slogan { font-size: 12px; color: var(--g500); margin-bottom: 10px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.company-card .card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.company-card .card-tag { font-size: 11px; padding: 2px 8px; background: var(--g100); color: var(--g600); border-radius: 4px; font-weight: 500; }
.company-card .card-meta { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--g400); padding-top: 10px; border-top: 1px solid var(--g100); }

/* --- Company Detail --- */
.company-detail-header { background: linear-gradient(160deg, var(--navy) 0%, #0c2840 50%, #0a3050 100%); position: relative; min-height: 300px; overflow: hidden; }
.company-cover { width: 100%; height: 100%; object-fit: cover; opacity: .2; position: absolute; top: 0; left: 0; filter: blur(2px); }
.company-header-content { position: relative; z-index: 1; padding: 48px 0 36px; }
.company-logo-large { width: 96px; height: 96px; border-radius: var(--radius); border: 4px solid rgba(255,255,255,.15); background: #fff; object-fit: contain; box-shadow: var(--shadow-lg); padding: 6px; }
.company-detail-name { font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -.5px; }
.company-detail-slogan { color: var(--g400); font-size: 15px; margin-top: 4px; }
.company-detail-badges { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.company-detail-contact { display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.company-detail-contact a { color: var(--g300); font-size: 13px; display: flex; align-items: center; gap: 5px; transition: color .2s; }
.company-detail-contact a:hover { color: #fff; }
.company-cta-group { display: flex; gap: 8px; }
.company-cta-group .btn-inquiry { background: var(--primary); border: none; padding: 12px 28px; border-radius: 24px; font-weight: 700; font-size: 15px; color: #fff; transition: all .2s; }
.company-cta-group .btn-inquiry:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(14,165,233,.3); }
.company-cta-group .btn-icon { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05); color: #fff; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.company-cta-group .btn-icon:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); }
.company-cta-group .btn-icon.active { background: var(--warning); border-color: var(--warning); color: var(--navy); }

/* Company Tabs */
.company-tabs { background: #fff; border-bottom: 1px solid var(--g200); position: sticky; top: 56px; z-index: 100; }
.company-tabs .nav-link { font-size: 14px; font-weight: 600; color: var(--g500); padding: 14px 20px; border-bottom: 3px solid transparent; border-radius: 0; transition: all .2s; }
.company-tabs .nav-link:hover { color: var(--primary); background: var(--primary-50); }
.company-tabs .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); background: none; }

/* Strength Cards */
.strength-card { padding: 28px 20px; background: #fff; border-radius: var(--radius); text-align: center; border: 1px solid var(--g200); transition: all .3s var(--ease); }
.strength-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.strength-card i { font-size: 32px; color: var(--primary); margin-bottom: 14px; display: block; }
.strength-card h6 { font-weight: 700; font-size: 14px; color: var(--navy); }
.strength-card p { font-size: 12px; color: var(--g500); margin: 0; line-height: 1.5; }

/* Timeline */
.timeline { position: relative; padding-left: 36px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--primary-200), var(--g200)); border-radius: 1px; }
.timeline-item { position: relative; padding-bottom: 28px; padding-left: 24px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -30px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--primary); box-shadow: 0 0 0 4px var(--primary-100); }
.timeline-year { font-size: 14px; font-weight: 800; color: var(--primary); }
.timeline-text { font-size: 14px; color: var(--g600); margin-top: 2px; }

/* --- Inquiry Form --- */
.inquiry-form-card { background: #fff; border-radius: var(--radius-lg); border: 2px solid var(--primary-100); padding: 32px; box-shadow: var(--shadow); }
.inquiry-form-card .form-label { font-weight: 600; font-size: 13px; color: var(--g700); }
.inquiry-form-card .form-control, .inquiry-form-card .form-select { border-radius: var(--radius-sm); border-color: var(--g300); font-size: 14px; padding: 10px 14px; transition: all .2s; }
.inquiry-form-card .form-control:focus, .inquiry-form-card .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,.1); }

/* --- Reviews / Rating --- */
.rating-stars { color: var(--warning); font-size: 14px; letter-spacing: 1px; }
.rating-number { font-size: 42px; font-weight: 800; color: var(--navy); line-height: 1; }
.review-card { padding: 20px; border: 1px solid var(--g200); border-radius: var(--radius); margin-bottom: 12px; transition: all .2s; }
.review-card:hover { border-color: var(--g300); box-shadow: var(--shadow-xs); }

/* --- Sidebar --- */
.sidebar-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--g200); padding: 20px; margin-bottom: 16px; box-shadow: var(--shadow-xs); }
.sidebar-card .sidebar-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); display: flex; align-items: center; gap: 6px; }
.sidebar-info-list { list-style: none; padding: 0; margin: 0; }
.sidebar-info-list li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--g100); font-size: 13px; }
.sidebar-info-list li:last-child { border-bottom: none; }
.sidebar-info-list .label { color: var(--g500); font-weight: 500; }
.sidebar-info-list .value { color: var(--g800); font-weight: 600; text-align: right; max-width: 55%; }

/* --- Banner Ad --- */
.ad-banner-wrap { position: relative; margin: 16px 0; border-radius: var(--radius-sm); overflow: hidden; }
.ad-banner-item { position: relative; }
.ad-banner-item .ad-image { width: 100%; border-radius: var(--radius-sm); }
.ad-badge { position: absolute; top: 8px; right: 8px; font-size: 9px; font-weight: 700; background: rgba(0,0,0,.45); color: rgba(255,255,255,.7); padding: 2px 7px; border-radius: 4px; letter-spacing: .5px; backdrop-filter: blur(4px); }

/* --- Trust Badges --- */
.bg-gradient-platinum { background: linear-gradient(135deg, #a78bfa, #818cf8) !important; }
.bg-gradient-gold { background: linear-gradient(135deg, #fbbf24, #d97706) !important; }
.bg-gradient-silver { background: linear-gradient(135deg, #94a3b8, #64748b) !important; }
.bg-gradient-bronze { background: linear-gradient(135deg, #d4a373, #a67c52) !important; }

/* --- Article Card --- */
.article-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--g200); overflow: hidden; transition: all .35s var(--ease); }
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.article-card .article-thumb { height: 180px; overflow: hidden; background: var(--g100); }
.article-card .article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.article-card:hover .article-thumb img { transform: scale(1.06); }
.article-card .article-body { padding: 16px; }
.article-card .article-category { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .8px; }
.article-card .article-title { font-size: 15px; font-weight: 700; color: var(--navy); margin: 6px 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-card .article-excerpt { font-size: 13px; color: var(--g500); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* --- Community Board --- */
.board-list .board-item { display: flex; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--g100); }
.board-list .board-title { flex: 1; font-size: 14px; font-weight: 500; color: var(--g800); }
.board-list .board-title:hover { color: var(--primary); }

/* --- Stat Cards (Admin) --- */
.stat-card { background: #fff; border-radius: var(--radius); padding: 20px; border: 1px solid var(--g200); display: flex; align-items: center; gap: 16px; transition: all .25s var(--ease); }
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-card .stat-icon { width: 52px; height: 52px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.stat-card .stat-number { font-size: 24px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.stat-card .stat-label { font-size: 12px; color: var(--g500); font-weight: 500; margin-top: 2px; }

/* --- Footer --- */
.footer-newsletter { background: linear-gradient(135deg, var(--primary), var(--primary-hover)); position: relative; overflow: hidden; }
.footer-newsletter::before { content: ''; position: absolute; right: -50px; top: -50px; width: 200px; height: 200px; background: rgba(255,255,255,.06); border-radius: 50%; }
.footer-main { background: var(--navy); }
.footer-main a { transition: color .2s; }
.footer-main a:hover { color: #fff !important; }
.footer-bottom { background: #070d17; border-top: 1px solid rgba(255,255,255,.05); }

/* Back to Top */
.btn-back-to-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; border-radius: 50%; display: none; align-items: center; justify-content: center; z-index: 999; font-size: 18px; box-shadow: var(--shadow-lg); transition: all .3s; }
.btn-back-to-top.show { display: flex; }
.btn-back-to-top:hover { transform: translateY(-3px); }

/* --- Bootstrap Overrides --- */
.btn-primary { background: var(--primary); border-color: var(--primary); font-weight: 600; }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn-outline-primary { color: var(--primary); border-color: var(--primary); font-weight: 600; }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); }
.card { border-radius: var(--radius); border-color: var(--g200); }
.form-control, .form-select { border-radius: var(--radius-sm); border-color: var(--g300); }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,.1); }
.badge { font-weight: 600; font-size: 11px; letter-spacing: .02em; }
.table { --bs-table-hover-bg: var(--primary-50); }
.table th { font-weight: 600; font-size: 12px; color: var(--g500); text-transform: uppercase; letter-spacing: .5px; }
.nav-pills .nav-link { font-weight: 600; font-size: 13px; border-radius: 20px; padding: 6px 16px; color: var(--g600); transition: all .2s; }
.nav-pills .nav-link:hover { background: var(--g100); }
.nav-pills .nav-link.active { background: var(--primary); }
.breadcrumb { font-size: 13px; }
.breadcrumb-item a { color: var(--g500); }
.breadcrumb-item.active { color: var(--g700); }
.alert { border-radius: var(--radius-sm); border: none; font-size: 14px; }
.progress { border-radius: 20px; background: var(--g100); }
.progress-bar { border-radius: 20px; }

/* Filter */
.filter-section { margin-bottom: 20px; }
.filter-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.filter-checkbox { display: flex; align-items: center; padding: 5px 0; font-size: 13px; }

/* --- Animations --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { animation: fadeInUp .5s var(--ease) both; }

/* --- Responsive --- */
@media (max-width: 1199px) {
    .category-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
    .category-grid { grid-template-columns: repeat(4, 1fr); }
    .hero-title { font-size: 30px; }
    .company-detail-name { font-size: 24px; }
    .header-search { min-width: 220px; }
    .hero-stats { gap: 24px; }
    .hero-stat-num { font-size: 22px; }
}
@media (max-width: 767px) {
    .top-bar { display: none; }
    .category-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .category-card { padding: 16px 6px 12px; }
    .category-card .cat-icon { width: 42px; height: 42px; font-size: 18px; border-radius: 10px; }
    .category-card .cat-name { font-size: 11px; }
    .hero-section { padding: 48px 0 40px; }
    .hero-title { font-size: 24px; letter-spacing: -1px; }
    .hero-subtitle { font-size: 14px; }
    .hero-search .form-control { height: 46px; font-size: 14px; }
    .hero-search .btn-search { height: 42px; padding: 0 24px; font-size: 14px; }
    .hero-stats { gap: 16px; flex-wrap: wrap; }
    .hero-stat-num { font-size: 20px; }
    .section { padding: 40px 0; }
    .section-title { font-size: 18px; }
    .company-card .card-image { height: 140px; }
    .company-detail-name { font-size: 20px; }
    .company-detail-header { min-height: auto; }
    .company-tabs .nav-link { padding: 10px 14px; font-size: 12px; }
    .header-search { display: none; }
    .mega-menu .row .col-md-3 { margin-bottom: 8px; }
    .company-cta-group { flex-wrap: wrap; }
    .company-cta-group .btn-inquiry { width: 100%; text-align: center; }
    .sidebar-card { padding: 16px; }
    .stat-card { padding: 14px; }
    .stat-card .stat-icon { width: 42px; height: 42px; font-size: 18px; }
    .stat-card .stat-number { font-size: 20px; }
}
@media (max-width: 575px) {
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-keywords { gap: 4px; }
    .hero-keywords .keyword-tag { font-size: 11px; padding: 4px 12px; }
}
