.hero-section {
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.9), rgba(20, 20, 20, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.8;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-value {
    display: block;
    font-size: 1.4em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.hero-stat-label {
    display: block;
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.7);
}

/* 카테고리 탭 */
.category-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.category-tab {
    padding: 6px 14px;
    border-radius: 16px;
    border: 1px solid #333;
    background: #222;
    color: #ccc;
    font-size: 0.8em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.category-tab:hover {
    background: #333;
    color: #fff;
}

.category-tab.active {
    background: #ff6b25;
    color: white;
    border-color: #ff6b25;
}

/* 섹션 제목 */
.section-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 기업 카드 */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.company-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.company-card:hover {
    transform: translateY(-2px);
    border-color: #ff6b25;
    box-shadow: 0 4px 10px rgba(255, 107, 37, 0.15);
}

.company-header {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.company-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    flex-shrink: 0;
}

.company-info {
    flex: 1;
    min-width: 0;
}

.company-name {
    font-size: 0.95em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.company-category {
    font-size: 0.7em;
    color: #aaa;
    margin-bottom: 4px;
}

.company-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.7em;
}

.rating-stars {
    color: #fbbf24;
}

.rating-score {
    color: #ffffff;
    font-weight: 600;
}

.rating-count {
    color: #777;
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.company-tag {
    padding: 3px 8px;
    background: rgba(255, 107, 37, 0.1);
    border: 1px solid rgba(255, 107, 37, 0.2);
    border-radius: 5px;
    font-size: 0.65em;
    color: #ff8f50;
    font-weight: 500;
}

/* Coming Soon 섹션 */
.coming-soon {
    background: rgba(255, 107, 37, 0.05);
    border: 1px dashed rgba(255, 107, 37, 0.3);
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.coming-soon-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.coming-soon-badge {
    display: inline-block;
    background: #ff6b25;
    color: white;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.65em;
    font-weight: 700;
    margin-bottom: 10px;
}

.coming-soon-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.coming-soon-desc {
    font-size: 0.8em;
    color: #999;
    line-height: 1.4;
}

/* 비어 있는 상태 */
.empty-state {
    text-align: center;
    padding: 30px 15px;
    color: #777;
}

.empty-state-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
    opacity: 0.6;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-stat-value {
        font-size: 1.3em;
    }

    .company-grid {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        gap: 5px;
    }

    .category-tab {
        font-size: 0.75em;
        padding: 5px 12px;
    }

    .hero-section {
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 1em;
    }
}