.enterprise-detail-section {
    padding: 40px 0;
    background: #f8fafc;
}
.enterprise-hero {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    padding: 40px 0;
    margin-top: 70px;
}
.enterprise-hero-content {
    display: flex;
    align-items: center;
    gap: 32px;
}
.enterprise-hero-logo {
    width: 7rem;
    height: 7rem;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    flex-shrink: 0;
}
.enterprise-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.enterprise-hero-info {
    flex: 1;
    color: white;
}
.enterprise-hero-info h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.enterprise-hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.enterprise-hero-badge {
    padding: 6px 16px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}
.enterprise-hero-badge.verified {
    background: rgba(16, 185, 129, 0.3);
}
.enterprise-basic-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.enterprise-basic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.enterprise-basic-item .label {
    font-size: 13px;
    color: #64748b;
}
.enterprise-basic-item .value {
    font-size: 14px;
    font-weight: 600;
    color: #0284c7;
}
.enterprise-hero-stats {
    display: flex;
    gap: 40px;
}
.enterprise-hero-stat {
    text-align: center;
}
.enterprise-hero-stat .value {
    font-size: 32px;
    font-weight: 700;
    display: block;
    color: white;
}
.enterprise-hero-stat .label {
    font-size: 14px;
    opacity: 0.9;
}
.enterprise-hero-actions {
    display: flex;
    gap: 12px;
}
.enterprise-hero-btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.enterprise-hero-btn.primary {
    background: white;
    color: #0284c7;
    border: none;
}
.enterprise-hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.enterprise-hero-btn.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}
.enterprise-hero-btn.secondary:hover {
    background: rgba(255,255,255,0.3);
}
.enterprise-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
}
.enterprise-tabs-nav {
    display: flex;
    background: white;
    border-radius: 14px;
    padding: 8px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
    gap: 4px;
}
.enterprise-tabs-nav.sticky-active {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 889;
    border-radius: 0;
    background: white;
}
.enterprise-tab-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: max-content;
    position: relative;
    overflow: hidden;
}
.enterprise-tab-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.enterprise-tab-btn:hover {
    color: #0284c7;
    background: #f1f5f9;
}
.enterprise-tab-btn:hover::before {
    width: 40%;
}
.enterprise-tab-btn.active {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}
.enterprise-tab-btn.active::before {
    display: none;
}
.enterprise-tab-panel {
    display: none;
}
.enterprise-tab-panel.active {
    display: block;
}
.enterprise-card-block {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.enterprise-card-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.enterprise-card-block h3::before {
    content: '';
    width: 4px;
    height: 22px;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    border-radius: 2px;
}
.enterprise-card-block h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    border-radius: 2px;
}
.enterprise-intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}
.digital-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.digital-profile-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}
.digital-profile-section .section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.digital-profile-section .section-icon {
    font-size: 20px;
}
.digital-profile-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}
.digital-profile-section .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.digital-profile-section .tag-item {
    padding: 8px 14px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 13px;
    color: #64748b;
    transition: all 0.3s;
}
.digital-profile-section .tag-item.active {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    color: white;
    border-color: #0284c7;
}
.digital-profile-section .tag-item.pain {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
    border-color: #f59e0b;
}
.digital-profile-section .section-desc {
    font-size: 12px;
    color: #94a3b8;
    font-style: italic;
}
.digital-profile-section .investment-type {
    margin-bottom: 16px;
}
.digital-profile-section .type-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}
.digital-profile-section .type-badge.quality {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #22c55e;
}
.digital-profile-section .type-icon {
    font-size: 24px;
}
.digital-profile-section .type-label {
    font-size: 15px;
    font-weight: 600;
    color: #16a34a;
}
.digital-profile-section .type-desc {
    font-size: 12px;
    color: #64748b;
    flex: 1;
}
.digital-profile-section .investment-stats {
    display: flex;
    gap: 20px;
}
.digital-profile-section .stat-item {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}
.digital-profile-section .stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #0284c7;
}
.digital-profile-section .stat-label {
    font-size: 12px;
    color: #64748b;
}
.digital-profile-section .activity-metrics {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.digital-profile-section .metric-item {
    background: white;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}
.digital-profile-section .metric-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}
.digital-profile-section .metric-fill {
    height: 100%;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}
.digital-profile-section .metric-label {
    font-size: 12px;
    color: #64748b;
}
.digital-profile-section .metric-label strong {
    color: #0284c7;
    font-weight: 600;
}

.enterprise-demand-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.enterprise-demand-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.enterprise-demand-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.enterprise-demand-item:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-color: #0284c7;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(2, 132, 199, 0.15);
}
.enterprise-demand-item:hover::before {
    opacity: 1;
}
.enterprise-demand-item .demand-info {
    flex: 1;
}
.enterprise-demand-item .demand-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.enterprise-demand-item .demand-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    border-radius: 1px;
    transition: width 0.3s ease;
}
.enterprise-demand-item:hover .demand-title::after {
    width: 50px;
}
.enterprise-demand-item .demand-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
    background: transparent;
    padding: 0;
    border: none;
}
.enterprise-demand-item .demand-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.enterprise-demand-item .demand-tag {
    padding: 5px 12px;
    background: rgba(2, 132, 199, 0.1);
    color: #0284c7;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(2, 132, 199, 0.2);
}
.enterprise-demand-item .demand-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.enterprise-demand-item .demand-status.ongoing {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #16a34a;
    border: 1px solid rgba(22, 163, 74, 0.2);
}
.enterprise-demand-item .demand-status.new {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.2);
}
.enterprise-cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.enterprise-cert-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.enterprise-cert-item:hover {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    border-color: #eab308;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.12);
}
.enterprise-cert-item .cert-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.enterprise-cert-item .cert-name {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}
.enterprise-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}
.enterprise-contact-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.enterprise-contact-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}
.enterprise-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.enterprise-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
}
.enterprise-contact-item .contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.enterprise-contact-btn {
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.enterprise-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}
.enterprise-decision-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}
.enterprise-decision-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.decision-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}
.decision-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
}
.decision-icon {
    font-size: 20px;
}
.decision-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.decision-label {
    font-size: 13px;
    color: #64748b;
}
.decision-value {
    font-size: 14px;
    font-weight: 600;
    color: #0284c7;
}
.enterprise-demand-history-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.enterprise-demand-history-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}
.enterprise-demand-history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.enterprise-demand-history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}
.enterprise-demand-history-item:hover {
    background: #f1f5f9;
}
.enterprise-demand-history-item .item-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}
.enterprise-demand-history-item .item-date {
    font-size: 11px;
    color: #64748b;
}
.enterprise-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.enterprise-product-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.enterprise-product-item:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: #0284c7;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(2, 132, 199, 0.12);
}
.enterprise-product-item .product-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: white;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}
.enterprise-product-item .product-info {
    flex: 1;
}
.enterprise-product-item .product-name {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}
.enterprise-product-item .product-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}
.enterprise-case-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.enterprise-case-item {
    display: flex;
    gap: 24px;
    padding: 28px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.enterprise-case-item:hover {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-color: #14b8a6;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(20, 184, 166, 0.15);
}
.enterprise-case-item .case-image {
    width: 200px;
    height: 140px;
    border-radius: 12px;
    background: white;
    overflow: hidden;
    flex-shrink: 0;
    object-fit: cover;
}
.enterprise-case-item .case-content {
    flex: 1;
}
.enterprise-case-item .case-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}
.enterprise-case-item .case-company {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.enterprise-case-item .case-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 14px;
}
.enterprise-case-item .case-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #64748b;
}
.enterprise-case-item .case-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.enterprise-case-item .case-tags {
    display: flex;
    gap: 8px;
}
.enterprise-case-item .case-tag {
    padding: 5px 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 12px;
    color: #64748b;
}
.enterprise-news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.enterprise-news-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
}
.enterprise-news-item:hover {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
    transform: translateX(8px);
}
.enterprise-news-item .news-date {
    font-size: 13px;
    color: #64748b;
    min-width: 100px;
}
.enterprise-news-item .news-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}
.enterprise-news-item .news-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.pagination a, .pagination span {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.pagination a {
    background: white;
    color: #64748b;
    border: 1px solid #e2e8f0;
}
.pagination a:hover {
    background: #0284c7;
    color: white;
    border-color: #0284c7;
}
.pagination span {
    background: #0284c7;
    color: white;
    border: 1px solid #0284c7;
}
@media (max-width: 768px) {
    .enterprise-hero-content {
        flex-direction: column;
        text-align: center;
    }
    .enterprise-hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    .enterprise-detail-grid {
        grid-template-columns: 1fr;
        display: block;
    }
    .enterprise-sidebar {
        position: static;
    }
    .enterprise-demand-list {
        gap: 12px;
    }
    .enterprise-demand-item {
        flex-direction: column;
        gap: 12px;
    }
    .enterprise-product-grid {
        grid-template-columns: 1fr;
    }
    .enterprise-case-item {
        flex-direction: column;
    }
    .enterprise-case-item .case-image {
        width: 100%;
        height: 160px;
    }
    .enterprise-news-item {
        flex-direction: column;
        gap: 8px;
    }
    .enterprise-news-item .news-date {
        min-width: auto;
    }
    .enterprise-tabs-nav {
        padding: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .enterprise-tabs-nav::-webkit-scrollbar {
        display: none;
    }
    .enterprise-tab-btn {
        padding: 10px 14px;
        font-size: 13px;
        flex: 0 0 auto;
        min-width: 0;
        white-space: nowrap;
    }
    .enterprise-basic-info{
        grid-template-columns: repeat(2, 1fr);
    }
    .digital-profile-grid,.enterprise-cert-grid{grid-template-columns: repeat(1, 1fr);}
}

@media (max-width: 576px) {
    .enterprise-hero h1 { font-size: 28px; }
    .enterprise-hero p { font-size: 14px; }
    .enterprise-stat-item .value { font-size: 28px; }
    .enterprise-tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .enterprise-tabs-nav::-webkit-scrollbar {
        display: none;
    }
    .enterprise-tab-btn {
        flex: 0 0 auto;
        min-width: 0;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .enterprise-hero h1 { font-size: 22px; }
    .enterprise-hero p { font-size: 13px; }
    .enterprise-hero-stats { gap: 16px; }
    .enterprise-stat-item .value { font-size: 24px; }
    .enterprise-stat-item .label { font-size: 12px; }
    .enterprise-section { padding: 48px 0; }
    .enterprise-section h2 { font-size: 20px; }
    .enterprise-demand-item { padding: 12px; }
    .enterprise-news-item { padding: 12px 0; }
}

.file-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: white;
}
.file-hint {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 6px;
}
