.company-info-tabs {
    max-width: 900px;
    margin: 0 auto 4rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Section Header */
.company-info-tabs__header {
    text-align: center;
    margin-bottom: 2rem;
}

.company-info-tabs__header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

/* Tab Navigation */
.tabs-nav {
    display: flex;
    background: #2563eb;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 2rem;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tab-nav__btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tab-nav__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.tab-nav__btn:hover::before {
    left: 100%;
}

.tab-nav__btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.tab-nav__btn.active {
    background: white;
    color: #2563eb;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.label-col div {
    font-weight: 600;
    color: #64748b;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    line-height: 1.4;
}

.label-col div:last-child {
    border-bottom: none;
}

.value-col div {
    padding: 0.875rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #1f2937;
    line-height: 1.6;
    font-size: 1rem;
    word-break: break-word;
}

.value-col div:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .tabs-nav {
        flex-direction: column;
        border-radius: 8px;
    }
    
    .tab-nav__btn {
        border-radius: 6px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.75rem;
        margin-top: 1rem;
    }
    
    .label-col div,
    .value-col div {
        padding: 0.75rem 0;
        font-size: 0.95rem;
    }
    
    .company-info-tabs__header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .company-info-tabs {
        margin: 0 auto 2rem;
        padding: 0 1rem;
    }
    
    .content-grid {
        padding: 1.25rem;
    }
    
    .label-col div,
    .value-col div {
        padding: 0.625rem 0;
    }
}

/* Focus states for accessibility */
.tab-nav__btn:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}